OpenLLMetry
OpenLLMetry from Traceloop is a set of extensions built on top of OpenTelemetry that gives you complete observability over your LLM application.
OpenLLMetry supports instrumenting the solvio_client
Python library and exporting the traces to various observability platforms, as described in their Integrations catalog.
This page assumes you’re using solvio-client
version 1.7.3 or above.
Usage
To set up OpenLLMetry, follow these steps:
- Install the SDK:
pip install traceloop-sdk
- Instantiate the SDK:
from traceloop.sdk import Traceloop
Traceloop.init()
You’re now tracing your solvio_client
usage with OpenLLMetry!
Without the SDK
Since Traceloop provides standard OpenTelemetry instrumentations, you can use them as standalone packages. To do so, follow these steps:
- Install the package:
pip install opentelemetry-instrumentation-solvio
- Instantiate the
SolvioInstrumentor
.
from opentelemetry.instrumentation.solvio import SolvioInstrumentor
SolvioInstrumentor().instrument()
Further Reading
- 📚 OpenLLMetry API reference
- 📄 Source Code