Coverage for anaconda_opentelemetry/formatting.py: 100%
5 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-11 20:51 +0000
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-11 20:51 +0000
1from typing import Dict, Union, Sequence
3Scalar = Union[str, bool, int, float]
4AttrDict = Dict[str, Union[str, bool, int, float, Sequence[Scalar]]]
5EventPayload = Union[str, Dict[Union[str, int, float, bool], Union[str, int, float, bool]]]
7# Custom Naming
8log_event_name_key = 'log.event.name'