Metadata-Version: 2.3
Name: opentelemetry-instrumentation-marqo
Version: 0.36.1
Summary: OpenTelemetry Marqo instrumentation
License: Apache-2.0
Author: Gal Kleinman
Author-email: gal@traceloop.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
Provides-Extra: instruments
Requires-Dist: opentelemetry-api (>=1.28.0,<2.0.0)
Requires-Dist: opentelemetry-instrumentation (>=0.50b0)
Requires-Dist: opentelemetry-semantic-conventions (>=0.50b0)
Requires-Dist: opentelemetry-semantic-conventions-ai (==0.4.2)
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-marqo
Description-Content-Type: text/markdown

# OpenTelemetry Marqo Instrumentation

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

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

## Installation

```bash
pip install opentelemetry-instrumentation-marqo
```

## Example usage

```python
from opentelemetry.instrumentation.marqo import MarqoInstrumentor

MarqoInstrumentor().instrument()
```

