-
Notifications
You must be signed in to change notification settings - Fork 58
docs(integrations): telemetry.dev integration #174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" /> | ||||||||||
| </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
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
Suggested change
🤖 Prompt for AI Agents |
||||||||||
|
|
||||||||||
| For more information check out the [documentation](https://telemetry.dev/integrations/opentelemetry). | ||||||||||
There was a problem hiding this comment.
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
📝 Committable suggestion
🤖 Prompt for AI Agents