Skip to content

Instantly share code, notes, and snippets.

@clstokes
Created October 1, 2012 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clstokes/3813602 to your computer and use it in GitHub Desktop.
Save clstokes/3813602 to your computer and use it in GitHub Desktop.
Logstash - single log file
input {
file {
type => "akamai"
path => "/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0"
}
}
filter {
grok {
type => "akamai"
pattern => "%{COMBINEDAPACHELOG}"
}
}
output {
elasticsearch {
host => "127.0.0.1"
}
}
ubuntu@ip-10-244-149-49:/opt/logstash$ java -jar logstash-1.1.1-monolithic.jar agent -f /etc/logstash.conf -vv
Read config {"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"312","method":"run"}
Start thread {"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"315","method":"run"}
Starting input {"plugin":"LogStash::Inputs::File: {\"type\"=>\"akamai\", \"path\"=>[\"/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0\"], \"debug\"=>false, \"add_field\"=>{}, \"stat_interval\"=>1, \"discover_interval\"=>15, \"sincedb_write_interval\"=>15}","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"332","method":"start_input"}
Starting thread {"plugin":"LogStash::Inputs::File: {\"type\"=>\"akamai\", \"path\"=>[\"/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0\"], \"debug\"=>false, \"add_field\"=>{}, \"stat_interval\"=>1, \"discover_interval\"=>15, \"sincedb_write_interval\"=>15}","thread":1,"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"348","method":"start_input"}
Grok patterns path {"patterns_dir":["file:/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/../../patterns/*"],"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"100","method":"register"}
In-jar path to read {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/../patterns/*","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"106","method":"register"}
In-jar path to read {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/*","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"106","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/firewalls","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/ruby","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/java","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Grok loading patterns from file {"path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/linux-syslog","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"114","method":"register"}
Match data {"match":{"@message":["%{COMBINEDAPACHELOG}"]},"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"121","method":"register"}
Adding pattern from file {"name":"NETSCREENSESSIONLOG","pattern":"%{SYSLOGDATE:date} %{IPORHOST:device} %{IPORHOST}: NetScreen device_id=%{WORD:device_id}%{DATA}: start_time=%{QUOTEDSTRING:start_time} duration=%{INT:duration} policy_id=%{INT:policy_id} service=%{DATA:service} proto=%{INT:proto} src zone=%{WORD:src_zone} dst zone=%{WORD:dst_zone} action=%{WORD:action} sent=%{INT:sent} rcvd=%{INT:rcvd} src=%{IPORHOST:src_ip} dst=%{IPORHOST:dst_ip} src_port=%{INT:src_port} dst_port=%{INT:dst_port} src-xlated ip=%{IPORHOST:src_xlated_ip} port=%{INT:src_xlated_port} dst-xlated ip=%{IPORHOST:dst_xlated_ip} port=%{INT:dst_xlated_port} session_id=%{INT:session_id} reason=%{GREEDYDATA:reason}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/firewalls","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"RUBY_LOGLEVEL","pattern":"(?:DEBUG|FATAL|ERROR|WARN|INFO)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/ruby","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"RUBY_LOGGER","pattern":"[DFEWI], \\[%{TIMESTAMP_ISO8601} #{POSINT:pid}\\] *%{RUBY_LOGLEVEL} -- %{DATA:progname}: %{DATA:message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/ruby","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"USERNAME","pattern":"[a-zA-Z0-9_-]+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"USER","pattern":"%{USERNAME}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"INT","pattern":"(?:[+-]?(?:[0-9]+))","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"BASE10NUM","pattern":"(?<![0-9.+-])(?>[+-]?(?:(?:[0-9]+(?:\\.[0-9]+)?)|(?:\\.[0-9]+)))","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NUMBER","pattern":"(?:%{BASE10NUM})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"BASE16NUM","pattern":"(?<![0-9A-Fa-f])(?:[+-]?(?:0x)?(?:[0-9A-Fa-f]+))","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"BASE16FLOAT","pattern":"\\b(?<![0-9A-Fa-f.])(?:[+-]?(?:0x)?(?:(?:[0-9A-Fa-f]+(?:\\.[0-9A-Fa-f]*)?)|(?:\\.[0-9A-Fa-f]+)))\\b","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"POSINT","pattern":"\\b(?:[1-9][0-9]*)\\b","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NONNEGINT","pattern":"\\b(?:[0-9]+)\\b","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"WORD","pattern":"\\b\\w+\\b","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NOTSPACE","pattern":"\\S+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SPACE","pattern":"\\s*","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATA","pattern":".*?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"GREEDYDATA","pattern":".*","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"QUOTEDSTRING","pattern":"(?:(?<!\\\\)(?:\"(?:\\\\.|[^\\\\\"]+)*\"|(?:'(?:\\\\.|[^\\\\']+)*')|(?:`(?:\\\\.|[^\\\\`]+)*`)))","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"UUID","pattern":"[A-Fa-f0-9]{8}-(?:[A-Fa-f0-9]{4}-){3}[A-Fa-f0-9]{12}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"MAC","pattern":"(?:%{CISCOMAC}|%{WINDOWSMAC}|%{COMMONMAC})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"CISCOMAC","pattern":"(?:(?:[A-Fa-f0-9]{4}\\.){2}[A-Fa-f0-9]{4})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"WINDOWSMAC","pattern":"(?:(?:[A-Fa-f0-9]{2}-){5}[A-Fa-f0-9]{2})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"COMMONMAC","pattern":"(?:(?:[A-Fa-f0-9]{2}:){5}[A-Fa-f0-9]{2})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"IP","pattern":"(?<![0-9])(?:(?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})[.](?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})[.](?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})[.](?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2}))(?![0-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HOSTNAME","pattern":"\\b(?:[0-9A-Za-z][0-9A-Za-z-]{0,62})(?:\\.(?:[0-9A-Za-z][0-9A-Za-z-]{0,62}))*(\\.?|\\b)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HOST","pattern":"%{HOSTNAME}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"IPORHOST","pattern":"(?:%{HOSTNAME}|%{IP})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HOSTPORT","pattern":"(?:%{IPORHOST=~/\\./}:%{POSINT})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"PATH","pattern":"(?:%{UNIXPATH}|%{WINPATH})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"UNIXPATH","pattern":"(?:/(?:[\\w_%!$@:.,-]+|\\\\.)*)+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"LINUXTTY","pattern":"(?:/dev/pts/%{NONNEGINT})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"BSDTTY","pattern":"(?:/dev/tty[pq][a-z0-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"TTY","pattern":"(?:%{BSDTTY}|%{LINUXTTY})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"WINPATH","pattern":"(?:[A-Za-z]+:|\\\\)(?:\\\\[^\\\\?*]*)+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"URIPROTO","pattern":"[A-Za-z]+(\\+[A-Za-z+]+)?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"URIHOST","pattern":"%{IPORHOST}(?::%{POSINT:port})?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"URIPATH","pattern":"(?:/[A-Za-z0-9$.+!*'(){},~:;=#%_-]*)+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"URIPARAM","pattern":"\\?[A-Za-z0-9$.+!*'(){},~#%&/=:;_-]*","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"URIPATHPARAM","pattern":"%{URIPATH}(?:%{URIPARAM})?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"URI","pattern":"%{URIPROTO}://(?:%{USER}(?::[^@]*)?@)?(?:%{URIHOST})?(?:%{URIPATHPARAM})?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"MONTH","pattern":"\\b(?:Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?)\\b","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"MONTHNUM","pattern":"(?:0?[1-9]|1[0-2])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"MONTHDAY","pattern":"(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DAY","pattern":"(?:Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?|Sun(?:day)?)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"YEAR","pattern":"[0-9]+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HOUR","pattern":"(?:2[0123]|[01][0-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"MINUTE","pattern":"(?:[0-5][0-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SECOND","pattern":"(?:(?:[0-5][0-9]|60)(?:[.,][0-9]+)?)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"TIME","pattern":"(?!<[0-9])%{HOUR}:%{MINUTE}(?::%{SECOND})(?![0-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATE_US","pattern":"%{MONTHNUM}[/-]%{MONTHDAY}[/-]%{YEAR}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATE_EU","pattern":"%{YEAR}[/-]%{MONTHNUM}[/-]%{MONTHDAY}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"ISO8601_TIMEZONE","pattern":"(?:Z|[+-]%{HOUR}(?::?%{MINUTE}))","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"ISO8601_SECOND","pattern":"(?:%{SECOND}|60)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"TIMESTAMP_ISO8601","pattern":"%{YEAR}-%{MONTHNUM}-%{MONTHDAY}[T ]%{HOUR}:?%{MINUTE}(?::?%{SECOND})?%{ISO8601_TIMEZONE}?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATE","pattern":"%{DATE_US}|%{DATE_EU}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATESTAMP","pattern":"%{DATE}[- ]%{TIME}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"TZ","pattern":"(?:[PMCE][SD]T)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATESTAMP_RFC822","pattern":"%{DAY} %{MONTH} %{MONTHDAY} %{YEAR} %{TIME} %{TZ}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"DATESTAMP_OTHER","pattern":"%{DAY} %{MONTH} %{MONTHDAY} %{TIME} %{TZ} %{YEAR}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGTIMESTAMP","pattern":"%{MONTH} +%{MONTHDAY} %{TIME}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"PROG","pattern":"(?:[\\w._/%-]+)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGPROG","pattern":"%{PROG:program}(?:\\[%{POSINT:pid}\\])?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGHOST","pattern":"%{IPORHOST}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGFACILITY","pattern":"<%{POSINT:facility}.%{POSINT:priority}>","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HTTPDATE","pattern":"%{MONTHDAY}/%{MONTH}/%{YEAR}:%{TIME} %{INT:ZONE}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"QS","pattern":"%{QUOTEDSTRING}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGBASE","pattern":"%{SYSLOGTIMESTAMP:timestamp} (?:%{SYSLOGFACILITY} )?%{SYSLOGHOST:logsource} %{SYSLOGPROG}:","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"COMBINEDAPACHELOG","pattern":"%{IPORHOST:clientip} %{USER:ident} %{USER:auth} \\[%{HTTPDATE:timestamp}\\] \"(?:%{WORD:verb} %{URIPATHPARAM:request}(?: HTTP/%{NUMBER:httpversion})?|-)\" %{NUMBER:response} (?:%{NUMBER:bytes}|-) \"(?:%{URI:referrer}|-)\" %{QS:agent}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"LOGLEVEL","pattern":"([D|d]ebug|DEBUG|[N|n]otice|NOTICE|[I|i]nfo|INFO|[W|w]arn?(?:ing)?|WARN?(?:ING)?|[E|e]rr?(?:or)?|ERR?(?:OR)?|[C|c]rit?(?:ical)?|CRIT?(?:ICAL)?)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/grok-patterns","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"JAVACLASS","pattern":"(?:[a-zA-Z0-9-]+\\.)+[A-Za-z0-9]+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/java","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"JAVAFILE","pattern":"(?:[A-Za-z0-9_.-]+)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/java","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"JAVASTACKTRACEPART","pattern":"at %{JAVACLASS:class}\\.%{WORD:method}\\(%{JAVAFILE:file}:%{NUMBER:line}\\)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/java","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HAPROXYTIME","pattern":"(?!<[0-9])%{HOUR:haproxy_hour}:%{MINUTE:haproxy_minute}(?::%{SECOND:haproxy_second})(?![0-9])","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HAPROXYDATE","pattern":"%{MONTHDAY:haproxy_monthday}/%{MONTH:haproxy_month}/%{YEAR:haproxy_year}:%{HAPROXYTIME:haproxy_time}.%{INT:haproxy_milliseconds}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HAPROXYCAPTUREDREQUESTHEADERS","pattern":"%{DATA:captured_request_headers}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HAPROXYCAPTUREDRESPONSEHEADERS","pattern":"%{DATA:captured_response_headers}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HAPROXYHTTP","pattern":"%{SYSLOGTIMESTAMP:syslog_timestamp} %{IPORHOST:syslog_server} %{SYSLOGPROG}: %{IP:client_ip}:%{INT:client_port} \\[%{HAPROXYDATE:accept_date}\\] %{NOTSPACE:frontend_name} %{NOTSPACE:backend_name}/%{NOTSPACE:server_name} %{INT:time_request}/%{INT:time_queue}/%{INT:time_backend_connect}/%{INT:time_backend_response}/%{NOTSPACE:time_duration} %{INT:http_status_code} %{NOTSPACE:bytes_read} %{DATA:captured_request_cookie} %{DATA:captured_response_cookie} %{NOTSPACE:termination_state} %{INT:actconn}/%{INT:feconn}/%{INT:beconn}/%{INT:srvconn}/%{NOTSPACE:retries} %{INT:srv_queue}/%{INT:backend_queue} \\{%{HAPROXYCAPTUREDREQUESTHEADERS}\\} \\{%{HAPROXYCAPTUREDRESPONSEHEADERS}\\} \"%{WORD:http_verb} %{URIPATHPARAM:http_request} HTTP/%{NUMBER:http_version}\"","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"HAPROXYTCP","pattern":"%{SYSLOGTIMESTAMP:syslog_timestamp} %{IPORHOST:syslog_server} %{SYSLOGPROG}: %{IP:client_ip}:%{INT:client_port} \\[%{HAPROXYDATE:accept_date}\\] %{NOTSPACE:frontend_name} %{NOTSPACE:backend_name}/%{NOTSPACE:server_name} %{INT:time_queue}/%{INT:time_backend_connect}/%{NOTSPACE:time_duration} %{NOTSPACE:bytes_read} %{NOTSPACE:termination_state} %{INT:actconn}/%{INT:feconn}/%{INT:beconn}/%{INT:srvconn}/%{NOTSPACE:retries} %{INT:srv_queue}/%{INT:backend_queue}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/haproxy","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOSTIME","pattern":"\\[%{NUMBER:nagios_epoch}\\]","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_CURRENT_SERVICE_STATE","pattern":"CURRENT SERVICE STATE","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_CURRENT_HOST_STATE","pattern":"CURRENT HOST STATE","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_SERVICE_NOTIFICATION","pattern":"SERVICE NOTIFICATION","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_HOST_NOTIFICATION","pattern":"HOST NOTIFICATION","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_SERVICE_ALERT","pattern":"SERVICE ALERT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_HOST_ALERT","pattern":"HOST ALERT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_SERVICE_FLAPPING_ALERT","pattern":"SERVICE FLAPPING ALERT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_HOST_FLAPPING_ALERT","pattern":"HOST FLAPPING ALERT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_SERVICE_DOWNTIME_ALERT","pattern":"SERVICE DOWNTIME ALERT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_HOST_DOWNTIME_ALERT","pattern":"HOST DOWNTIME ALERT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_PASSIVE_SERVICE_CHECK","pattern":"PASSIVE SERVICE CHECK","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_PASSIVE_HOST_CHECK","pattern":"PASSIVE HOST CHECK","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_SERVICE_EVENT_HANDLER","pattern":"SERVICE EVENT HANDLER","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_HOST_EVENT_HANDLER","pattern":"HOST EVENT HANDLER","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_EXTERNAL_COMMAND","pattern":"EXTERNAL COMMAND","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TYPE_TIMEPERIOD_TRANSITION","pattern":"TIMEPERIOD TRANSITION","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_DISABLE_SVC_CHECK","pattern":"DISABLE_SVC_CHECK","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_ENABLE_SVC_CHECK","pattern":"ENABLE_SVC_CHECK","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_DISABLE_HOST_CHECK","pattern":"DISABLE_HOST_CHECK","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_ENABLE_HOST_CHECK","pattern":"ENABLE_HOST_CHECK","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_PROCESS_SERVICE_CHECK_RESULT","pattern":"PROCESS_SERVICE_CHECK_RESULT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_PROCESS_HOST_CHECK_RESULT","pattern":"PROCESS_HOST_CHECK_RESULT","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_SCHEDULE_SERVICE_DOWNTIME","pattern":"SCHEDULE_SERVICE_DOWNTIME","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_SCHEDULE_HOST_DOWNTIME","pattern":"SCHEDULE_HOST_DOWNTIME","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_WARNING","pattern":"Warning:%{SPACE}%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_CURRENT_SERVICE_STATE","pattern":"%{NAGIOS_TYPE_CURRENT_SERVICE_STATE:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{DATA:nagios_statetype};%{DATA:nagios_statecode};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_CURRENT_HOST_STATE","pattern":"%{NAGIOS_TYPE_CURRENT_HOST_STATE:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_state};%{DATA:nagios_statetype};%{DATA:nagios_statecode};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_SERVICE_NOTIFICATION","pattern":"%{NAGIOS_TYPE_SERVICE_NOTIFICATION:nagios_type}: %{DATA:nagios_notifyname};%{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{DATA:nagios_contact};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_HOST_NOTIFICATION","pattern":"%{NAGIOS_TYPE_HOST_NOTIFICATION}: %{DATA:nagios_notifyname};%{DATA:nagios_hostname};%{DATA:nagios_state};%{DATA:nagios_contact};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_SERVICE_ALERT","pattern":"%{NAGIOS_TYPE_SERVICE_ALERT:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{DATA:nagios_statelevel};%{NUMBER:nagios_attempt};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_HOST_ALERT","pattern":"%{NAGIOS_TYPE_HOST_ALERT:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_state};%{DATA:nagios_statelevel};%{NUMBER:nagios_attempt};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_SERVICE_FLAPPING_ALERT","pattern":"%{NAGIOS_TYPE_SERVICE_FLAPPING_ALERT:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_HOST_FLAPPING_ALERT","pattern":"%{NAGIOS_TYPE_HOST_FLAPPING_ALERT:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_state};%{GREEDYDATA:nagios_message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_SERVICE_DOWNTIME_ALERT","pattern":"%{NAGIOS_TYPE_SERVICE_DOWNTIME_ALERT:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{GREEDYDATA:nagios_comment}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_HOST_DOWNTIME_ALERT","pattern":"%{NAGIOS_TYPE_HOST_DOWNTIME_ALERT:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_state};%{GREEDYDATA:nagios_comment}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_PASSIVE_SERVICE_CHECK","pattern":"%{NAGIOS_TYPE_PASSIVE_SERVICE_CHECK:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{GREEDYDATA:nagios_comment}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_PASSIVE_HOST_CHECK","pattern":"%{NAGIOS_TYPE_PASSIVE_HOST_CHECK:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_state};%{GREEDYDATA:nagios_comment}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_SERVICE_EVENT_HANDLER","pattern":"%{NAGIOS_TYPE_SERVICE_EVENT_HANDLER:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{DATA:nagios_statelevel};%{DATA:nagios_event_handler_name}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_HOST_EVENT_HANDLER","pattern":"%{NAGIOS_TYPE_HOST_EVENT_HANDLER:nagios_type}: %{DATA:nagios_hostname};%{DATA:nagios_state};%{DATA:nagios_statelevel};%{DATA:nagios_event_handler_name}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_TIMEPERIOD_TRANSITION","pattern":"%{NAGIOS_TYPE_TIMEPERIOD_TRANSITION:nagios_type}: %{DATA:nagios_service};%{DATA:nagios_unknown1};%{DATA:nagios_unknown2};","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_DISABLE_SVC_CHECK","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_DISABLE_SVC_CHECK:nagios_command};%{DATA:nagios_hostname};%{DATA:nagios_service}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_DISABLE_HOST_CHECK","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_DISABLE_HOST_CHECK:nagios_command};%{DATA:nagios_hostname}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_ENABLE_SVC_CHECK","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_ENABLE_SVC_CHECK:nagios_command};%{DATA:nagios_hostname};%{DATA:nagios_service}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_ENABLE_HOST_CHECK","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_ENABLE_HOST_CHECK:nagios_command};%{DATA:nagios_hostname}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_PROCESS_SERVICE_CHECK_RESULT","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_PROCESS_SERVICE_CHECK_RESULT:nagios_command};%{DATA:nagios_hostname};%{DATA:nagios_service};%{DATA:nagios_state};%{GREEDYDATA:nagios_check_result}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_PROCESS_HOST_CHECK_RESULT","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_PROCESS_HOST_CHECK_RESULT:nagios_command};%{DATA:nagios_hostname};%{DATA:nagios_state};%{GREEDYDATA:nagios_check_result}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOS_EC_LINE_SCHEDULE_HOST_DOWNTIME","pattern":"%{NAGIOS_TYPE_EXTERNAL_COMMAND:nagios_type}: %{NAGIOS_EC_SCHEDULE_HOST_DOWNTIME:nagios_command};%{DATA:nagios_hostname};%{NUMBER:nagios_start_time};%{NUMBER:nagios_end_time};%{NUMBER:nagios_fixed};%{NUMBER:nagios_trigger_id};%{NUMBER:nagios_duration};%{DATA:author};%{DATA:comment}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"NAGIOSLOGLINE","pattern":"%{NAGIOSTIME} (?:%{NAGIOS_WARNING}|%{NAGIOS_CURRENT_SERVICE_STATE}|%{NAGIOS_CURRENT_HOST_STATE}|%{NAGIOS_SERVICE_NOTIFICATION}|%{NAGIOS_HOST_NOTIFICATION}|%{NAGIOS_SERVICE_ALERT}|%{NAGIOS_HOST_ALERT}|%{NAGIOS_SERVICE_FLAPPING_ALERT}|%{NAGIOS_HOST_FLAPPING_ALERT}|%{NAGIOS_SERVICE_DOWNTIME_ALERT}|%{NAGIOS_HOST_DOWNTIME_ALERT}|%{NAGIOS_PASSIVE_SERVICE_CHECK}|%{NAGIOS_PASSIVE_HOST_CHECK}|%{NAGIOS_SERVICE_EVENT_HANDLER}|%{NAGIOS_HOST_EVENT_HANDLER}|%{NAGIOS_TIMEPERIOD_TRANSITION}|%{NAGIOS_EC_LINE_DISABLE_SVC_CHECK}|%{NAGIOS_EC_LINE_ENABLE_SVC_CHECK}|%{NAGIOS_EC_LINE_DISABLE_HOST_CHECK|%{NAGIOS_EC_LINE_ENABLE_HOST_CHECK}|%{NAGIOS_EC_LINE_PROCESS_HOST_CHECK_RESULT}|%{NAGIOS_EC_LINE_PROCESS_SERVICE_CHECK_RESULT}|%{NAGIOS_EC_LINE_SCHEDULE_HOST_DOWNTIME})","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/nagios","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGBASE2","pattern":"(?:%{SYSLOGTIMESTAMP:timestamp}|%{TIMESTAMP_ISO8601:timestamp8601}) (?:%{SYSLOGFACILITY} )?%{SYSLOGHOST:logsource} %{SYSLOGPROG}:","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/linux-syslog","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGPAMSESSION","pattern":"%{SYSLOGBASE} (?=%{GREEDYDATA:message})%{WORD:pam_module}\\(%{DATA:pam_caller}\\): session %{WORD:pam_session_state} for user %{USERNAME:username}(?: by %{GREEDYDATA:pam_by})?","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/linux-syslog","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"CRON_ACTION","pattern":"[A-Z ]+","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/linux-syslog","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"CRONLOG","pattern":"%{SYSLOGBASE} \\(%{USER:user}\\) %{CRON_ACTION:action} \\(%{DATA:message}\\)","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/linux-syslog","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Adding pattern from file {"name":"SYSLOGLINE","pattern":"%{SYSLOGBASE2} %{GREEDYDATA:message}","path":"file:/opt/logstash/logstash-1.1.1-monolithic.jar!/patterns/linux-syslog","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"260","method":"add_patterns_from_file"}
Grok compile {"field":"@message","patterns":["%{COMBINEDAPACHELOG}"],"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"139","method":"register"}
regexp: akamai/@message {"pattern":"%{COMBINEDAPACHELOG}","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/filters/grok.rb","line":"141","method":"register"}
Starting output {"plugin":"LogStash::Outputs::ElasticSearch: {\"host\"=>\"127.0.0.1\", \"type\"=>\"\", \"tags\"=>[], \"exclude_tags\"=>[], \"fields\"=>[], \"index\"=>\"logstash-%{+YYYY.MM.dd}\", \"index_type\"=>\"%{@type}\", \"port\"=>9300, \"embedded\"=>false, \"embedded_http_port\"=>\"9200-9300\", \"max_inflight_requests\"=>50}","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"356","method":"start_output"}
Registering file input {"path":["/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0"],"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/inputs/file.rb","line":"67","method":"register"}
Input registered {"plugin":"LogStash::Inputs::File: {\"type\"=>\"akamai\", \"path\"=>[\"/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0\"], \"debug\"=>false, \"add_field\"=>{}, \"stat_interval\"=>1, \"discover_interval\"=>15, \"sincedb_write_interval\"=>15}","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"678","method":"run_input"}
_sincedb_open: /home/ubuntu/.sincedb: No such file or directory - /home/ubuntu/.sincedb {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/gems/filewatch-0.3.3/lib/filewatch/tail.rb","line":"174","method":"_sincedb_open"}
_discover_file: /mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0: new: /mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0 (exclude is []) {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/gems/filewatch-0.3.3/lib/filewatch/watch.rb","line":"119","method":"_discover_file"}
_open_file: /mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0: opening {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/gems/filewatch-0.3.3/lib/filewatch/tail.rb","line":"89","method":"_open_file"}
/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0: initial create, no sincedb, seeking to end 496369016 {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/gems/filewatch-0.3.3/lib/filewatch/tail.rb","line":"122","method":"_open_file"}
/mnt/logs/processing/www_182149.esclf_U.201209270000-2400-0: file grew, old size 0, new size 496369016 {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/gems/filewatch-0.3.3/lib/filewatch/watch.rb","line":"81","method":"each"}
log4j java properties setup {"log4j_level":"DEBUG","level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/logging.rb","line":"65","method":"setup_log4j"}
New ElasticSearch output {"cluster":null,"host":"127.0.0.1","port":9300,"embedded":false,"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/outputs/elasticsearch.rb","line":"100","method":"register"}
log4j, [2012-10-01T18:50:19.279] INFO: org.elasticsearch.node: [Infinity] {0.19.8}[17241]: initializing ...
log4j, [2012-10-01T18:50:19.286] INFO: org.elasticsearch.plugins: [Infinity] loaded [], sites []
log4j, [2012-10-01T18:50:20.591] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [generic], type [cached], keep_alive [30s]
log4j, [2012-10-01T18:50:20.593] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [index], type [cached], keep_alive [5m]
log4j, [2012-10-01T18:50:20.593] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [bulk], type [cached], keep_alive [5m]
log4j, [2012-10-01T18:50:20.593] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [get], type [cached], keep_alive [5m]
log4j, [2012-10-01T18:50:20.593] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [search], type [cached], keep_alive [5m]
log4j, [2012-10-01T18:50:20.594] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [percolate], type [cached], keep_alive [5m]
log4j, [2012-10-01T18:50:20.594] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [management], type [scaling], min [1], size [5], keep_alive [5m]
log4j, [2012-10-01T18:50:20.598] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [flush], type [scaling], min [1], size [10], keep_alive [5m]
log4j, [2012-10-01T18:50:20.598] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [merge], type [scaling], min [1], size [20], keep_alive [5m]
log4j, [2012-10-01T18:50:20.598] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [refresh], type [cached], keep_alive [1m]
log4j, [2012-10-01T18:50:20.598] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [cache], type [scaling], min [1], size [4], keep_alive [5m]
log4j, [2012-10-01T18:50:20.599] DEBUG: org.elasticsearch.threadpool: [Infinity] creating thread_pool [snapshot], type [scaling], min [1], size [5], keep_alive [5m]
log4j, [2012-10-01T18:50:20.620] DEBUG: org.elasticsearch.transport.netty: [Infinity] using worker_count[4], port[9300-9400], bind_host[null], publish_host[null], compress[false], connect_timeout[30s], connections_per_node[2/6/1]
log4j, [2012-10-01T18:50:20.633] DEBUG: org.elasticsearch.discovery.zen.ping.unicast: [Infinity] using initial hosts [127.0.0.1:9300], with concurrent_connects [10]
log4j, [2012-10-01T18:50:20.635] DEBUG: org.elasticsearch.discovery.zen: [Infinity] using ping.timeout [3s], master_election.filter_client [true], master_election.filter_data [false]
log4j, [2012-10-01T18:50:20.641] DEBUG: org.elasticsearch.discovery.zen.elect: [Infinity] using minimum_master_nodes [-1]
log4j, [2012-10-01T18:50:20.642] DEBUG: org.elasticsearch.discovery.zen.fd: [Infinity] [master] uses ping_interval [1s], ping_timeout [30s], ping_retries [3]
log4j, [2012-10-01T18:50:20.646] DEBUG: org.elasticsearch.discovery.zen.fd: [Infinity] [node ] uses ping_interval [1s], ping_timeout [30s], ping_retries [3]
log4j, [2012-10-01T18:50:20.669] DEBUG: org.elasticsearch.monitor.jvm: [Infinity] enabled [true], last_gc_enabled [false], interval [1s], gc_threshold [{default=GcThreshold{name='default', warnThreshold=10000, infoThreshold=5000, debugThreshold=2000}, ParNew=GcThreshold{name='ParNew', warnThreshold=1000, infoThreshold=700, debugThreshold=400}, ConcurrentMarkSweep=GcThreshold{name='ConcurrentMarkSweep', warnThreshold=10000, infoThreshold=5000, debugThreshold=2000}}]
log4j, [2012-10-01T18:50:20.670] DEBUG: org.elasticsearch.monitor.os: [Infinity] Using probe [org.elasticsearch.monitor.os.JmxOsProbe@4daa8b42] with refresh_interval [1s]
log4j, [2012-10-01T18:50:20.671] DEBUG: org.elasticsearch.monitor.process: [Infinity] Using probe [org.elasticsearch.monitor.process.JmxProcessProbe@71fdbe17] with refresh_interval [1s]
log4j, [2012-10-01T18:50:20.674] DEBUG: org.elasticsearch.monitor.jvm: [Infinity] Using refresh_interval [1s]
log4j, [2012-10-01T18:50:20.675] DEBUG: org.elasticsearch.monitor.network: [Infinity] Using probe [org.elasticsearch.monitor.network.JmxNetworkProbe@6293068a] with refresh_interval [5s]
log4j, [2012-10-01T18:50:20.677] DEBUG: org.elasticsearch.monitor.network: [Infinity] net_info
host [ip-10-244-149-49]
eth0 display_name [eth0]
address [/fe80:0:0:0:2000:aff:fef4:9531%2] [/10.244.149.49]
mtu [1500] multicast [true] ptp [false] loopback [false] up [true] virtual [false]
lo display_name [lo]
address [/0:0:0:0:0:0:0:1%1] [/127.0.0.1]
mtu [16436] multicast [false] ptp [false] loopback [true] up [true] virtual [false]
log4j, [2012-10-01T18:50:20.679] DEBUG: org.elasticsearch.monitor.fs: [Infinity] Using probe [org.elasticsearch.monitor.fs.JmxFsProbe@24de1f47] with refresh_interval [1s]
log4j, [2012-10-01T18:50:21.110] DEBUG: org.elasticsearch.indices.store: [Infinity] using indices.store.throttle.type [none], with index.store.throttle.max_bytes_per_sec [0b]
log4j, [2012-10-01T18:50:21.118] DEBUG: org.elasticsearch.cache.memory: [Infinity] using bytebuffer cache with small_buffer_size [1kb], large_buffer_size [1mb], small_cache_size [10mb], large_cache_size [500mb], direct [true]
log4j, [2012-10-01T18:50:21.154] DEBUG: org.elasticsearch.cluster.routing.allocation.decider: [Infinity] using node_concurrent_recoveries [2], node_initial_primaries_recoveries [4]
log4j, [2012-10-01T18:50:21.155] DEBUG: org.elasticsearch.cluster.routing.allocation.decider: [Infinity] using [cluster.routing.allocation.allow_rebalance] with [indices_all_active]
log4j, [2012-10-01T18:50:21.156] DEBUG: org.elasticsearch.cluster.routing.allocation.decider: [Infinity] using [cluster_concurrent_rebalance] with [2]
log4j, [2012-10-01T18:50:21.159] DEBUG: org.elasticsearch.gateway.local: [Infinity] using initial_shards [quorum], list_timeout [30s]
log4j, [2012-10-01T18:50:21.238] DEBUG: org.elasticsearch.indices.recovery: [Infinity] using max_size_per_sec[0b], concurrent_streams [5], file_chunk_size [100kb], translog_size [100kb], translog_ops [1000], and compress [true]
log4j, [2012-10-01T18:50:21.277] DEBUG: org.elasticsearch.indices.memory: [Infinity] using index_buffer_size [64.3mb], with min_shard_index_buffer_size [4mb], max_shard_index_buffer_size [512mb], shard_inactive_time [30m]
log4j, [2012-10-01T18:50:21.281] DEBUG: org.elasticsearch.indices.cache.filter: [Infinity] using [node] filter cache with size [20%], actual_size [128.7mb]
log4j, [2012-10-01T18:50:21.341] DEBUG: org.elasticsearch.gateway.local.state.meta: [Infinity] using gateway.local.auto_import_dangled [YES], with gateway.local.dangling_timeout [2h]
log4j, [2012-10-01T18:50:21.344] INFO: org.elasticsearch.node: [Infinity] {0.19.8}[17241]: initialized
log4j, [2012-10-01T18:50:21.344] INFO: org.elasticsearch.node: [Infinity] {0.19.8}[17241]: starting ...
log4j, [2012-10-01T18:50:21.365] DEBUG: netty.channel.socket.nio.NioProviderMetadata: Using the autodetected NIO constraint level: 0
log4j, [2012-10-01T18:50:21.434] DEBUG: org.elasticsearch.transport.netty: [Infinity] Bound to address [/0:0:0:0:0:0:0:0:9301]
log4j, [2012-10-01T18:50:21.436] INFO: org.elasticsearch.transport: [Infinity] bound_address {inet[/0:0:0:0:0:0:0:0:9301]}, publish_address {inet[/10.244.149.49:9301]}
log4j, [2012-10-01T18:50:21.472] DEBUG: org.elasticsearch.transport.netty: [Infinity] connected to node [[#zen_unicast_1#][inet[/127.0.0.1:9300]]]
log4j, [2012-10-01T18:50:24.450] DEBUG: org.elasticsearch.discovery.zen: [Infinity] filtered ping responses: (filter_client[true], filter_data[false])
--> target [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]], master [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]]
log4j, [2012-10-01T18:50:24.461] DEBUG: org.elasticsearch.transport.netty: [Infinity] disconnected from [[#zen_unicast_1#][inet[/127.0.0.1:9300]]]
log4j, [2012-10-01T18:50:24.482] DEBUG: org.elasticsearch.transport.netty: [Infinity] connected to node [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]]
log4j, [2012-10-01T18:50:24.496] DEBUG: org.elasticsearch.discovery.zen.fd: [Infinity] [master] starting fault detection against master [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]], reason [initial_join]
log4j, [2012-10-01T18:50:24.508] DEBUG: org.elasticsearch.common.compress.lzf: using [UnsafeChunkDecoder] decoder
log4j, [2012-10-01T18:50:24.512] DEBUG: org.elasticsearch.cluster.service: [Infinity] processing [zen-disco-receive(from master [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]])]: execute
log4j, [2012-10-01T18:50:24.695] DEBUG: org.elasticsearch.cluster.service: [Infinity] got first state from fresh master [IU5JoA6WTgGieK3Alt0-ZQ]
log4j, [2012-10-01T18:50:24.695] DEBUG: org.elasticsearch.cluster.service: [Infinity] cluster state updated, version [17], source [zen-disco-receive(from master [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]])]
log4j, [2012-10-01T18:50:24.697] INFO: org.elasticsearch.cluster.service: [Infinity] detected_master [Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]], added {[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]],}, reason: zen-disco-receive(from master [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]])
log4j, [2012-10-01T18:50:24.699] DEBUG: org.elasticsearch.cluster.service: [Infinity] processing [zen-disco-receive(from master [[Madelyne Pryor][IU5JoA6WTgGieK3Alt0-ZQ][inet[/10.244.149.49:9300]]])]: done applying updated cluster_state
log4j, [2012-10-01T18:50:24.699] INFO: org.elasticsearch.discovery: [Infinity] elasticsearch/pguvZcS6RHykIobQLsiQ9Q
log4j, [2012-10-01T18:50:24.699] INFO: org.elasticsearch.node: [Infinity] {0.19.8}[17241]: started
Output registered {"plugin":"LogStash::Outputs::ElasticSearch: {\"host\"=>\"127.0.0.1\", \"type\"=>\"\", \"tags\"=>[], \"exclude_tags\"=>[], \"fields\"=>[], \"index\"=>\"logstash-%{+YYYY.MM.dd}\", \"index_type\"=>\"%{@type}\", \"port\"=>9300, \"embedded\"=>false, \"embedded_http_port\"=>\"9200-9300\", \"max_inflight_requests\"=>50}","level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"720","method":"run_output"}
All plugins are started and registered. {"level":"info","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"460","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
^[heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
heartbeat {"level":"debug","file":"/opt/logstash/logstash-1.1.1-monolithic.jar!/logstash/agent.rb","line":"472","method":"run_with_config"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment