• English日本語한국어
  • Log inStart now

suppress_apdex_metric (Python agent API)

Syntax

newrelic.agent.suppress_apdex_metric(flag=True)

Prevents the current transaction from contributing to Apdex.

Description

This call suppresses the generation of the Apdex metric for a web transaction. You might wish to do this when a long-running transaction is frequently affecting the average Apdex score for your application.

To un-suppress a previously suppressed transaction, set the flag to False.

Tip

You can also suppress the Apdex metric in the WSGI environ dictionary. To do so, set newrelic.suppress_apdex_metric key for the specific request in the WSGI environ dictionary passed by the WSGI server into the WSGI application being monitored.

Parameters

Parameter

Description

flag

boolean

Optional. Default is True. If a transaction's Apdex has been previously suppressed, you can un-suppress it by setting the flag to False.

Return values

None.

Examples

Turn off Apdex for specific transaction

If you have frequent, long-running functions in your app that are causing your average Apdex to go down, you can call suppress_apdex_metric where the transaction is being generated:

import newrelic.agent
newrelic.agent.suppress_apdex_metric()
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.