Profiler Configuration Reference (WebProfilerBundle)

The WebProfilerBundle is a development tool that provides detailed technical information about each request execution and displays it in both the web debug toolbar and the profiler. All these options are configured under the web_profiler key in your application configuration.

WebProfilerBundle は、各リクエストの実行に関する詳細な技術情報を提供し、それを Web デバッグ ツールバーとプロファイラーの両方に表示する開発ツールです。これらのオプションはすべて、アプリケーション構成の web_profiler キーの下で構成されます。
1
2
3
4
5
# displays the default config values defined by Symfony
$ php bin/console config:dump-reference web_profiler

# displays the actual config values used by your application
$ php bin/console debug:config web_profiler

Note

ノート

When using XML, you must use the http://symfony.com/schema/dic/webprofiler namespace and the related XSD schema is available at: https://symfony.com/schema/dic/webprofiler/webprofiler-1.0.xsd

XML を使用する場合、http://symfony.com/schema/dic/webprofilernamespace を使用する必要があり、関連する XSD スキーマは https://symfony.com/schema/dic/webprofiler/webprofiler-1.0.xsd で入手できます。

Caution

注意

The web debug toolbar is not available for responses of type StreamedResponse.

Web デバッグ ツールバーは、StreamedResponse タイプの応答には使用できません。

Configuration

excluded_ajax_paths

type: string default: '^/((index|app(_[\w]+)?)\.php/)?_wdt'

タイプ: 文字列 デフォルト: '^/((index|app(_[\w]+)?)\.php/)?_wdt'

When the toolbar logs AJAX requests, it matches their URLs against this regular expression. If the URL matches, the request is not displayed in the toolbar. This is useful when the application makes lots of AJAX requests, or if they are heavy and you want to exclude some of them.

ツールバーが AJAX 要求をログに記録するとき、その URL をこの正規表現と照合します。 URL が一致する場合、リクエストはツールバーに表示されません。これは、アプリケーションが大量の AJAX リクエストを作成する場合、またはそれらのリクエストが重いために一部を除外したい場合に役立ちます。

intercept_redirects

type: boolean default: false

タイプ: ブール デフォルト: false

If a redirect occurs during an HTTP response, the browser follows it automatically and you won't see the toolbar or the profiler of the original URL, only the redirected URL.

HTTP 応答中にリダイレクトが発生した場合、ブラウザーは自動的にそれに追従し、元の URL のツールバーやプロファイラーは表示されず、リダイレクトされた URL のみが表示されます。

When setting this option to true, the browser stops before making any redirection and shows you the URL which is going to redirect to, its toolbar, and its profiler. Once you've inspected the toolbar/profiler data, you can click on the given link to perform the redirect.

このオプションを true に設定すると、ブラウザーはリダイレクトを行う前に停止し、リダイレクト先の URL、ツールバー、およびプロファイラーを表示します。ツールバー/プロファイラーのデータを調べたら、指定されたリンクをクリックしてリダイレクトを実行できます。

toolbar

type: boolean default: false

タイプ: ブール デフォルト: false

It enables and disables the toolbar entirely. Usually you set this to true in the dev and test environments and to false in the prod environment.

ツールバー全体を有効または無効にします。通常、開発およびテスト環境ではこれを true に設定し、pro 環境では false に設定します。