1

我尝试使用 logstach 来查看我们网站上的可视化日志。

我们的会议

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/制作图案,但图案不起作用。

4

1 回答 1

1

试试这个模式

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

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

于 2014-02-10T04:35:53.770 回答