tracing-throttle 0.4.2

High-performance log deduplication and rate limiting for the tracing ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Domain layer - pure business logic with no external dependencies.
//!
//! This layer contains the core concepts and invariants of the rate limiting system:
//! - Event signature computation
//! - Rate limiting policies
//! - Suppression counters and summaries
//! - Event metadata for human-readable summaries
//!
//! All types in this layer are pure and easily testable.

pub mod metadata;
pub mod policy;
pub mod signature;
pub mod summary;