Logstash的模式

时间:2014-02-07 13:21:10

标签: logging logstash grok entlib-logging

我尝试将logstach用于我们网站的可视化日志。

我们的conf

input {
    file {
        path => 'f:/tst/zp/*zp*.log'
        type => 'app'
        start_position =>'end'
    }
}

filter {
    multiline {
        pattern => ???
        what => 'previous'
        negate => true
     }
}  
output { 
  stdout { codec => rubydebug }
  elasticsearch { embedded => true }
}

我们的日志示例(企业库)

----------------------------------------
16.08.2012 6:46:40 [1476] [Error] General 

Message: Error
System.FormatException: Input string was not in a correct format.
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at ZCommon.Model.Search.VacancySearchArgs.<MakeSql>b__d(String[] x) in d:\Builds\Sources\DM_Zarplata4.2_Retail3\DM_Zarplata\Zarplata4\releases\current\ZCommon4.4\Model\Search\VacancySearchArgs.cs:line 126


----------------------------------------

你能帮助模式吗?我使用http://grokdebug.herokuapp.com/来制作模式,但模式不起作用。

1 个答案:

答案 0 :(得分:1)

尝试这种模式

filter {
    multiline {
        pattern => "^[0-9]{2}\.[0-9]{2}\.[0-9]{4}"
        what => 'previous'
        negate => true
    }
}

它对我有用。该模式用于过滤日期。