Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 393 Bytes

File metadata and controls

20 lines (14 loc) · 393 Bytes

Query String Rule

rule {
    //...
    params = [
            index: "logstash-*",
            queryString: "message:Error"
    ]

    reaction { messages -> // All messages that match the query
            // Your logic here
    }

}

You can find more about query string here