grok pattern is not working in logstash

时间:2015-07-13 20:59:07

标签: logstash logstash-grok

I have the "01 Jul 2014 [accType] name - >20 cc = 100" (P.S: there are two space before '>20') in log file and the config file has,

..input..
filter {
  grok {
    match => [ "message", [
              " -  >20 cc = %{NUMBER:value:int}"
    ]]
 }
}
..output...

the pattern matches when I try in https://grokdebug.herokuapp.com/ but not working when I run this config with actual logstash. other patterns in the same config file are working except this one pattern.

0 个答案:

没有答案