fastrace-jaeger

Crates.iofastrace-jaeger
lib.rsfastrace-jaeger
version0.7.4
sourcesrc
created_at2024-07-16 10:04:30.73262
updated_at2024-10-27 17:20:27.171009
descriptionJaeger reporter for fastrace
homepage
repositoryhttps://github.com/fast/fastrace
max_upload_size
id1304903
size25,505
Andy Lok (andylokandy)

documentation

https://docs.rs/fastrace-jaeger

README

fastrace-jaeger

Documentation Crates.io LICENSE

Jaeger reporter for fastrace.

Dependencies

[dependencies]
fastrace = "0.7"
fastrace-jaeger = "0.7"

Setup Jaeger Agent

docker run --rm -d -p6831:6831/udp -p14268:14268 -p16686:16686 --name jaeger jaegertracing/all-in-one:latest

cargo run --example synchronous

Web UI is available on http://127.0.0.1:16686/

Report to Jaeger Agent

use std::net::SocketAddr;

use fastrace::collector::Config;
use fastrace::prelude::*;

// Initialize reporter
let reporter =
    fastrace_jaeger::JaegerReporter::new("127.0.0.1:6831".parse().unwrap(), "asynchronous")
        .unwrap();
fastrace::set_reporter(reporter, Config::default());

{
    // Start tracing
    let root = Span::root("root", SpanContext::random());
}

fastrace::flush();
Commit count: 213

cargo fmt