Skip to content

Commit

Permalink
docs: Added OpenLLMetry integration (#633)
Browse files Browse the repository at this point in the history
* docs: Added OpenLLMetry docs

* Apply suggestions from code review

Co-authored-by: Mike Jang <[email protected]>

* Update qdrant-landing/content/documentation/frameworks/openllmetry.md

Co-authored-by: Mike Jang <[email protected]>

---------

Co-authored-by: Mike Jang <[email protected]>
  • Loading branch information
Anush008 and Mike Jang authored Feb 24, 2024
1 parent 0f22f5d commit 0432d04
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions qdrant-landing/content/documentation/frameworks/openllmetry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
title: OpenLLMetry
weight: 2300
---

# OpenLLMetry

OpenLLMetry from [Traceloop](https://www.traceloop.com/) is a set of extensions built on top of [OpenTelemetry](https://opentelemetry.io/) that gives you complete observability over your LLM application.

OpenLLMetry supports instrumenting the `qdrant_client` Python library and exporting the traces to various observability platforms, as described in their [Integrations catalog](https://www.traceloop.com/docs/openllmetry/integrations/introduction#the-integrations-catalog).

This page assumes you're using `qdrant-client` version 1.7.3 or above.
## Usage

To set up OpenLLMetry, follow these steps:

1. Install the SDK:

```console
pip install traceloop-sdk
```

1. Instantiate the SDK:

```python
from traceloop.sdk import Traceloop

Traceloop.init()
```

You're now tracing your `qdrant_client` usage with OpenLLMetry!

## Without the SDK

Since Traceloop provides standard OpenTelemetry instrumentations, you can use them as standalone packages. To do so, follow these steps:

1. Install the package:

```console
pip install opentelemetry-instrumentation-qdrant
```

1. Instantiate the `QdrantInstrumentor`.

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

QdrantInstrumentor().instrument()
```

## Further Reading

- 📚 OpenLLMetry [API reference](https://www.traceloop.com/docs/api-reference/introduction)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0432d04

Please sign in to comment.