libdd-common 1.0.0

Shared utilities for Datadog libraries including HTTP/HTTPS connectors, container entity detection, tag validation, rate limiting, and Unix/Windows platform helpers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2025-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0

#![cfg(unix)]

mod execve;
mod file_ops;
mod fork;
mod process;

pub use execve::{PreparedExecve, PreparedExecveError};
pub use file_ops::open_file_or_quiet;
pub use fork::alt_fork;
pub use process::wait_for_pollhup;
pub use process::{reap_child_non_blocking, terminate, PollError, ReapError};