Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove redundant paragraph #549

Merged
merged 2 commits into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions metrics/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,10 @@
//! seamless emit their own metrics without knowing or caring which exporter implementation is chosen, or even if one is
//! installed.
//!
//! In cases where no global recorder is installed, a "noop" recorder lives in its place, which has an incredibly very
//! In cases where no global recorder is installed, a "noop" recorder lives in its place, which has an incredibly
//! low overhead: an atomic load and comparison. Libraries can safely instrument their code without fear of ruining
//! baseline performance.
//!
//! By default, a "noop" recorder is present so that the macros can work even if no exporter has been installed. This
//! recorder has extremely low overhead -- a relaxed load and conditional -- and so, practically speaking, the overhead
//! when no exporter is installed is extremely low. You can safely instrument applications knowing that you won't pay a
//! heavy performance cost even if you're not shipping metrics.
//!
//! ### Examples
//!
//! ```rust
Expand Down
Loading