indratrace 0.0.1__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.
indratrace/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""IndraTrace SDK.
|
|
2
|
+
|
|
3
|
+
OpenTelemetry-native observability SDK for the IndraTrace platform:
|
|
4
|
+
one-line instrumentation for web apps and AI agents (traces, logs,
|
|
5
|
+
metrics, token usage, and cost).
|
|
6
|
+
|
|
7
|
+
This is a pre-release placeholder while the SDK is under active
|
|
8
|
+
development. The public API (init_observability, trace_agent,
|
|
9
|
+
trace_tool) will arrive in 0.1.0.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: indratrace
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: OpenTelemetry-native observability SDK for the IndraTrace platform. Under active development — not yet ready for use.
|
|
5
|
+
Author: Indrasol
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://indrasol.com
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Topic :: System :: Monitoring
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# IndraTrace SDK
|
|
16
|
+
|
|
17
|
+
OpenTelemetry-native observability SDK for the IndraTrace platform — one-line
|
|
18
|
+
instrumentation for web apps and AI agents: traces, logs, metrics, token usage,
|
|
19
|
+
and cost.
|
|
20
|
+
|
|
21
|
+
> **Status: pre-alpha.** This package is under active development and is not
|
|
22
|
+
> yet ready for use. The public API (`init_observability`, `trace_agent`,
|
|
23
|
+
> `trace_tool`) will land in `0.1.0`.
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
# Coming in 0.1.0
|
|
27
|
+
from indratrace import init_observability, trace_agent, trace_tool
|
|
28
|
+
|
|
29
|
+
init_observability(product="my-app", env="prod", ingest_key="...")
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Built by [Indrasol](https://indrasol.com).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
indratrace/__init__.py,sha256=lXW22y1gKqJi7Ow9xeG8DrIjQ5pMKlnc7KaTEY_-W4w,376
|
|
2
|
+
indratrace-0.0.1.dist-info/METADATA,sha256=bb2EhUmTBwWMoVSahqccQL2hBTUscMHT0tJxKq3N42c,1100
|
|
3
|
+
indratrace-0.0.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
4
|
+
indratrace-0.0.1.dist-info/top_level.txt,sha256=4pcDZ3XCqZIhMrudkUatBowiReHULInfT60I9uWOaBU,11
|
|
5
|
+
indratrace-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
indratrace
|