We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65f6b11 commit 9982d71Copy full SHA for 9982d71
lib/sentry/opentelemetry/span_processor.ex
@@ -59,9 +59,9 @@ defmodule Sentry.OpenTelemetry.SpanProcessor do
59
:ok
60
end
61
62
- # TODO: is it safe to ignore these? ie "Elixir.Oban.Stager process" is an internal span
63
- # and it prodocuses a lot of noise, so it makes sense to ignore it.
64
- defp build_transaction(%{kind: :internal}, _), do: nil
+ # TODO: "Elixir.Oban.Stager process" is an internal span and it produces a lot of noise
+ # so it makes sense to ignore it - should this be configurable?
+ defp build_transaction(%{name: "Elixir.Oban.Stager process"}, _), do: nil
65
66
defp build_transaction(root_span_record, child_span_records) do
67
root_span = build_span(root_span_record)
0 commit comments