nvidia-nat-opentelemetry 1.3.0.dev2__py3-none-any.whl → 1.3.0rc2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,3 +12,13 @@
12
12
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
+
16
+ from nat.plugins.opentelemetry.otel_span_exporter import OtelSpanExporter
17
+ from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
18
+ from nat.plugins.opentelemetry.otlp_span_redaction_adapter_exporter import OTLPSpanHeaderRedactionAdapterExporter
19
+
20
+ __all__ = [
21
+ "OTLPSpanHeaderRedactionAdapterExporter",
22
+ "OTLPSpanAdapterExporter",
23
+ "OtelSpanExporter",
24
+ ]
@@ -15,9 +15,8 @@
15
15
 
16
16
  import logging
17
17
 
18
- from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
19
-
20
18
  from nat.plugins.opentelemetry.otel_span import OtelSpan
19
+ from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
21
20
 
22
21
  logger = logging.getLogger(__name__)
23
22
 
@@ -36,7 +35,8 @@ class OTLPSpanExporterMixin:
36
35
 
37
36
  This mixin is designed to be used with OtelSpanExporter as a base class:
38
37
 
39
- Example:
38
+ Example::
39
+
40
40
  class MyOTLPExporter(OtelSpanExporter, OTLPSpanExporterMixin):
41
41
  def __init__(self, endpoint, headers, **kwargs):
42
42
  super().__init__(endpoint=endpoint, headers=headers, **kwargs)
@@ -46,7 +46,7 @@ class MimeTypes(Enum):
46
46
  JSON = "application/json"
47
47
 
48
48
 
49
- class OtelSpan(Span): # pylint: disable=too-many-public-methods
49
+ class OtelSpan(Span):
50
50
  """A manually created OpenTelemetry span.
51
51
 
52
52
  This class is a wrapper around the OpenTelemetry Span class.
@@ -86,8 +86,9 @@ class OtelSpan(Span): # pylint: disable=too-many-public-methods
86
86
  self._name = name
87
87
  # Create a new SpanContext if none provided or if Context is provided
88
88
  if context is None or isinstance(context, Context):
89
- trace_id = uuid.uuid4().int & ((1 << 128) - 1)
90
- span_id = uuid.uuid4().int & ((1 << 64) - 1)
89
+ # Generate non-zero IDs per OTel spec (uuid4 is automatically non-zero)
90
+ trace_id = uuid.uuid4().int
91
+ span_id = uuid.uuid4().int >> 64
91
92
  self._context = SpanContext(
92
93
  trace_id=trace_id,
93
94
  span_id=span_id,
@@ -18,8 +18,6 @@ from abc import abstractmethod
18
18
  from importlib.metadata import PackageNotFoundError
19
19
  from importlib.metadata import version
20
20
 
21
- from opentelemetry.sdk.resources import Resource
22
-
23
21
  from nat.builder.context import ContextState
24
22
  from nat.data_models.span import Span
25
23
  from nat.observability.exporter.span_exporter import SpanExporter
@@ -27,6 +25,7 @@ from nat.observability.processor.batching_processor import BatchingProcessor
27
25
  from nat.observability.processor.processor import Processor
28
26
  from nat.plugins.opentelemetry.otel_span import OtelSpan
29
27
  from nat.plugins.opentelemetry.span_converter import convert_span_to_otel
28
+ from opentelemetry.sdk.resources import Resource
30
29
 
31
30
  logger = logging.getLogger(__name__)
32
31
 
@@ -60,7 +59,7 @@ class OtelSpanBatchProcessor(BatchingProcessor[OtelSpan]):
60
59
  pass
61
60
 
62
61
 
63
- class OtelSpanExporter(SpanExporter[Span, OtelSpan]): # pylint: disable=R0901
62
+ class OtelSpanExporter(SpanExporter[Span, OtelSpan]):
64
63
  """Abstract base class for OpenTelemetry exporters.
65
64
 
