Coverage for anaconda_opentelemetry / formatting.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-17 15:45 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-17 15:45 +0000
1from typing import Dict, Union, Sequence
3# Custom Typing
4Scalar = Union[str, bool, int, float]
5AttrDict = Dict[str, Union[str, bool, int, float, Sequence[Scalar]]]
6EventPayload = Union[str, Dict[Union[str, int, float, bool], Union[str, int, float, bool]]]
8# Custom Naming
9log_event_name_key = 'log.event.name'