69 lines
2.5 KiB
Plaintext
69 lines
2.5 KiB
Plaintext
|
|
Metadata-Version: 2.4
|
||
|
|
Name: opentelemetry-instrumentation-watsonx
|
||
|
|
Version: 0.50.1
|
||
|
|
Summary: OpenTelemetry IBM Watsonx Instrumentation
|
||
|
|
License: Apache-2.0
|
||
|
|
Author: Guangya Liu
|
||
|
|
Author-email: gyliu@ibm.com
|
||
|
|
Requires-Python: >=3.9,<4
|
||
|
|
Classifier: License :: OSI Approved :: Apache Software License
|
||
|
|
Classifier: Programming Language :: Python :: 3
|
||
|
|
Classifier: Programming Language :: Python :: 3.9
|
||
|
|
Classifier: Programming Language :: Python :: 3.10
|
||
|
|
Classifier: Programming Language :: Python :: 3.11
|
||
|
|
Classifier: Programming Language :: Python :: 3.12
|
||
|
|
Classifier: Programming Language :: Python :: 3.13
|
||
|
|
Classifier: Programming Language :: Python :: 3.14
|
||
|
|
Provides-Extra: instruments
|
||
|
|
Requires-Dist: opentelemetry-api (>=1.38.0,<2.0.0)
|
||
|
|
Requires-Dist: opentelemetry-instrumentation (>=0.59b0)
|
||
|
|
Requires-Dist: opentelemetry-semantic-conventions (>=0.59b0)
|
||
|
|
Requires-Dist: opentelemetry-semantic-conventions-ai (>=0.4.13,<0.5.0)
|
||
|
|
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-watsonx
|
||
|
|
Description-Content-Type: text/markdown
|
||
|
|
|
||
|
|
# OpenTelemetry IBM Watsonx Instrumentation
|
||
|
|
|
||
|
|
This library allows tracing IBM Watsonx prompts and completions sent with the official [IBM Watson Machine Learning library](https://ibm.github.io/watson-machine-learning-sdk/) and [IBM watsonx.ai library](https://ibm.github.io/watsonx-ai-python-sdk/).
|
||
|
|
|
||
|
|
## Installation
|
||
|
|
|
||
|
|
```bash
|
||
|
|
pip install opentelemetry-instrumentation-watsonx
|
||
|
|
```
|
||
|
|
|
||
|
|
## Example usage
|
||
|
|
|
||
|
|
```python
|
||
|
|
from opentelemetry.instrumentation.watsonx import WatsonxInstrumentor
|
||
|
|
|
||
|
|
WatsonxInstrumentor().instrument()
|
||
|
|
```
|
||
|
|
|
||
|
|
## Privacy
|
||
|
|
|
||
|
|
**By default, this instrumentation logs prompts, completions, and embeddings to span attributes**. This gives you a clear visibility into how your LLM application is working, and can make it easy to debug and evaluate the quality of the outputs.
|
||
|
|
|
||
|
|
However, you may want to disable this logging for privacy reasons, as they may contain highly sensitive data from your users. You may also simply want to reduce the size of your traces.
|
||
|
|
|
||
|
|
To disable logging, set the `TRACELOOP_TRACE_CONTENT` environment variable to `false`.
|
||
|
|
|
||
|
|
```bash
|
||
|
|
TRACELOOP_TRACE_CONTENT=false
|
||
|
|
```
|
||
|
|
|
||
|
|
## SSL Issue
|
||
|
|
|
||
|
|
In case of SSL handshake issues (or similar ones) as follows:
|
||
|
|
|
||
|
|
```
|
||
|
|
E0423 17:04:25.197068000 6150713344 ssl_transport_security.cc:1420] Handshake failed with fatal error SSL_ERROR_SSL: error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER.
|
||
|
|
```
|
||
|
|
|
||
|
|
You can instruct the exporter with an environment variable to ignore SSL errors:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
OTEL_EXPORTER_OTLP_INSECURE=true
|
||
|
|
```
|
||
|
|
|