(self)
| 358 | return ExceptionCounter(self, exception) |
| 359 | |
| 360 | def _child_samples(self) -> Iterable[Sample]: |
| 361 | sample = Sample('_total', {}, self._value.get(), None, self._value.get_exemplar()) |
| 362 | if _use_created: |
| 363 | return ( |
| 364 | sample, |
| 365 | Sample('_created', {}, self._created, None, None) |
| 366 | ) |
| 367 | return (sample,) |
| 368 | |
| 369 | |
| 370 | class Gauge(MetricWrapperBase): |
nothing calls this directly
no test coverage detected