Merge "Don't index logs with DEBUG log level."

This commit is contained in:
Jenkins 2013-08-06 21:30:08 +00:00 committed by Gerrit Code Review
commit e220cfe16a

View File

@ -106,6 +106,12 @@ filter {
pattern => [ "%{SYSLOGTIMESTAMP:logdate}%{SPACE}%{SYSLOGHOST:syslog_host}?%{SPACE}%{DATA:syslog_program}(?:\[%{POSINT:syslog_pid}\])?:? %{GREEDYDATA:logmessage}" ] pattern => [ "%{SYSLOGTIMESTAMP:logdate}%{SPACE}%{SYSLOGHOST:syslog_host}?%{SPACE}%{DATA:syslog_program}(?:\[%{POSINT:syslog_pid}\])?:? %{GREEDYDATA:logmessage}" ]
add_field => [ "received_at", "%{@timestamp}" ] add_field => [ "received_at", "%{@timestamp}" ]
} }
# Remove DEBUG logs to reduce the amount of data that needs to be processed.
grep {
type => "jenkins"
negate => true
match => [ "loglevel", "DEBUG" ]
}
# Filters below here should be consistent for all Jenkins log formats. # Filters below here should be consistent for all Jenkins log formats.
date { date {