NewRelicBroadway.Telemetry.Broadway (New Relic BroaNewRelicBroadway v0.0.1)

Provides Broadway instrumentation via telemetry.

Broadway pipelines are auto-discovered and instrumented.

We automatically gather:

  • Transaction metrics and events
  • Transaction Traces

To prevent reporting an individual transaction:

NewRelic.ignore_transaction()

Inside a Transaction, the agent will track work across processes that are spawned and linked. You can signal to the agent not to track work done inside a spawned process, which will exclude it from the current Transaction.

To exclude a process from the Transaction:

Task.async(fn ->
  NewRelic.exclude_from_transaction()
  Work.wont_be_tracked()
end)

Link to this section Summary

Functions

Returns a specification to start this module under a supervisor.

Link to this section Functions

Link to this function

child_spec(init_arg)

Returns a specification to start this module under a supervisor.

See Supervisor.