nvidia-nat-opentelemetry 1.4.0a20251104__py3-none-any.whl → 1.4.0a20251229__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.
@@ -34,8 +34,10 @@ class LangfuseTelemetryExporter(BatchConfigMixin, TelemetryExporterBaseConfig, n
34
34
  """A telemetry exporter to transmit traces to externally hosted langfuse service."""
35
35
 
36
36
  endpoint: str = Field(description="The langfuse OTEL endpoint (/api/public/otel/v1/traces)")
37
- public_key: SerializableSecretStr = Field(description="The Langfuse public key", default="")
38
- secret_key: SerializableSecretStr = Field(description="The Langfuse secret key", default="")
37
+ public_key: SerializableSecretStr = Field(description="The Langfuse public key",
38
+ default_factory=lambda: SerializableSecretStr(""))
39
+ secret_key: SerializableSecretStr = Field(description="The Langfuse secret key",
40
+ default_factory=lambda: SerializableSecretStr(""))
39
41
  resource_attributes: dict[str, str] = Field(default_factory=dict,
40
42
  description="The resource attributes to add to the span")
41
43
 
@@ -72,7 +74,8 @@ class LangsmithTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, Telemet
72
74
  description="The langsmith OTEL endpoint",
73
75
  default="https://api.smith.langchain.com/otel/v1/traces",
74
76
  )
75
- api_key: SerializableSecretStr = Field(description="The Langsmith API key", default="")
77
+ api_key: SerializableSecretStr = Field(description="The Langsmith API key",
78
+ default_factory=lambda: SerializableSecretStr(""))
76
79
  resource_attributes: dict[str, str] = Field(default_factory=dict,
77
80
  description="The resource attributes to add to the span")
78
81
 
@@ -137,7 +140,8 @@ async def otel_telemetry_exporter(config: OtelCollectorTelemetryExporter, builde
137
140
  class PatronusTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, TelemetryExporterBaseConfig, name="patronus"):
138
141
  """A telemetry exporter to transmit traces to Patronus service."""
139
142
 
140
- api_key: SerializableSecretStr = Field(description="The Patronus API key", default="")
143
+ api_key: SerializableSecretStr = Field(description="The Patronus API key",
144
+ default_factory=lambda: SerializableSecretStr(""))
141
145
  resource_attributes: dict[str, str] = Field(default_factory=dict,
142
146
  description="The resource attributes to add to the span")
143
147
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nvidia-nat-opentelemetry
3
- Version: 1.4.0a20251104
3
+ Version: 1.4.0a20251229
4
4
  Summary: Subpackage for OpenTelemetry integration in NeMo Agent toolkit
5
5
  Author: NVIDIA Corporation
6
6
  Maintainer: NVIDIA Corporation
@@ -16,7 +16,7 @@ Requires-Python: <3.14,>=3.11
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE-3rd-party.txt
18
18
  License-File: LICENSE.md
19
- Requires-Dist: nvidia-nat==v1.4.0a20251104
19
+ Requires-Dist: nvidia-nat==v1.4.0a20251229
20
20
  Requires-Dist: opentelemetry-api~=1.2
21
21
  Requires-Dist: opentelemetry-exporter-otlp~=1.3
22
22
  Requires-Dist: opentelemetry-sdk~=1.3
@@ -4,14 +4,14 @@ nat/plugins/opentelemetry/otel_span.py,sha256=MC_ROZ8gSTu0gxRaaz77UDbn1ouZTZP3N_
4
4
  nat/plugins/opentelemetry/otel_span_exporter.py,sha256=YO7JsQgi8Cf2OQBJ_s78HwJjrWx9SdqMvPen3Pa2_bI,6533
5
5
  nat/plugins/opentelemetry/otlp_span_adapter_exporter.py,sha256=cWBfPKHET7U1oRMs1QMXvg-z1c1DaqYrLzHIyUUbfGM,4237
6
6
  nat/plugins/opentelemetry/otlp_span_redaction_adapter_exporter.py,sha256=YnoQlktT6EJRM7o8bhvYQcdGrAdOXNEk8wOimK_Wy88,7509
7
- nat/plugins/opentelemetry/register.py,sha256=EZpGOYQ5FVXfwDUea8TfFqWgZnhGP9NFFb1oGFajk5I,11186
7
+ nat/plugins/opentelemetry/register.py,sha256=BfqEZTy0CN4Zwr8PorZX1jWM0_Z7AilweSG4t6XVcso,11520
8
8
  nat/plugins/opentelemetry/span_converter.py,sha256=Gz3KvRNQeEBBlpaPO8YRAJkw4fmzV7m9bT6dGX0IV2E,8846
9
9
  nat/plugins/opentelemetry/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
10
10
  nat/plugins/opentelemetry/mixin/otlp_span_exporter_mixin.py,sha256=BN8fRHHEHEWZyrYoudl9lSeH--I2RY2dJVPyWIgDB0I,3454
11
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
12
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
13
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/METADATA,sha256=XVlYdxzvCTZJVV8t1VhMCG6yb0zUnd-fbjsSLT5TUd4,2039
14
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/entry_points.txt,sha256=gmEKhCafyibUJLGxbn8luTK0UTgIvV2vAtr4uZ8M85I,72
16
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
17
- nvidia_nat_opentelemetry-1.4.0a20251104.dist-info/RECORD,,
11
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
12
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
13
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/METADATA,sha256=7zJEg0ezudtXbQoaSTO2Iuo2UxWyhaNW7owrn5N3Pxw,2039
14
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/entry_points.txt,sha256=gmEKhCafyibUJLGxbn8luTK0UTgIvV2vAtr4uZ8M85I,72
16
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
17
+ nvidia_nat_opentelemetry-1.4.0a20251229.dist-info/RECORD,,