File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 99
99
//! seamless emit their own metrics without knowing or caring which exporter implementation is chosen, or even if one is
100
100
//! installed.
101
101
//!
102
- //! In cases where no global recorder is installed, a "noop" recorder lives in its place, which has an incredibly very
102
+ //! In cases where no global recorder is installed, a "noop" recorder lives in its place, which has an incredibly
103
103
//! low overhead: an atomic load and comparison. Libraries can safely instrument their code without fear of ruining
104
104
//! baseline performance.
105
105
//!
106
- //! By default, a "noop" recorder is present so that the macros can work even if no exporter has been installed. This
107
- //! recorder has extremely low overhead -- a relaxed load and conditional -- and so, practically speaking, the overhead
108
- //! when no exporter is installed is extremely low. You can safely instrument applications knowing that you won't pay a
109
- //! heavy performance cost even if you're not shipping metrics.
110
- //!
111
106
//! ### Examples
112
107
//!
113
108
//! ```rust
You can’t perform that action at this time.
0 commit comments