(&mut self, service_name: &str)
| 336 | } |
| 337 | |
| 338 | fn inc(&mut self, service_name: &str) { |
| 339 | with_metrics_registry(service_name, |registry| { |
| 340 | registry.counter_mut(self.name(), self.help()).inc(); |
| 341 | }); |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | pub trait ApplicationGaugeMetric<Model>: ApplicationMetric<Model> |
nothing calls this directly
no test coverage detected