libdd-trace-stats 6.0.0

This crate provides utilities to compute stats from Datadog traces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0
#![cfg_attr(not(test), deny(clippy::panic))]
#![cfg_attr(not(test), deny(clippy::unwrap_used))]
#![cfg_attr(not(test), deny(clippy::expect_used))]
#![cfg_attr(not(test), deny(clippy::unreachable))]
#![cfg_attr(not(test), deny(clippy::todo))]
#![cfg_attr(not(test), deny(clippy::unimplemented))]

//! This crate provides utilities to compute stats from traces.

pub mod span_concentrator;
#[cfg(not(target_arch = "wasm32"))]
pub mod stats_exporter;