[![Project](https://img.shields.io/badge/project-holochain-blue)](http://holochain.org/) [![Forum](https://img.shields.io/badge/chat-forum%2eholochain%2enet-blue)](https://forum.holochain.org) [![Chat](https://img.shields.io/badge/chat-chat%2eholochain%2enet-blue)](https://chat.holochain.org) [![License: MIT](https://img.shields.io/badge/License-MIT-blue)](https://opensource.org/licenses/MIT) [![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue)](https://www.apache.org/licenses/LICENSE-2.0) Rust utility for efficiently writing metrics to a running InfluxDB instance. ## Example ```rust use influxive_core::Metric; use influxive_writer::*; let writer = InfluxiveWriter::with_token_auth( InfluxiveWriterConfig::default(), "http://127.0.0.1:8086", "my.bucket", "my.token", ); writer.write_metric( Metric::new( std::time::SystemTime::now(), "my.metric", ) .with_field("value", 3.14) .with_tag("tag", "test-tag") ); ```