UncountablePythonSDK 0.0.58__py3-none-any.whl → 0.0.59__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.

Potentially problematic release.


This version of UncountablePythonSDK might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: UncountablePythonSDK
3
- Version: 0.0.58
3
+ Version: 0.0.59
4
4
  Summary: Uncountable SDK
5
5
  Project-URL: Homepage, https://github.com/uncountableinc/uncountable-python-sdk
6
6
  Project-URL: Repository, https://github.com/uncountableinc/uncountable-python-sdk.git
@@ -85,7 +85,7 @@ uncountable/integration/entrypoint.py,sha256=wgOXhTzErttRjOzV4rS4psZW5qUKIa5ez89
85
85
  uncountable/integration/job.py,sha256=UTzcMes2KrBBRLOM3u94imMKLLnv50glqOkNf8-JOZw,1022
86
86
  uncountable/integration/scan_profiles.py,sha256=3o_h5Ta8ZQEX1epWyXhtyEof0M1b7MobVG7bRKcsFuM,1166
87
87
  uncountable/integration/server.py,sha256=bmX-ukLiNDq0ThVB2lUyXl-vtID5HI4gqJHxhsVNG3w,4440
88
- uncountable/integration/telemetry.py,sha256=wJMMlGWJTCXB1WxfpSI56x_qLmH9TgIAm9lx137gDH4,5966
88
+ uncountable/integration/telemetry.py,sha256=lTaTwhf-suKM8AXSeOe3wdUG1mdV7gbi88UBIDkzs9o,6036
89
89
  uncountable/integration/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
90
  uncountable/integration/db/connect.py,sha256=YtQHJ1DBGPhxKFRCfiXqohOYUceKSxMVOJ88aPI48Ug,181
91
91
  uncountable/integration/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -244,7 +244,7 @@ uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr
244
244
  uncountable/types/api/triggers/run_trigger.py,sha256=_Rpha9nxXI3Xr17CrGDtofg4HZ81x2lt0rMZ6As0qfE,893
245
245
  uncountable/types/api/uploader/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
246
246
  uncountable/types/api/uploader/invoke_uploader.py,sha256=Rc77y5q-3R9-SNQgm8P35zKaW2D1Hbtm7PDixnOn1G0,1025
247
- UncountablePythonSDK-0.0.58.dist-info/METADATA,sha256=IPsP_FApLq2unwFPEHKdIBZ9yaQr8EGgdcr4YojkYAA,1934
248
- UncountablePythonSDK-0.0.58.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
249
- UncountablePythonSDK-0.0.58.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
250
- UncountablePythonSDK-0.0.58.dist-info/RECORD,,
247
+ UncountablePythonSDK-0.0.59.dist-info/METADATA,sha256=NUmxAfNfwlnajLwx1OOVQiFEI0FZ7Crm7z2GP1oL3zI,1934
248
+ UncountablePythonSDK-0.0.59.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
249
+ UncountablePythonSDK-0.0.59.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
250
+ UncountablePythonSDK-0.0.59.dist-info/RECORD,,
@@ -16,7 +16,7 @@ from opentelemetry.sdk.trace import TracerProvider
16
16
  from opentelemetry.sdk.trace.export import (
17
17
  SimpleSpanProcessor,
18
18
  )
19
- from opentelemetry.trace import Tracer
19
+ from opentelemetry.trace import DEFAULT_TRACE_OPTIONS, Tracer
20
20
 
21
21
  from uncountable.core.version import get_version
22
22
  from uncountable.types import base_t, job_definition_t
@@ -83,6 +83,7 @@ class Logger:
83
83
  attributes=self._patch_attributes(attributes),
84
84
  span_id=self.current_span_id,
85
85
  trace_id=self.current_trace_id,
86
+ trace_flags=DEFAULT_TRACE_OPTIONS,
86
87
  )
87
88
  otel_logger.emit(log_record)
88
89