Metadata-Version: 2.4
Name: opentelemetry-instrumentation-lancedb
Version: 0.52.6
Summary: OpenTelemetry Lancedb instrumentation
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-lancedb
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.5.0,>=0.4.13
Requires-Dist: opentelemetry-semantic-conventions>=0.59b0
Provides-Extra: instruments
Requires-Dist: lancedb; extra == 'instruments'
Description-Content-Type: text/markdown

# OpenTelemetry LanceDB Instrumentation

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

This library allows tracing client-side calls to LanceDB sent with the official [LanceDB library](https://github.com/lancedb/lancedb).

## Installation

```bash
pip install opentelemetry-instrumentation-lancedb
```

## Example usage

```python
from opentelemetry.instrumentation.lancedb import LanceInstrumentor

LanceInstrumentor().instrument()
```
