Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
"openllmetry/integrations/langsmith",
"openllmetry/integrations/middleware",
"openllmetry/integrations/newrelic",
"openllmetry/integrations/oodle",
"openllmetry/integrations/otel-collector",
"openllmetry/integrations/oraclecloud",
"openllmetry/integrations/scorecard",
Expand Down
53 changes: 53 additions & 0 deletions openllmetry/integrations/oodle.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
title: "LLM Observability with Oodle and OpenLLMetry"
sidebarTitle: "Oodle"
---

[Oodle](https://oodle.ai) is an AI-native observability platform that supports OpenTelemetry for ingesting traces, metrics, and logs.

To get started, sign in to your Oodle account and navigate to **Settings > OpenTelemetry** to obtain your instance ID and API key.

## Using an OpenTelemetry Collector

Deploy an [OpenTelemetry Collector](https://opentelemetry.io/docs/collector/) and add Oodle as an exporter in your collector configuration:

```yaml
receivers:
otlp:
protocols:
http:

processors:
batch:

exporters:
otlphttp/oodle:
endpoint: "https://<OODLE_INSTANCE>-otlp.collector.oodle.ai"
headers:
X-OODLE-INSTANCE: "<OODLE_INSTANCE>"
X-API-KEY: "<YOUR_API_KEY>"

service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/oodle]
```

Replace `<OODLE_INSTANCE>` with your Oodle instance ID and `<YOUR_API_KEY>` with the API key from your Oodle dashboard.

Since the `-otlp` endpoint uses standard OTLP paths, you can also point the Traceloop SDK directly to Oodle without a collector:

```bash
TRACELOOP_BASE_URL=https://<OODLE_INSTANCE>-otlp.collector.oodle.ai
TRACELOOP_HEADERS="X-OODLE-INSTANCE=<OODLE_INSTANCE>,X-API-KEY=<YOUR_API_KEY>"
```

Alternatively, point the SDK to a local collector:

```bash
TRACELOOP_BASE_URL=http://<opentelemetry-collector-hostname>:4318
```

For more information, check out the [Oodle OpenTelemetry docs](https://docs.oodle.ai/integrations/traces/otel).