Skip to content

Instantly share code, notes, and snippets.

@nirvdrum
Created February 20, 2014 17:52
Show Gist options
  • Save nirvdrum/9119499 to your computer and use it in GitHub Desktop.
Save nirvdrum/9119499 to your computer and use it in GitHub Desktop.
<%
@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