#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 • Rust 包仓库 541/week @ 2024-04-17 • Rust 包仓库 710/week @ 2024-04-24 • Rust 包仓库 551/week @ 2024-05-01 • Rust 包仓库 432/week @ 2024-05-08 • Rust 包仓库 548/week @ 2024-05-15 • Rust 包仓库 541/week @ 2024-05-22 • Rust 包仓库 857/week @ 2024-05-29 • Rust 包仓库 823/week @ 2024-06-05 • Rust 包仓库 511/week @ 2024-06-12 • Rust 包仓库 607/week @ 2024-06-19 • Rust 包仓库 527/week @ 2024-06-26 • Rust 包仓库 588/week @ 2024-07-03 • Rust 包仓库 462/week @ 2024-07-10 • Rust 包仓库 654/week @ 2024-07-17 • Rust 包仓库 578/week @ 2024-07-24 • Rust 包仓库 599/week @ 2024-07-31 • Rust 包仓库

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");

无运行时依赖