Skip to content

[Logger] Updating excluded_404s to excluded_http_codes #15466

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions logging/monolog_email.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ it is broken down.
action_level: critical
# to also log 400 level errors (but not 404's):
# action_level: error
# excluded_404s:
# - ^/
# excluded_http_codes: [404]
handler: deduplicated
deduplicated:
type: deduplication
Expand Down Expand Up @@ -62,7 +61,7 @@ it is broken down.
to also log 400 level errors (but not 404's):
action-level="error"
And add this child inside this monolog:handler
<monolog:excluded-404>^/</monolog:excluded-404>
<monolog:excluded-http-code code="404"/>
-->
<monolog:handler
name="main"
Expand Down Expand Up @@ -107,9 +106,7 @@ it is broken down.
'action_level' => 'critical',
// to also log 400 level errors (but not 404's):
// 'action_level' => 'error',
// 'excluded_404s' => [
// '^/',
// ],
// 'excluded_http_codes' => [404],
'handler' => 'deduplicated',
],
'deduplicated' => [
Expand Down