Skip to main content

libdd_data_pipeline/
lib.rs

1// Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
2// SPDX-License-Identifier: Apache-2.0
3#![cfg_attr(not(test), deny(clippy::panic))]
4#![cfg_attr(not(test), deny(clippy::unwrap_used))]
5#![cfg_attr(not(test), deny(clippy::expect_used))]
6#![cfg_attr(not(test), deny(clippy::todo))]
7#![cfg_attr(not(test), deny(clippy::unimplemented))]
8
9//! TraceExporter provides a minimum viable product (MVP) to send traces to agents. The aim of the
10//! project at this state is to provide a basic API in order to test its viability and integration
11//! in different languages.
12
13pub mod agent_info;
14mod health_metrics;
15mod pausable_worker;
16#[allow(missing_docs)]
17pub mod stats_exporter;
18pub(crate) mod telemetry;
19#[allow(missing_docs)]
20pub mod trace_exporter;