IOA Observability SDK
Project description
Observe-SDK
IOA observability SDK for your multi-agentic application.
Table of Contents
Installation
To install the package via PyPI, simply run:
pip install ioa_observe_sdk
Alternatively, to download the SDK from git, you could also use the following command. Ensure you have uv installed in your environment.
uv add "git+https://github.com/agntcy/observe"
Schema
The AGNTCY observability schema is an extension of the OTel LLM Semantic Conventions for Generative AI systems. This schema is designed to provide comprehensive observability for Multi-Agent Systems (MAS).
Link: AGNTCY Observability Schema
An option is made available for transforming spans attributes exported by using options via env variables (SPAN_TRANSFORMER_RULES_ENABLED, SPAN_TRANSFORMER_RULES_FILE). Please read transform.
Dev
Any Opentelemetry compatible backend can be used, but for this guide, we will use ClickhouseDB as the backend database.
Opentelemetry collector
The OpenTelemetry Collector offers a vendor-agnostic implementation of how to receive, process and export telemetry data. It removes the need to run, operate, and maintain multiple agents/collectors.
Clickhouse DB
ClickhouseDB is used as a backend database to store and query the collected telemetry data efficiently, enabling you to analyze and visualize observability information for your multi-agentic applications.
Grafana (optional)
Grafana can be used to visualize the telemetry data collected by the OpenTelemetry Collector and stored in ClickhouseDB.
To get started with development, start a Clickhouse DB and an OTel collector container locally using docker-compose like so:
cd deploy/
docker compose up -d
Running both locally allows you to test, monitor, and debug your observability setup in a development environment before deploying to production.
Ensure the contents of otel-collector.yaml is correct.
Check the logs of the collector to ensure it is running correctly:
docker logs -f otel-collector
Viewing data in Clickhouse DB can be done using the Clickhouse client. The collector is configured to export telemetry data to Clickhouse.
The clickhouse exporter creates various tables in the Clickhouse DB, including otel_traces, which is used to store trace data.
For more info, refer to the OpenTelemetry Clickhouse Exporter documentation
docker exec -it clickhouse-server clickhouse-client
select * from otel_traces LIMIT 10;
Create a .env file with the following content:
OTLP_HTTP_ENDPOINT=http://localhost:4318
Install the dependencies and activate the virtual environment:
set -a
source .env
set +a
python3 -m venv .venv
source .venv/bin/activate
uv sync
Testing
To run the unit tests, ensure you have the OPENAI_API_KEY set in your environment. You can run the tests using the following command:
OPENAI_API_KEY=<KEY> make test
🚀 Getting Started
For getting started with the SDK, please refer to the Getting Started file. It contains detailed instructions on how to set up and use the SDK effectively.
Grafana
To configure Grafana to visualize the telemetry data, follow these steps:
- Spin up Grafana locally using Docker:
docker run -d -p 3000:3000 --name=grafana grafana/grafana
-
Access Grafana by navigating to
http://localhost:3000in your web browser.- Default username:
admin - Default password:
admin
- Default username:
-
Add a new data source:
- Choose "ClickHouse" as the data source type.
- Set the URL to
http://0.0.0.0:8123. - Configure the authentication settings if necessary.
- Save and test the connection to ensure it works correctly.
Refer to the Grafana ClickHouse plugin documentation for more details on configuring ClickHouse as a data source.
Contributing
Contributions are welcome! Please follow these steps to contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch). - Commit your changes (
git commit -am 'Add new feature'). - Push to the branch (
git push origin feature-branch). - Create a new Pull Request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ioa_observe_sdk-1.0.16.tar.gz.
File metadata
- Download URL: ioa_observe_sdk-1.0.16.tar.gz
- Upload date:
- Size: 63.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4067e7c579aa846f1eb028f796794afc54f10f21d0dbb70d6e83ce38c0d1a1a
|
|
| MD5 |
908162a9635e22049360398f8070ddd6
|
|
| BLAKE2b-256 |
334dd5c74fd76027f77524e485d53f05afb88f3fe181db007fe752555c31b303
|
File details
Details for the file ioa_observe_sdk-1.0.16-py3-none-any.whl.
File metadata
- Download URL: ioa_observe_sdk-1.0.16-py3-none-any.whl
- Upload date:
- Size: 70.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4edda08216665829ec8a51ae38141240ba149dbb61ea9bc914158bb432d60795
|
|
| MD5 |
8cec6ddc03a680eeaff35b938a17ebf3
|
|
| BLAKE2b-256 |
e873ca75176405ff12dcf3479acbf805b2a4f293e6a1714e9e079a92154bfb9c
|