我要在splunk中创建一个仪表板,它将在日志文件中显示错误报告:
[2011-09-12 14:13:00:605 GMT][com.abc.rest.Security][http-8080-Processor15] ERROR Unable to decrypt token [abc.com=3502639832.36895.0000; path=/] due to error: Input length must be multiple of 16 when decrypting with padded cipher
[2011-09-12 14:13:00:608 GMT][com.abc.filters.AuthenticationFilter][http-8080-Processor15] DEBUG ValidAuthToken: false
[2011-09-13 16:43:40:134 GMT][com.abc.PerfManager][http-8080-Processor13] ERROR Operation Failed: GET_ACCOUNT_ORDER [Status Code: 0150 Message: ACCESS_DENIED]
[2011-09-13 16:43:40:137 GMT][com.abc.rest.ResolvePackage][http-8080-Processor13] WARN MCE error occurred [StatusCode: 0150].
以上错误发生在不同的时间和我想算一下这些&显示所有这些错误的饼图及其计数。基本上,这些错误可能是以ERROR开头的任何错误。
我还应该记录日志中的Top10警告。
我找不到在Splunk中实现它的好方法。任何人都可以帮我解决如何在splunk中实现它的问题吗?
谢谢!
答案 0 :(得分:1)
... | rex "ERROR (?<error_type>[^\[]+)" | stats count by error_type
这样的事情应该有效。检查我们的http://splunk-base.splunk.com/answers/是否无效。