| 46 | # a Timestamp object, or None. |
| 47 | # Exemplar can be an Exemplar object, or None. |
| 48 | class Exemplar(NamedTuple): |
| 49 | labels: Dict[str, str] |
| 50 | value: float |
| 51 | timestamp: Optional[Union[float, Timestamp]] = None |
| 52 | |
| 53 | |
| 54 | # NativeHistogram is experimental and subject to change at any time. |
no outgoing calls