Created
February 20, 2014 17:52
-
-
Save nirvdrum/9119499 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
@path = "/etc/graylog2.d/rules/graylog2.drl" | |
%> | |
import org.graylog2.messagehandlers.gelf.GELFMessage | |
rule "Drop Selenium Grid heartbeat messages" | |
when | |
m : GELFMessage( facility == "selenium" && fullMessage matches ".*\\/status\\)?$" ) | |
then | |
m.setFilterOut(true); | |
System.out.println("[Drop all Selenium Grid heartbeat messages] : " + m.toString() ); | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment