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
Binary file added img/integrations/telemetry-dev.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
"openllmetry/integrations/signoz",
"openllmetry/integrations/sentry",
"openllmetry/integrations/splunk",
"openllmetry/integrations/telemetry-dev",
"openllmetry/integrations/tencent"
]
},
Expand Down
1 change: 1 addition & 0 deletions openllmetry/integrations/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@ in any observability platform that supports OpenTelemetry.
<Card title="Sentry" href="/openllmetry/integrations/sentry"></Card>
<Card title="SigNoz" href="/openllmetry/integrations/signoz"></Card>
<Card title="Splunk" href="/openllmetry/integrations/splunk"></Card>
<Card title="telemetry.dev" href="/openllmetry/integrations/telemetry-dev"></Card>
<Card title="Tencent Cloud" href="/openllmetry/integrations/tencent"></Card>
</CardGroup>
17 changes: 17 additions & 0 deletions openllmetry/integrations/telemetry-dev.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "LLM Observability with telemetry.dev and OpenLLMetry"
sidebarTitle: "telemetry.dev"
---

<Frame>
<img src="/img/integrations/telemetry-dev.png" />

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

Add alternative text to the integration image.

This image is not accessible to screen readers.

Proposed fix
-  <img src="/img/integrations/telemetry-dev.png" />
+  <img src="/img/integrations/telemetry-dev.png" alt="telemetry.dev integration" />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<img src="/img/integrations/telemetry-dev.png" />
<img src="/img/integrations/telemetry-dev.png" alt="telemetry.dev integration" />
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@openllmetry/integrations/telemetry-dev.mdx` at line 7, Update the integration
image in the telemetry-dev documentation to include descriptive alternative text
in its img element, ensuring screen readers can convey the image’s purpose.

</Frame>

[telemetry.dev](https://telemetry.dev) is an OpenTelemetry-native observability platform for AI applications that can receive your OpenLLMetry traces through its OTLP ingest API.

```bash
TRACELOOP_BASE_URL="https://ingest.telemetry.dev"
TRACELOOP_HEADERS="Authorization=Bearer <YOUR_TD_LIVE_KEY>"
```
Comment on lines +12 to +15

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Export the environment variables in this Bash example.

Plain shell assignments are not inherited by the application process started afterward, so copy-pasting this snippet will not configure OpenLLMetry.

Proposed fix
-TRACELOOP_BASE_URL="https://ingest.telemetry.dev"
-TRACELOOP_HEADERS="Authorization=Bearer <YOUR_TD_LIVE_KEY>"
+export TRACELOOP_BASE_URL="https://ingest.telemetry.dev"
+export TRACELOOP_HEADERS="Authorization=Bearer <YOUR_TD_LIVE_KEY>"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
```bash
TRACELOOP_BASE_URL="https://ingest.telemetry.dev"
TRACELOOP_HEADERS="Authorization=Bearer <YOUR_TD_LIVE_KEY>"
```
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@openllmetry/integrations/telemetry-dev.mdx` around lines 12 - 15, Update the
Bash example’s TRACELOOP_BASE_URL and TRACELOOP_HEADERS assignments to export
both environment variables, ensuring applications launched afterward inherit the
OpenLLMetry configuration.


For more information check out the [documentation](https://telemetry.dev/integrations/opentelemetry).