如何解析日志?
日志的解析是我使用的GROK(知识的图形表示)模式,您可以在 Github 中找到它们 -
Logstash 将日志的数据与指定的 GROK Pattern 或用于解析日志的模式序列匹配,如“%{COMBINEDAPACHELOG}”,这通常用于 apache 日志。
解析后的数据更结构化,更易于搜索和执行查询。Logstash 在输入日志中搜索指定的 GROK 模式,并从日志中提取匹配的行。您可以使用 GROK 调试器来测试您的 GROK 模式。
GROK 模式的语法是 %{SYNTAX:SEMANTIC}。Logstash GROK 过滤器采用以下形式编写 -
%{PATTERN:FieldName}
这里,PATTERN 表示 GROK 模式,fieldname 是字段的名称,表示输出中的解析数据。
输入
日志中的示例错误行 -
[Wed Dec 07 21:54:54.048805 2016] [:error] [pid 1234:tid 3456829102]
[client 192.168.1.1:25007] JSP Notice: Undefined index: abc in
/home/manu/tpworks/cainiaoya.com/index.jsp on line 11
GROK 模式序列
此 GROK 模式序列与日志事件匹配,日志事件由时间戳、日志级别、进程 ID、事务 ID 和错误消息组成。
\[(%{DAY:day} %{MONTH:month} %{MONTHDAY} %{TIME} %{YEAR})\] \[.*:%{LOGLEVEL:loglevel}\]
\[pid %{NUMBER:pid}:tid %{NUMBER:tid}\] \[client %{IP:clientip}:.*\]
%{GREEDYDATA:errormsg}
输出
输出为 JSON 格式。
{
"day": [
"Wed"
],
"month": [
"Dec"
],
"loglevel": [
"error"
],
"pid": [
"1234"
],
"tid": [
"3456829102"
],
"clientip": [
"192.168.1.1"
],
"errormsg": [
"JSP Notice: Undefined index: abc in
/home/manu/tpworks/cainiaoya.com/index.jsp on line 11"
]
}