emit_seq 0.3.0

A Seq collector for the emit structured logger.
docs.rs failed to build emit_seq-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

emit_seq Join the chat at https://gitter.im/serilog/serilog Crates.io

Seq collector for the emit structured logger.

Using the crate

In Cargo.toml:

[dependencies]
emit="*"
emit_seq="*"

In main.rs:

#[macro_use]
extern crate emit;
use emit::PipelineBuilder;
use emit_seq::SeqCollector;

fn main() {
    let _flush = PipelineBuilder::new()
        .send_to(SeqCollector::new("https://my-seq-server"))
        .init();

    info!("Hello, {}!", user: "World");
}