Kibana 4 で「部分文字列を区別する」クエリを取得する方法を知りたいです。
たとえば、次のように、「メッセージ」をサブシーケンスでグループ化します。
行ログ:
Timestamp | Level | Message
2015-03-31 | ERROR | Something is wrong
2015-03-31 | ERROR | Something is still wrong
2015-03-31 | INFO | Problem seams to be fixed
2015-03-31 | WARN | There may be a problem
期待される結果は次のようになります。
wrong: 2
problem: 2
fixed: 1
何か案は?
前もって感謝します。