Skip to content

Commit

Permalink
disable two overactive logging channels
Browse files Browse the repository at this point in the history
These two channels generate about a million redundant logs between the two of them per hour, nearly doubling our current log ingestion rate.
  • Loading branch information
The-Voidwalker committed Apr 25, 2024
1 parent 1b71dbb commit d54ef32
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion LocalSettings.php
Expand Up @@ -6344,7 +6344,8 @@
'error' => 'debug',
'error-json' => false,
'EventBus' => [ 'graylog' => 'error' ],
'EventLogging' => 'debug',
// Please make sure wgEventLoggingBaseUri is set before re-enabling this group
'EventLogging' => false,
'exception' => 'debug',
'exception-json' => false,
'exec' => 'debug',
Expand All @@ -6368,6 +6369,8 @@
'localisation' => false,
'ldap' => 'warning',
'LinkBatch' => false,
// Generates logs for all pages with links to special pages or interwiki links
'LinkCache' => false,
'Linter' => 'debug',
'LocalFile' => 'warning',
'localhost' => false,
Expand Down

0 comments on commit d54ef32

Please sign in to comment.