feat(observability): focus PR 596 on Prometheus backend
This commit is contained in:
parent
eba544dbd4
commit
2560399423
12 changed files with 358 additions and 103 deletions
|
|
@ -1,4 +1,5 @@
|
|||
use super::traits::{Observer, ObserverEvent, ObserverMetric};
|
||||
use std::any::Any;
|
||||
|
||||
/// Human-readable progress observer for interactive CLI sessions.
|
||||
///
|
||||
|
|
@ -56,6 +57,10 @@ impl Observer for VerboseObserver {
|
|||
fn name(&self) -> &str {
|
||||
"verbose"
|
||||
}
|
||||
|
||||
fn as_any(&self) -> &dyn Any {
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue