• /
  • ログイン
  • 無料アカウント

capture_request_params (Python agent API)

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.

ヒント

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

flag

boolean

Optional. Default is True. Use False to disable collection.

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()

その他のヘルプ

さらに支援が必要な場合は、これらのサポートと学習リソースを確認してください:

問題を作成するこのページを編集する
Copyright © 2020 New Relic Inc.