Metadata-Version: 2.4
Name: opentelemetry-instrumentation-weaviate
Version: 0.59.0
Summary: OpenTelemetry Weaviate instrumentation
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-weaviate
Author-email: Gal Kleinman <gal@traceloop.com>, Nir Gazit <nir@traceloop.com>, Tomer Friedman <tomer@traceloop.com>
License-Expression: Apache-2.0
Requires-Python: <4,>=3.10
Requires-Dist: opentelemetry-api<2,>=1.38.0
Requires-Dist: opentelemetry-instrumentation>=0.59b0
Requires-Dist: opentelemetry-semantic-conventions-ai<0.6.0,>=0.5.1
Requires-Dist: opentelemetry-semantic-conventions>=0.59b0
Provides-Extra: instruments
Requires-Dist: weaviate-client; extra == 'instruments'
Description-Content-Type: text/markdown

# OpenTelemetry Weaviate Instrumentation

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

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

## Installation

```bash
pip install opentelemetry-instrumentation-weaviate
```

## Example usage

```python
from opentelemetry.instrumentation.weaviate import WeaviateInstrumentor

WeaviateInstrumentor().instrument()
```
