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

newrelic_capture_params (PHP agent API)

Syntax

newrelic_capture_params([bool $enable_flag])

Enable or disable the capture of URL parameters.

Requirements

Compatible with all agent versions.

Description

Enable or disable the capture of URL parameters (everything after the ? in the URL). This overrides the newrelic.capture_params config file setting.

Important

If you pass sensitive information directly in the URL, keep this disabled.

Parameters

Parameter

Description

$enable_flag

boolean

Optional. Defaults to true.

If true or omitted, enables the capture of URL parameters.

If false, disables the capture of URL parameters.

Examples

Enable capture of URL parameters

function example() {
if (extension_loaded('newrelic')) { // Ensure PHP agent is available
newrelic_capture_params();
}
//...
}

Disable capture of URL parameters

function example() {
if (extension_loaded('newrelic')) { // Ensure PHP agent is available
newrelic_capture_params(false);
}
//...
}
Copyright © 2024 New Relic Inc.

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