File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/exemplar Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,5 +46,5 @@ class Exemplar:
4646 filtered_attributes : Attributes
4747 value : Union [int , float ]
4848 time_unix_nano : int
49- span_id : Optional [str ] = None
50- trace_id : Optional [str ] = None
49+ span_id : Optional [int ] = None
50+ trace_id : Optional [int ] = None
Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ def __init__(self) -> None:
7777 self .__value : Union [int , float ] = 0
7878 self .__attributes : Attributes = None
7979 self .__time_unix_nano : int = 0
80- self .__span_id : Optional [str ] = None
81- self .__trace_id : Optional [str ] = None
80+ self .__span_id : Optional [int ] = None
81+ self .__trace_id : Optional [int ] = None
8282 self .__offered : bool = False
8383
8484 def offer (
You can’t perform that action at this time.
0 commit comments