4个版本

0.7.2 2024年8月16日
0.7.1 2024年8月14日
0.7.0 2024年8月14日
0.6.8 2024年7月16日

#7 in #span

Download history 94/week @ 2024-07-11 24/week @ 2024-07-18 7/week @ 2024-07-25 3/week @ 2024-08-01 116/week @ 2024-08-08 254/week @ 2024-08-15

每月381次下载

Apache-2.0

185KB
4K SLoC

fastrace-datadog

Documentation Crates.io LICENSE

Datadogfastrace 提供的报告器。

依赖项

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

设置Datadog代理

请遵循Datadog 官方文档

cargo run --example synchronous

向Datadog代理报告

use std::net::SocketAddr;

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

// Initialize reporter
let reporter = fastrace_datadog::DatadogReporter::new(
    "127.0.0.1:8126".parse().unwrap(),
    "asynchronous",
    "db",
    "select",
);
fastrace::set_reporter(reporter, Config::default());

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

fastrace::flush();

依赖项

~5–16MB
~229K SLoC