Skip to content

Commit 028438d

Browse files
committed
feat(tracing): add json and sqlite exporters to python
1 parent 2641a2c commit 028438d

File tree

4 files changed

+987
-5
lines changed

4 files changed

+987
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.1.27"
3+
version = "2.1.28"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath/tracing/__init__.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
from ._otel_exporters import LlmOpsHttpExporter # noqa: D104
1+
from ._otel_exporters import ( # noqa: D104
2+
BaseSpanProcessor,
3+
JsonFileExporter,
4+
LlmOpsHttpExporter,
5+
SqliteExporter,
6+
)
27
from ._traced import TracingManager, traced, wait_for_tracers # noqa: D104
38

4-
__all__ = ["TracingManager", "traced", "wait_for_tracers", "LlmOpsHttpExporter"]
9+
__all__ = [
10+
"TracingManager",
11+
"traced",
12+
"wait_for_tracers",
13+
"LlmOpsHttpExporter",
14+
"BaseSpanProcessor",
15+
"JsonFileExporter",
16+
"SqliteExporter",
17+
]

0 commit comments

Comments
 (0)