A yet another Fluentd logger for Rust.
If you use this library in Windows, please install Visual Studio 2015 and rust compiler which is targeted for MSVC API and its package manager, which is called cargo via rustup.rs.
And then, follow the below usage instructions.
Add this to your Cargo.toml:
toml
[dependencies]
fruently = "~0.9.0"
and this to your crate root:
rust,ignore
extern crate fruently;
```rust extern crate fruently; use fruently::fluent::Fluent; use std::collections::HashMap; use fruently::forwardable::JsonForwardable;
fn main() {
let mut obj: HashMap
```rust extern crate fruently; use fruently::fluent::Fluent; use std::collections::HashMap; use fruently::forwardable::MsgpackForwardable;
fn main() {
let mut obj: HashMap
Fruently does not have asynchronous API because Rust has std::thread::spawn
function to make asynchronous API from synchronous one.
If you want to send records into Fluentd asynchronously, please consider using std::thread::spawn
like: asynchronous example.
Using with Fluentd v0.12, you must specify time-as-integer
feature flag:
toml
[build-dependencies.fruently]
version = "~0.9.0"
features = ["time-as-integer"]
MIT.