Skip to content

Instantly share code, notes, and snippets.

@mingder78
Created December 11, 2016 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mingder78/00e9601ab56db92d9b629dd6d9a615f2 to your computer and use it in GitHub Desktop.
Save mingder78/00e9601ab56db92d9b629dd6d9a615f2 to your computer and use it in GitHub Desktop.
logstash example
output {
if [type] == "apache" {
if [status] =~ /^5\d\d/ {
nagios { ... }
} else if [status] =~ /^4\d\d/ {
elasticsearch { ... }
}
statsd { increment => "apache.%{status}" }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment