Metadata-Version: 2.1
Name: opentelemetry-instrumentation-qdrant
Version: 0.13.2
Summary: OpenTelemetry Qdrant instrumentation
Home-page: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-qdrant
License: Apache-2.0
Author: Gal Kleinman
Author-email: gal@traceloop.com
Requires-Python: >=3.8.1,<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
Requires-Dist: opentelemetry-api (>=1.23.0,<2.0.0)
Requires-Dist: opentelemetry-instrumentation (==0.44b0)
Requires-Dist: opentelemetry-semantic-conventions-ai (>=0.0.20,<0.0.21)
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-qdrant
Description-Content-Type: text/markdown

# OpenTelemetry Qdrant Instrumentation

<a href="https://pypi.org/project/opentelemetry-instrumentation-qdrant/">
    <img src="https://badge.fury.io/py/opentelemetry-instrumentation-qdrant.svg">
</a>

This library allows tracing client-side calls to Qdrant vector DB sent with the official [Qdrant client library](https://github.com/qdrant/qdrant-client).

## Installation

```bash
pip install opentelemetry-instrumentation-qdrant
```

## Example usage

```python
from opentelemetry.instrumentation.qdrant import QdrantInstrumentor

QdrantInstrumentor().instrument()
```

