(self, name: str, value: float)
| 57 | # Samples will be recorded in a buffer and at aggregation time, |
| 58 | # statistical properties will be logged (mean, count, percentiles, ...) |
| 59 | def sample(self, name: str, value: float): |
| 60 | self._send(f"{name}:{value}|{METRIC_TYPE.SAMPLE}") |
| 61 | |
| 62 | |
| 63 | def main() -> NoReturn: |