Skip to content

Instantly share code, notes, and snippets.

@playerjamesbattleground
Created March 23, 2014 06:03
Show Gist options
  • Save playerjamesbattleground/9719355 to your computer and use it in GitHub Desktop.
Save playerjamesbattleground/9719355 to your computer and use it in GitHub Desktop.
logstash for mule.log
input {
file {
path => "D:/dev/mule35ce/logs/mule.log"
}
}
filter {
multiline {
pattern => "^%{LOGLEVEL}"
negate => true
what => "previous"
}
}
output {
file {
path => "inputside.log"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment