Syntax
newrelic_ignore_apdex()
Ignore the current transaction when calculating Apdex.
Requirements
Compatible with all agent versions.
Description
Ignores the current transaction when calculating your Apdex score. This is useful when you have either very short or very long transactions (such as file downloads) that can skew your Apdex score.
Parameters
This call does not accept any parameters.
Examples
function example() {
if (extension_loaded('newrelic')) { // Ensure PHP agent is available
newrelic_ignore_apdex();
}
...
}
For more help
If you need more help, check out these support and learning resources:
- Browse the Explorers Hub to get help from the community and join in discussions.
- Find answers on our sites and learn how to use our support portal.
- Run New Relic Diagnostics, our troubleshooting tool for Linux, Windows, and macOS.
- Review New Relic's data security and licenses documentation.