https://github.com/scripbox/opentelemetry_sentry
https://github.com/scripbox/opentelemetry_sentry
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/scripbox/opentelemetry_sentry
- Owner: scripbox
- License: mit
- Created: 2022-05-19T11:00:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-24T15:17:18.000Z (about 3 years ago)
- Last Synced: 2025-09-16T10:27:02.014Z (4 months ago)
- Language: Elixir
- Size: 8.79 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpentelemetrySentry
This library provides support for propagating `sentry-trace` http
header. This would make it possible to use distributed tracing feature
of sentry. More details about the setup can be found in the [blog post](https://ananthakumaran.in/2022/06/11/sentry-performance-monitoring-for-elixir.html)
```elixir
def deps do
[
{:opentelemetry_sentry, "~> 0.1.0"}
]
end
```
```elixir
config :opentelemetry,
text_map_propagators: [OpentelemetrySentry.Propagator]
```