我正在嘗試爲混合日誌創建Grok模式。這是我第一次創造了條件鏈,我不斷收到語法錯誤: opt/logstash/bin/logstash -f /opt/logstash/conf.d/sip-parser.conf -- configtest
Error: Expected one of #, in, not , ==, !=, <=, >=, <, >, =~, !~, and, or, x
07:40:28,339 INFO [org.sprinframework.web.context.ContxtLoader] (ServerService Thread Pool -- 672) WebApplicationContext: initialization started
我寫了這樣的 grok {
match => { "message" => "%{TIME:t
我在Logstash/ElasticSearch中爲字段使用路徑分層結構標記器。因此,如果路徑域是像/ A/B/C,標記生成器將其轉換爲 /a
/a/b
/a/b/c
我想產生這樣 a - 3 hits
b - 2 hits
c - 1 hit
什麼是最好的方式做到這一點的統計?另外,我想知道是否有辦法在單獨的字段中添加文件夾深度。