66
65
  This class provides a specialized implementation for OpenTelemetry exporters.
@@ -22,7 +22,7 @@ from nat.plugins.opentelemetry.otel_span_exporter import OtelSpanExporter
22
22
  logger = logging.getLogger(__name__)
23
23
 
24
24
 
25
- class OTLPSpanAdapterExporter(OTLPSpanExporterMixin, OtelSpanExporter): # pylint: disable=R0901
25
+ class OTLPSpanAdapterExporter(OTLPSpanExporterMixin, OtelSpanExporter):
26
26
  """An OpenTelemetry OTLP span exporter for sending traces to OTLP-compatible services.
27
27
 
28
28
  This class combines the OtelSpanExporter base functionality with OTLP-specific
@@ -43,7 +43,8 @@ class OTLPSpanAdapterExporter(OTLPSpanExporterMixin, OtelSpanExporter): # pylin
43
43
  - Grafana Tempo
44
44
  - Custom OTLP-compatible backends
45
45
 
46
- Example:
46
+ Example::
47
+
47
48
  exporter = OTLPSpanAdapterExporter(
48
49
  endpoint="https://api.service.com/v1/traces",
49
50
  headers={"Authorization": "Bearer your-token"},
@@ -79,7 +80,7 @@ class OTLPSpanAdapterExporter(OTLPSpanExporterMixin, OtelSpanExporter): # pylin
79
80
  resource_attributes: Additional resource attributes for spans.
80
81
  endpoint: The endpoint for the OTLP service.
81
82
  headers: The headers for the OTLP service.
82
- **otlp_kwargs: Additional keyword arguments for the OTLP service.
83
+ otlp_kwargs: Additional keyword arguments for the OTLP service.
83
84
  """
