Syntax
newrelic.agent.capture_request_params(flag=True)
Enables capture of a transaction's query string parameters.
Description
This call enables the capture of a web transaction's query string parameters as attributes. This collection is blocked by default for security reasons. If you instead want to enable query string parameter collection for your entire app, use the record_sql
configuration setting.
High-security mode overrides this call if it is active, in which case this call has no effect. This call overrides other relevant settings in the agent's configuration.
Sugerencia
You can also enable query string capture in the WSGI environ dictionary. To do so, flag the newrelic.capture_request_params
key for the specific request in the WSGI environ dictionary passed by the WSGI server into the target WSGI app.
Parameters
Parameter | Description |
---|---|
boolean | Optional. Default is |
Return values
None.
Examples
Enable query string capture
Place this call in the section of code corresponding to a transaction for which you want to collect query string parameters:
newrelic.agent.capture_request_params()