You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\A^\<(?<pri>[0-9]{1,3})\>[1-9]\d{0,2} (?<time>[^ ]+) (?<host>[^ ]+) (?<ident>[^ ]+) (?<pid>[^ ]+) (?<msgid>[^ ]+) (?<extradata>(\[([^\]]*)\]|[^ ])).?(?<message>.*)$\z
(?<pid>.{1,128}) -> (?<pid>[^ ]+) pid should be anything until next space
(?<extradata>(\[(.*)\]|[^ ])) -> (?<extradata>(\[([^\]]*)\]|[^ ])) extradata may not contain ]
(?<message>.+) -> .?(?<message>.*) message should be optional
The text was updated successfully, but these errors were encountered:
fluentd/lib/fluent/plugin/parser_syslog.rb
Line 30 in 815e513
Should be something like that
The text was updated successfully, but these errors were encountered: