newrelic-telemetry-sdk-python
newrelic-telemetry-sdk-python copied to clipboard
exclude endpoint of tracking
I would like to disable the tracking on specific endpoints
with OTEL I would do
FastAPIInstrumentor.instrument_app(app=my_app, excluded_urls="/$,/health$,/openapi.json$")
but what is the equivalent with
newrelic.agent.initialize()
?
thank you