84
85
  super().__init__(context_state=context_state,
85
86
  batch_size=batch_size,
@@ -0,0 +1,144 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ import logging
17
+ from collections.abc import Callable
18
+ from collections.abc import Mapping
19
+ from enum import Enum
20
+ from typing import Any
21
+
22
+ from nat.builder.context import ContextState
23
+ from nat.observability.processor.redaction import SpanHeaderRedactionProcessor
24
+ from nat.observability.processor.span_tagging_processor import SpanTaggingProcessor
25
+ from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
26
+
27
+ logger = logging.getLogger(__name__)
28
+
29
+
30
+ class OTLPSpanHeaderRedactionAdapterExporter(OTLPSpanAdapterExporter):
31
+ """An OpenTelemetry OTLP span exporter with built-in redaction and privacy tagging.
32
+
33
+ This class extends OTLPSpanAdapterExporter to provide automatic span redaction
34
+ and privacy tagging capabilities. It automatically adds header-based redaction
35
+ and span tagging processors to the processing pipeline.
36
+
37
+ Key Features:
38
+ - Header-based span redaction with configurable callback logic
39
+ - Privacy level tagging for compliance and governance
40
+ - Complete span processing pipeline (IntermediateStep → Span → Redaction → Tagging → OtelSpan → Batching → Export)
41
+ - Batching support for efficient transmission
42
+ - OTLP HTTP protocol for maximum compatibility
43
+ - Configurable authentication via headers
44
+ - Resource attribute management
45
+ - Error handling and retry logic
46
+
47
+ The redaction processor allows conditional redaction based on authentication headers,
48
+ while the tagging processor adds privacy-level metadata to spans for downstream
49
+ processing and compliance tracking.
50
+
51
+ This exporter is commonly used with services like:
52
+ - OpenTelemetry Collector
53
+ - DataDog (OTLP endpoint)
54
+ - Jaeger (OTLP endpoint)
55
+ - Grafana Tempo
56
+ - Custom OTLP-compatible backends
57
+
58
+ Example::
59
+
60
+ def should_redact(auth_key: str) -> bool:
61
+ return auth_key in ["sensitive_user", "test_user"]
62
+
63
+ exporter = OTLPSpanRedactionAdapterExporter(
64
+ endpoint="https://api.service.com/v1/traces",
65
+ headers={"Authorization": "Bearer your-token"},
66
+ redaction_attributes=["user.email", "request.body"],
67
+ redaction_headers=["x-user-id"],
68
+ redaction_callback=should_redact,
69
+ redaction_value="REDACTED",
70
+ tags={"privacy.level": PrivacyLevel.HIGH, "service.type": "sensitive"},
71
+ batch_size=50,
72
+ flush_interval=10.0
73
+ )
74
+ """
75
+
76
+ def __init__(
77
+ self,
78
+ *,
79
+ # OtelSpanExporter args
80
+ context_state: ContextState | None = None,
81
+ batch_size: int = 100,
82
+ flush_interval: float = 5.0,
83
+ max_queue_size: int = 1000,
84
+ drop_on_overflow: bool = False,
85
+ shutdown_timeout: float = 10.0,
86
+ resource_attributes: dict[str, str] | None = None,
87
+ # Redaction args
88
+ redaction_attributes: list[str] | None = None,
89
+ redaction_headers: list[str] | None = None,
90
+ redaction_callback: Callable[..., Any] | None = None,
91
+ redaction_enabled: bool = False,
92
+ force_redaction: bool = False,
93
+ redaction_value: str = "[REDACTED]",
94
+ redaction_tag: str | None = None,
95
+ tags: Mapping[str, Enum | str] | None = None,
96
+ # OTLPSpanExporterMixin args
97
+ endpoint: str,
98
+ headers: dict[str, str] | None = None,
99
+ **otlp_kwargs):
100
+ """Initialize the OTLP span exporter with redaction and tagging capabilities.
101
+
102
+ Args:
103
+ context_state: The context state for the exporter.
104
+ batch_size: Number of spans to batch before exporting, default is 100.
105
+ flush_interval: Time in seconds between automatic batch flushes, default is 5.0.
106
+ max_queue_size: Maximum number of spans to queue, default is 1000.
107
+ drop_on_overflow: Whether to drop spans when queue is full, default is False.
108
+ shutdown_timeout: Maximum time to wait for export completion during shutdown, default is 10.0.
109
+ resource_attributes: Additional resource attributes for spans.
110
+ redaction_attributes: List of span attribute keys to redact when conditions are met.
111
+ redaction_headers: List of header keys to check for authentication/user identification.
112
+ redaction_callback: Function that returns true to redact spans based on header value, false otherwise.
113
+ redaction_enabled: Whether the redaction processor is enabled, default is False.
114
+ force_redaction: If True, always redact regardless of header checks, default is False.
115
+ redaction_value: Value to replace redacted attributes with, default is "[REDACTED]".
116
+ tags: Mapping of tag keys to their values (enums or strings) to add to spans.
117
+ redaction_tag: Tag to add to spans when redaction occurs.
118
+ endpoint: The endpoint for the OTLP service.
119
+ headers: The headers for the OTLP service.
120
+ otlp_kwargs: Additional keyword arguments for the OTLP service.
121
+ """
122
+ super().__init__(context_state=context_state,
123
+ batch_size=batch_size,
124
+ flush_interval=flush_interval,
125
+ max_queue_size=max_queue_size,
126
+ drop_on_overflow=drop_on_overflow,
127
+ shutdown_timeout=shutdown_timeout,
128
+ resource_attributes=resource_attributes,
129
+ endpoint=endpoint,
130
+ headers=headers,
131
+ **otlp_kwargs)
132
+
133
+ # Insert redaction and tagging processors to the front of the processing pipeline
134
+ self.add_processor(SpanHeaderRedactionProcessor(attributes=redaction_attributes or [],
135
+ headers=redaction_headers or [],
136
+ callback=redaction_callback or (lambda _: False),
137
+ enabled=redaction_enabled,
138
+ force_redact=force_redaction,
139
+ redaction_value=redaction_value,
140
+ redaction_tag=redaction_tag),
141
+ name="header_redaction",
142
+ position=0)
143
+
144
+ self.add_processor(SpanTaggingProcessor(tags=tags), name="span_sensitivity_tagging", position=1)
@@ -38,18 +38,18 @@ class LangfuseTelemetryExporter(BatchConfigMixin, TelemetryExporterBaseConfig, n
38
38
 
39
39
 
40
40
  @register_telemetry_exporter(config_type=LangfuseTelemetryExporter)
41
- async def langfuse_telemetry_exporter(config: LangfuseTelemetryExporter, builder: Builder): # pylint: disable=W0613
41
+ async def langfuse_telemetry_exporter(config: LangfuseTelemetryExporter, builder: Builder):
42
42
 
43
43
  import base64
44
44
 
45
- from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
45
+ from nat.plugins.opentelemetry import OTLPSpanAdapterExporter
46
46
 
47
47
  secret_key = config.secret_key or os.environ.get("LANGFUSE_SECRET_KEY")
48
48
  public_key = config.public_key or os.environ.get("LANGFUSE_PUBLIC_KEY")
49
49
  if not secret_key or not public_key:
50
50
  raise ValueError("secret and public keys are required for langfuse")
51
51
 
52
- credentials = f"{public_key}:{secret_key}".encode("utf-8")
52
+ credentials = f"{public_key}:{secret_key}".encode()
53
53
  auth_header = base64.b64encode(credentials).decode("utf-8")
54
54
  headers = {"Authorization": f"Basic {auth_header}"}
55
55
 
@@ -75,10 +75,10 @@ class LangsmithTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, Telemet
75
75
 
76
76
 
77
77
  @register_telemetry_exporter(config_type=LangsmithTelemetryExporter)
78
- async def langsmith_telemetry_exporter(config: LangsmithTelemetryExporter, builder: Builder): # pylint: disable=W0613
78
+ async def langsmith_telemetry_exporter(config: LangsmithTelemetryExporter, builder: Builder):
79
79
  """Create a Langsmith telemetry exporter."""
80
80
 
81
- from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
81
+ from nat.plugins.opentelemetry import OTLPSpanAdapterExporter
82
82
 
83
83
  api_key = config.api_key or os.environ.get("LANGSMITH_API_KEY")
84
84
  if not api_key:
@@ -105,11 +105,11 @@ class OtelCollectorTelemetryExporter(BatchConfigMixin,
105
105
 
106
106
 
107
107
  @register_telemetry_exporter(config_type=OtelCollectorTelemetryExporter)
108
- async def otel_telemetry_exporter(config: OtelCollectorTelemetryExporter, builder: Builder): # pylint: disable=W0613
108
+ async def otel_telemetry_exporter(config: OtelCollectorTelemetryExporter, builder: Builder):
109
109
  """Create an OpenTelemetry telemetry exporter."""
110
110
 
111
+ from nat.plugins.opentelemetry import OTLPSpanAdapterExporter
111
112
  from nat.plugins.opentelemetry.otel_span_exporter import get_opentelemetry_sdk_version
112
- from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
113
113
 
114
114
  # Default resource attributes
115
115
  default_resource_attributes = {
@@ -140,10 +140,10 @@ class PatronusTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, Telemetr
140
140
 
141
141
 
142
142
  @register_telemetry_exporter(config_type=PatronusTelemetryExporter)
143
- async def patronus_telemetry_exporter(config: PatronusTelemetryExporter, builder: Builder): # pylint: disable=W0613
143
+ async def patronus_telemetry_exporter(config: PatronusTelemetryExporter, builder: Builder):
144
144
  """Create a Patronus telemetry exporter."""
145
145
 
146
- from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
146
+ from nat.plugins.opentelemetry import OTLPSpanAdapterExporter
147
147
 
148
148
  api_key = config.api_key or os.environ.get("PATRONUS_API_KEY")
149
149
  if not api_key:
@@ -162,7 +162,6 @@ async def patronus_telemetry_exporter(config: PatronusTelemetryExporter, builder
162
162
  shutdown_timeout=config.shutdown_timeout)
163
163
 
164
164
 
165
- # pylint: disable=W0613
166
165
  class GalileoTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, TelemetryExporterBaseConfig, name="galileo"):
167
166
  """A telemetry exporter to transmit traces to externally hosted galileo service."""
168
167
 
@@ -173,10 +172,10 @@ class GalileoTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, Telemetry
173
172
 
174
173
 
175
174
  @register_telemetry_exporter(config_type=GalileoTelemetryExporter)
176
- async def galileo_telemetry_exporter(config: GalileoTelemetryExporter, builder: Builder): # pylint: disable=W0613
175
+ async def galileo_telemetry_exporter(config: GalileoTelemetryExporter, builder: Builder):
177
176
  """Create a Galileo telemetry exporter."""
178
177
 
179
- from nat.plugins.opentelemetry.otlp_span_adapter_exporter import OTLPSpanAdapterExporter
178
+ from nat.plugins.opentelemetry import OTLPSpanAdapterExporter
180
179
 
181
180
  headers = {
182
181
  "Galileo-API-Key": config.api_key,
@@ -18,16 +18,16 @@ import time
18
18
 
19
19
  from openinference.semconv.trace import OpenInferenceSpanKindValues
20
20
  from openinference.semconv.trace import SpanAttributes
21
+
22
+ from nat.data_models.span import Span
23
+ from nat.data_models.span import SpanStatusCode
24
+ from nat.plugins.opentelemetry.otel_span import OtelSpan
21
25
  from opentelemetry.trace import SpanContext
22
26
  from opentelemetry.trace import SpanKind
23
27
  from opentelemetry.trace import Status
24
28
  from opentelemetry.trace import StatusCode
25
29
  from opentelemetry.trace import TraceFlags
26
30
 
27
- from nat.data_models.span import Span
28
- from nat.data_models.span import SpanStatusCode
29
- from nat.plugins.opentelemetry.otel_span import OtelSpan
30
-
31
31
  logger = logging.getLogger(__name__)
32
32
 
33
33
  SPAN_EVENT_TYPE_TO_SPAN_KIND_MAP = {
@@ -1,12 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nvidia-nat-opentelemetry
3
- Version: 1.3.0.dev2
3
+ Version: 1.3.0rc2
4
4
  Summary: Subpackage for OpenTelemetry integration in NeMo Agent toolkit
5
5
  Keywords: ai,observability,opentelemetry
6
6
  Classifier: Programming Language :: Python
7
- Requires-Python: <3.13,>=3.11
7
+ Classifier: Programming Language :: Python :: 3.11
8
+ Classifier: Programming Language :: Python :: 3.12
9
+ Classifier: Programming Language :: Python :: 3.13
10
+ Requires-Python: <3.14,>=3.11
8
11
  Description-Content-Type: text/markdown
9
- Requires-Dist: nvidia-nat==v1.3.0-dev2
12
+ Requires-Dist: nvidia-nat==v1.3.0-rc2
10
13
  Requires-Dist: opentelemetry-api~=1.2
11
14
  Requires-Dist: opentelemetry-exporter-otlp~=1.3
12
15
  Requires-Dist: opentelemetry-sdk~=1.3
@@ -0,0 +1,15 @@
1
+ nat/meta/pypi.md,sha256=_o1o1BLPY1pvjCkklWxlm7LlIDMPCk-2Rho85NUuN8U,1109
2
+ nat/plugins/opentelemetry/__init__.py,sha256=j-YKuxwSIzGziyDyunw8s_W7WiFiqKLdFjw-utwHPFk,1079
3
+ nat/plugins/opentelemetry/otel_span.py,sha256=MC_ROZ8gSTu0gxRaaz77UDbn1ouZTZP3N_-0PcN140U,16564
4
+ nat/plugins/opentelemetry/otel_span_exporter.py,sha256=YO7JsQgi8Cf2OQBJ_s78HwJjrWx9SdqMvPen3Pa2_bI,6533
5
+ nat/plugins/opentelemetry/otlp_span_adapter_exporter.py,sha256=6xQHkKDhQk3-kObqj6kRv8ZlJtIV2Qqox6YkY0PCOYs,3945
6
+ nat/plugins/opentelemetry/otlp_span_redaction_adapter_exporter.py,sha256=qRrUIxYRlCDaAkEGlFTaEkCJCsb68GBo11EGEiE6S8E,7217
7
+ nat/plugins/opentelemetry/register.py,sha256=KnhV-axY0kJzZ3RReG4e_mTFR1dMr7d3a6ysYiCLTUI,9063
8
+ nat/plugins/opentelemetry/span_converter.py,sha256=Gz3KvRNQeEBBlpaPO8YRAJkw4fmzV7m9bT6dGX0IV2E,8846
9
+ nat/plugins/opentelemetry/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
10
+ nat/plugins/opentelemetry/mixin/otlp_span_exporter_mixin.py,sha256=3vK6DkTJXp6ZFH3AgNYUuuMOzjyskh_nVUWK-qMYKzM,2809
11
+ nvidia_nat_opentelemetry-1.3.0rc2.dist-info/METADATA,sha256=0EeZ8o0Nvgt3mkyDDQiaekOj6y8wEozabkgL1XxhLHU,1722
12
+ nvidia_nat_opentelemetry-1.3.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ nvidia_nat_opentelemetry-1.3.0rc2.dist-info/entry_points.txt,sha256=gmEKhCafyibUJLGxbn8luTK0UTgIvV2vAtr4uZ8M85I,72
14
+ nvidia_nat_opentelemetry-1.3.0rc2.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
15
+ nvidia_nat_opentelemetry-1.3.0rc2.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- nat/meta/pypi.md,sha256=_o1o1BLPY1pvjCkklWxlm7LlIDMPCk-2Rho85NUuN8U,1109
2
- nat/plugins/opentelemetry/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
3
- nat/plugins/opentelemetry/otel_span.py,sha256=dn-wI4iYS02z8WZWpamX4ISxhhmjRKWgPk9mAqIASZg,16554
4
- nat/plugins/opentelemetry/otel_span_exporter.py,sha256=zxlbj0kODcqPeI5zVs_XQR7HsvlOMFhw6iEWJOOLWVM,6559
5
- nat/plugins/opentelemetry/otlp_span_adapter_exporter.py,sha256=MtkmpLklvyIhCYXHvkY_sZRffwTiAvbQxBen02a89mo,3970
6
- nat/plugins/opentelemetry/register.py,sha256=ZwOL4aXsnX0bokfuRnYQLrCk27BrUGruTIy4um6lXW8,9354
7
- nat/plugins/opentelemetry/span_converter.py,sha256=lgdqXI0yn6OZ8xxo9wOwTmicUTJ_RA9f-uMnCAl2HIk,8846
8
- nat/plugins/opentelemetry/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
9
- nat/plugins/opentelemetry/mixin/otlp_span_exporter_mixin.py,sha256=va5TuEMz8raO6NeDCytYm5tL9uyMih3gYiP_H7KmNdU,2808
10
- nvidia_nat_opentelemetry-1.3.0.dev2.dist-info/METADATA,sha256=DEIkIZXVQJ8W8IeHjUmcY11nqyO2W5w9DqTjuqvoOVY,1572
11
- nvidia_nat_opentelemetry-1.3.0.dev2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- nvidia_nat_opentelemetry-1.3.0.dev2.dist-info/entry_points.txt,sha256=gmEKhCafyibUJLGxbn8luTK0UTgIvV2vAtr4uZ8M85I,72
13
- nvidia_nat_opentelemetry-1.3.0.dev2.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
14
- nvidia_nat_opentelemetry-1.3.0.dev2.dist-info/RECORD,,