#metrics #tags #field #influxive #traits #influx-db #string

influxive-core

influxive 库的核心类型

11 个版本

0.0.3-alpha.12024年6月5日
0.0.2-alpha.12023年10月16日
0.0.1-alpha.112023年8月4日
0.0.1-alpha.92023年7月31日

#1992开发工具

Download history 541/week @ 2024-04-17 710/week @ 2024-04-24 551/week @ 2024-05-01 432/week @ 2024-05-08 548/week @ 2024-05-15 541/week @ 2024-05-22 857/week @ 2024-05-29 823/week @ 2024-06-05 511/week @ 2024-06-12 607/week @ 2024-06-19 527/week @ 2024-06-26 588/week @ 2024-07-03 462/week @ 2024-07-10 654/week @ 2024-07-17 578/week @ 2024-07-24 599/week @ 2024-07-31

2,480 每月下载量
用于 12 个库(5 个直接使用)

MIT/Apache

8KB
110

Project Forum Chat

License: MIT License: Apache-2.0

influxive 库的核心类型。此库的主要目的是向下游 influxive 库公开 [MetricWriter] 特性。

示例 [Metric] 类型创建

let _metric = influxive_core::Metric::new(std::time::SystemTime::now(), "my.name")
    .with_field("field.bool", true)
    .with_field("field.float", 3.14)
    .with_field("field.signed", -42)
    .with_field("field.unsigned", 42)
    .with_field("field.string", "string.value")
    .with_tag("tag.bool", true)
    .with_tag("tag.float", 3.14)
    .with_tag("tag.signed", -42)
    .with_tag("tag.unsigned", 42)
    .with_tag("tag.string", "string.value");

无运行时依赖