Merge "Add Manila logs to filter regex"

This commit is contained in:
Jenkins 2015-07-15 10:37:52 +00:00 committed by Gerrit Code Review
commit 9e40b05024
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ import re
# which logs support severity
SUPPORTS_SEV = re.compile(
r'/' # this uses an re.search so anchor the string
r'((screen-)?(n-|c-|q-|g-|h-|ir-|ceil|key|sah|des|tr)' # openstack logs
r'((screen-)?(n-|c-|q-|g-|h-|ir-|m-|ceil|key|sah|des|tr)' # openstack logs
r'|(keystone|tempest)\.txt|syslog)') # other things we understand
SYSLOGDATE = '\w+\s+\d+\s+\d{2}:\d{2}:\d{2}'