We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 371b2cb commit 087f639Copy full SHA for 087f639
apps/opentelemetry_api/lib/open_telemetry.ex
@@ -44,14 +44,14 @@ defmodule OpenTelemetry do
44
the same `trace_id`. The ID is a 16-byte array. An ID with all zeroes
45
is considered invalid.
46
"""
47
- @type trace_id() :: non_neg_integer()
+ @type trace_id() :: :opentelemetry.trace_id()
48
49
@typedoc """
50
SpanId is a unique identifier for a span within a trace, assigned when the span
51
is created. The ID is an 8-byte array. An ID with all zeroes is considered
52
invalid.
53
54
- @type span_id() :: non_neg_integer()
+ @type span_id() :: :opentelemetry.span_id()
55
56
@type attribute_key() :: :opentelemetry.attribute_key()
57
@type attribute_value() :: :opentelemetry.attribute_value()
0 commit comments