Skip to content

Instantly share code, notes, and snippets.

@hd8622
Created September 8, 2015 09:52
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 hd8622/49a0da1d9c7948474a93 to your computer and use it in GitHub Desktop.
Save hd8622/49a0da1d9c7948474a93 to your computer and use it in GitHub Desktop.
Logstash filters not working for ganglia
[root@BLADE-14 bin]# ./logstash --debug -f /etc/logstash/conf.d/test.conf
Reading config file {:file=>"logstash/agent.rb", :level=>:debug, :line=>"309", :method=>"local_config"}
Compiled pipeline code:
@inputs = []
@filters = []
@outputs = []
@periodic_flushers = []
@shutdown_flushers = []
@input_ganglia_1 = plugin("input", "ganglia", LogStash::Util.hash_merge_many({ "port" => 8686 }, { "type" => ("ganglia") }))
@inputs << @input_ganglia_1
@filter_drop_2 = plugin("filter", "drop")
@filters << @filter_drop_2
@filter_drop_2_flush = lambda do |options, &block|
@logger.debug? && @logger.debug("Flushing", :plugin => @filter_drop_2)
events = @filter_drop_2.flush(options)
return if events.nil? || events.empty?
@logger.debug? && @logger.debug("Flushing", :plugin => @filter_drop_2, :events => events)
events.each{|e| block.call(e)}
end
if @filter_drop_2.respond_to?(:flush)
@periodic_flushers << @filter_drop_2_flush if @filter_drop_2.periodic_flush
@shutdown_flushers << @filter_drop_2_flush
end
@output_file_3 = plugin("output", "file", LogStash::Util.hash_merge_many({ "path" => ("/tmp/gmond-log.txt") }))
@outputs << @output_file_3
@output_elasticsearch_4 = plugin("output", "elasticsearch", LogStash::Util.hash_merge_many({ "cluster" => ("elasticsearch") }, { "port" => 9300 }, { "index" => ("ganglialog-%{+YYYY.MM.dd}") }))
@outputs << @output_elasticsearch_4
def filter_func(event)
events = [event]
@logger.debug? && @logger.debug("filter received", :event => event.to_hash)
events = cond_func_1(events)
events
end
def output_func(event)
@logger.debug? && @logger.debug("output received", :event => event.to_hash)
@output_file_3.handle(event)
@output_elasticsearch_4.handle(event)
end
def cond_func_1(input_events)
result = []
input_events.each do |event|
events = [event]
if (((((event["[message]"] =~ Regexp.new(("machine_type")))) or ((event["[message]"] =~ Regexp.new(("os_name")))) or ((event["[message]"] =~ Regexp.new(("location")))) or ((event["[message]"] =~ Regexp.new(("os_release"))))))) # if ([message] =~ /machine_type/ or [message] =~ /os_name/ or [message] =~ /location/ or [message] =~ /os_release/ )
events = @filter_drop_2.multi_filter(events)
end
result += events
end
result
end
{:level=>:debug, :file=>"logstash/pipeline.rb", :line=>"29", :method=>"initialize"}
Plugin not defined in namespace, checking for plugin file {:type=>"input", :name=>"ganglia", :path=>"logstash/inputs/ganglia", :level=>:debug, :file=>"logstash/plugin.rb", :line=>"133", :method=>"lookup"}
Plugin not defined in namespace, checking for plugin file {:type=>"codec", :name=>"plain", :path=>"logstash/codecs/plain", :level=>:debug, :file=>"logstash/plugin.rb", :line=>"133", :method=>"lookup"}
config LogStash::Codecs::Plain/@charset = "UTF-8" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Inputs::Ganglia/@port = 8686 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Inputs::Ganglia/@type = "ganglia" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Inputs::Ganglia/@debug = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Inputs::Ganglia/@codec = <LogStash::Codecs::Plain charset=>"UTF-8"> {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Inputs::Ganglia/@add_field = {} {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Inputs::Ganglia/@host = "0.0.0.0" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
Plugin not defined in namespace, checking for plugin file {:type=>"filter", :name=>"drop", :path=>"logstash/filters/drop", :level=>:debug, :file=>"logstash/plugin.rb", :line=>"133", :method=>"lookup"}
config LogStash::Filters::Drop/@type = "" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@tags = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@exclude_tags = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@add_tag = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@remove_tag = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@add_field = {} {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@remove_field = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@periodic_flush = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Filters::Drop/@percentage = 100 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
Plugin not defined in namespace, checking for plugin file {:type=>"output", :name=>"file", :path=>"logstash/outputs/file", :level=>:debug, :file=>"logstash/plugin.rb", :line=>"133", :method=>"lookup"}
config LogStash::Codecs::Plain/@charset = "UTF-8" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@path = "/tmp/gmond-log.txt" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@type = "" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@tags = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@exclude_tags = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@codec = <LogStash::Codecs::Plain charset=>"UTF-8"> {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@workers = 1 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@flush_interval = 2 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@gzip = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::File/@filename_failure = "_filepath_failures" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
Plugin not defined in namespace, checking for plugin file {:type=>"output", :name=>"elasticsearch", :path=>"logstash/outputs/elasticsearch", :level=>:debug, :file=>"logstash/plugin.rb", :line=>"133", :method=>"lookup"}
'[DEPRECATED] use `require 'concurrent'` instead of `require 'concurrent_ruby'`
config LogStash::Codecs::Plain/@charset = "UTF-8" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@cluster = "elasticsearch" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@port = 9300 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@index = "ganglialog-%{+YYYY.MM.dd}" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@type = "" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@tags = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@exclude_tags = [] {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@codec = <LogStash::Codecs::Plain charset=>"UTF-8"> {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@workers = 1 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@manage_template = true {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@template_name = "logstash" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@template_overwrite = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@embedded = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@embedded_http_port = "9200-9300" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@max_inflight_requests = 50 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@flush_size = 5000 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@idle_flush_time = 1 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@action = "index" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@path = "/" {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@ssl = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@ssl_certificate_verification = true {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@sniffing = false {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@max_retries = 3 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@retry_max_items = 5000 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
config LogStash::Outputs::ElasticSearch/@retry_max_interval = 5 {:level=>:debug, :file=>"logstash/config/mixin.rb", :line=>"112", :method=>"config_init"}
Starting ganglia udp listener {:address=>"0.0.0.0:8686", :level=>:info, :file=>"logstash/inputs/ganglia.rb", :line=>"52", :method=>"udp_listener"}
Sep 08, 2015 5:47:18 AM org.elasticsearch.node.internal.InternalNode <init>
INFO: [logstash-BLADE-14-38112-11622] version[1.7.0], pid[38112], build[929b973/2015-07-16T14:31:07Z]
Sep 08, 2015 5:47:18 AM org.elasticsearch.node.internal.InternalNode <init>
INFO: [logstash-BLADE-14-38112-11622] initializing ...
Sep 08, 2015 5:47:18 AM org.elasticsearch.plugins.PluginsService <init>
INFO: [logstash-BLADE-14-38112-11622] loaded [], sites []
Sep 08, 2015 5:47:19 AM org.elasticsearch.bootstrap.Natives <clinit>
WARNING: JNA not found. native methods will be disabled.
Sep 08, 2015 5:47:20 AM org.elasticsearch.node.internal.InternalNode <init>
INFO: [logstash-BLADE-14-38112-11622] initialized
Sep 08, 2015 5:47:20 AM org.elasticsearch.node.internal.InternalNode start
INFO: [logstash-BLADE-14-38112-11622] starting ...
Sep 08, 2015 5:47:20 AM org.elasticsearch.transport.TransportService doStart
INFO: [logstash-BLADE-14-38112-11622] bound_address {inet[/0.0.0.0:9300]}, publish_address {inet[/10.40.94.158:9300]}
Sep 08, 2015 5:47:20 AM org.elasticsearch.discovery.DiscoveryService doStart
INFO: [logstash-BLADE-14-38112-11622] elasticsearch/6o6UV4yzTFai826eOJdhkg
Sep 08, 2015 5:47:23 AM org.elasticsearch.cluster.service.InternalClusterService$UpdateTask run
INFO: [logstash-BLADE-14-38112-11622] detected_master [Occulus][XxQcgNUyQ6mtMdMyfMeOMw][BLADE-14][inet[/10.40.94.158:9301]], added {[Occulus][XxQcgNUyQ6mtMdMyfMeOMw][BLADE-14][inet[/10.40.94.158:9301]],}, reason: zen-disco-receive(from master [[Occulus][XxQcgNUyQ6mtMdMyfMeOMw][BLADE-14][inet[/10.40.94.158:9301]]])
Sep 08, 2015 5:47:23 AM org.elasticsearch.node.internal.InternalNode start
INFO: [logstash-BLADE-14-38112-11622] started
Automatic template management enabled {:manage_template=>"true", :level=>:info, :file=>"logstash/outputs/elasticsearch.rb", :line=>"430", :method=>"register"}
Using mapping template {:template=>{"template"=>"logstash-*", "settings"=>{"index.refresh_interval"=>"5s"}, "mappings"=>{"_default_"=>{"_all"=>{"enabled"=>true, "omit_norms"=>true}, "dynamic_templates"=><Java::JavaUtil::ArrayList:-1064940777 [{"message_field"=>{"match"=>"message", "match_mapping_type"=>"string", "mapping"=>{"type"=>"string", "index"=>"analyzed", "omit_norms"=>true}}}, {"string_fields"=>{"match"=>"*", "match_mapping_type"=>"string", "mapping"=>{"type"=>"string", "index"=>"analyzed", "omit_norms"=>true, "fields"=>{"raw"=>{"type"=>"string", "index"=>"not_analyzed", "ignore_above"=>256}}}}}]>, "properties"=>{"@version"=>{"type"=>"string", "index"=>"not_analyzed"}, "geoip"=>{"type"=>"object", "dynamic"=>true, "properties"=>{"location"=>{"type"=>"geo_point"}}}}}}}, :level=>:info, :file=>"logstash/outputs/elasticsearch.rb", :line=>"478", :method=>"get_template"}
New Elasticsearch output {:cluster=>"elasticsearch", :host=>nil, :port=>9300, :embedded=>false, :protocol=>"node", :level=>:info, :file=>"logstash/outputs/elasticsearch.rb", :line=>"439", :method=>"register"}
Pipeline started {:level=>:info, :file=>"logstash/pipeline.rb", :line=>"87", :method=>"run"}
Logstash startup completed
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
Opening file {:path=>"/tmp/gmond-log.txt", :level=>:info, :file=>"logstash/outputs/file.rb", :line=>"213", :method=>"open"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, "load_fifteen"=>{"hostname"=>"BLADE-13", "name"=>"load_fifteen", "spoof"=>0, "type"=>"float", "name2"=>"load_fifteen", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Fifteen Minute Load Average", "DESC"=>"Fifteen minute load average", "GROUP"=>"load"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
Starting flush cycle {:level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"183", :method=>"flush_pending_files"}
Flushing file {:path=>"/tmp/gmond-log.txt", :fd=>#<IOWriter:0x6d5483ab @active=true, @io=#<File:/tmp/gmond-log.txt>>, :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"185", :method=>"flush_pending_files"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, "load_fifteen"=>{"hostname"=>"BLADE-13", "name"=>"load_fifteen", "spoof"=>0, "type"=>"float", "name2"=>"load_fifteen", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Fifteen Minute Load Average", "DESC"=>"Fifteen minute load average", "GROUP"=>"load"}}, "proc_run"=>{"hostname"=>"BLADE-13", "name"=>"proc_run", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_run", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Running Processes", "DESC"=>"Total number of running processes", "GROUP"=>"process"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, "load_fifteen"=>{"hostname"=>"BLADE-13", "name"=>"load_fifteen", "spoof"=>0, "type"=>"float", "name2"=>"load_fifteen", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Fifteen Minute Load Average", "DESC"=>"Fifteen minute load average", "GROUP"=>"load"}}, "proc_run"=>{"hostname"=>"BLADE-13", "name"=>"proc_run", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_run", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Running Processes", "DESC"=>"Total number of running processes", "GROUP"=>"process"}}, "proc_total"=>{"hostname"=>"BLADE-13", "name"=>"proc_total", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_total", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Processes", "DESC"=>"Total number of processes", "GROUP"=>"process"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, "load_fifteen"=>{"hostname"=>"BLADE-13", "name"=>"load_fifteen", "spoof"=>0, "type"=>"float", "name2"=>"load_fifteen", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Fifteen Minute Load Average", "DESC"=>"Fifteen minute load average", "GROUP"=>"load"}}, "proc_run"=>{"hostname"=>"BLADE-13", "name"=>"proc_run", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_run", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Running Processes", "DESC"=>"Total number of running processes", "GROUP"=>"process"}}, "proc_total"=>{"hostname"=>"BLADE-13", "name"=>"proc_total", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_total", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Processes", "DESC"=>"Total number of processes", "GROUP"=>"process"}}, "mem_free"=>{"hostname"=>"BLADE-13", "name"=>"mem_free", "spoof"=>0, "type"=>"float", "name2"=>"mem_free", "units"=>"KB", "slope"=>"both", "tmax"=>180, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Free Memory", "DESC"=>"Amount of available memory", "GROUP"=>"memory"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, "load_fifteen"=>{"hostname"=>"BLADE-13", "name"=>"load_fifteen", "spoof"=>0, "type"=>"float", "name2"=>"load_fifteen", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Fifteen Minute Load Average", "DESC"=>"Fifteen minute load average", "GROUP"=>"load"}}, "proc_run"=>{"hostname"=>"BLADE-13", "name"=>"proc_run", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_run", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Running Processes", "DESC"=>"Total number of running processes", "GROUP"=>"process"}}, "proc_total"=>{"hostname"=>"BLADE-13", "name"=>"proc_total", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_total", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Processes", "DESC"=>"Total number of processes", "GROUP"=>"process"}}, "mem_free"=>{"hostname"=>"BLADE-13", "name"=>"mem_free", "spoof"=>0, "type"=>"float", "name2"=>"mem_free", "units"=>"KB", "slope"=>"both", "tmax"=>180, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Free Memory", "DESC"=>"Amount of available memory", "GROUP"=>"memory"}}, "mem_shared"=>{"hostname"=>"BLADE-13", "name"=>"mem_shared", "spoof"=>0, "type"=>"float", "name2"=>"mem_shared", "units"=>"KB", "slope"=>"both", "tmax"=>180, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Shared Memory", "DESC"=>"Amount of shared memory", "GROUP"=>"memory"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
received a meta packet {"heartbeat"=>{"hostname"=>"BLADE-13", "name"=>"heartbeat", "spoof"=>0, "type"=>"uint32", "name2"=>"heartbeat", "units"=>"", "slope"=>"unspecified", "tmax"=>20, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"heartbeat", "DESC"=>"Last heartbeat", "GROUP"=>"core"}}, :level=>:debug, "cpu_num"=>{"hostname"=>"BLADE-13", "name"=>"cpu_num", "spoof"=>0, "type"=>"uint16", "name2"=>"cpu_num", "units"=>"CPUs", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Count", "DESC"=>"Total number of CPUs", "GROUP"=>"cpu"}}, "cpu_speed"=>{"hostname"=>"BLADE-13", "name"=>"cpu_speed", "spoof"=>0, "type"=>"uint32", "name2"=>"cpu_speed", "units"=>"MHz", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Speed", "DESC"=>"CPU Speed in terms of MHz", "GROUP"=>"cpu"}}, "mem_total"=>{"hostname"=>"BLADE-13", "name"=>"mem_total", "spoof"=>0, "type"=>"float", "name2"=>"mem_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Total", "DESC"=>"Total amount of memory displayed in KBs", "GROUP"=>"memory"}}, "swap_total"=>{"hostname"=>"BLADE-13", "name"=>"swap_total", "spoof"=>0, "type"=>"float", "name2"=>"swap_total", "units"=>"KB", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Swap Space Total", "DESC"=>"Total amount of swap space displayed in KBs", "GROUP"=>"memory"}}, "boottime"=>{"hostname"=>"BLADE-13", "name"=>"boottime", "spoof"=>0, "type"=>"uint32", "name2"=>"boottime", "units"=>"s", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Last Boot Time", "DESC"=>"The last time that the system was started", "GROUP"=>"system"}}, "machine_type"=>{"hostname"=>"BLADE-13", "name"=>"machine_type", "spoof"=>0, "type"=>"string", "name2"=>"machine_type", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Machine Type", "DESC"=>"System architecture", "GROUP"=>"system"}}, "os_name"=>{"hostname"=>"BLADE-13", "name"=>"os_name", "spoof"=>0, "type"=>"string", "name2"=>"os_name", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System", "DESC"=>"Operating system name", "GROUP"=>"system"}}, "os_release"=>{"hostname"=>"BLADE-13", "name"=>"os_release", "spoof"=>0, "type"=>"string", "name2"=>"os_release", "units"=>"", "slope"=>"zero", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Operating System Release", "DESC"=>"Operating system release date", "GROUP"=>"system"}}, "location"=>{"hostname"=>"BLADE-13", "name"=>"location", "spoof"=>0, "type"=>"string", "name2"=>"location", "units"=>"(x,y,z)", "slope"=>"unspecified", "tmax"=>1200, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Location", "DESC"=>"Location of the machine", "GROUP"=>"core"}}, "gexec"=>{"hostname"=>"BLADE-13", "name"=>"gexec", "spoof"=>0, "type"=>"string", "name2"=>"gexec", "units"=>"", "slope"=>"zero", "tmax"=>300, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Gexec Status", "DESC"=>"gexec available", "GROUP"=>"core"}}, "cpu_user"=>{"hostname"=>"BLADE-13", "name"=>"cpu_user", "spoof"=>0, "type"=>"float", "name2"=>"cpu_user", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU User", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level", "GROUP"=>"cpu"}}, "cpu_system"=>{"hostname"=>"BLADE-13", "name"=>"cpu_system", "spoof"=>0, "type"=>"float", "name2"=>"cpu_system", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU System", "DESC"=>"Percentage of CPU utilization that occurred while executing at the system level", "GROUP"=>"cpu"}}, "cpu_idle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_idle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_idle", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Idle", "DESC"=>"Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_nice"=>{"hostname"=>"BLADE-13", "name"=>"cpu_nice", "spoof"=>0, "type"=>"float", "name2"=>"cpu_nice", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU Nice", "DESC"=>"Percentage of CPU utilization that occurred while executing at the user level with nice priority", "GROUP"=>"cpu"}}, "cpu_aidle"=>{"hostname"=>"BLADE-13", "name"=>"cpu_aidle", "spoof"=>0, "type"=>"float", "name2"=>"cpu_aidle", "units"=>"%", "slope"=>"both", "tmax"=>3800, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU aidle", "DESC"=>"Percent of time since boot idle CPU", "GROUP"=>"cpu"}}, "cpu_wio"=>{"hostname"=>"BLADE-13", "name"=>"cpu_wio", "spoof"=>0, "type"=>"float", "name2"=>"cpu_wio", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU wio", "DESC"=>"Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request", "GROUP"=>"cpu"}}, "cpu_steal"=>{"hostname"=>"BLADE-13", "name"=>"cpu_steal", "spoof"=>0, "type"=>"float", "name2"=>"cpu_steal", "units"=>"%", "slope"=>"both", "tmax"=>90, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"CPU steal", "DESC"=>"cpu_steal", "GROUP"=>"cpu"}}, "load_one"=>{"hostname"=>"BLADE-13", "name"=>"load_one", "spoof"=>0, "type"=>"float", "name2"=>"load_one", "units"=>" ", "slope"=>"both", "tmax"=>70, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"One Minute Load Average", "DESC"=>"One minute load average", "GROUP"=>"load"}}, "load_five"=>{"hostname"=>"BLADE-13", "name"=>"load_five", "spoof"=>0, "type"=>"float", "name2"=>"load_five", "units"=>" ", "slope"=>"both", "tmax"=>325, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Five Minute Load Average", "DESC"=>"Five minute load average", "GROUP"=>"load"}}, "load_fifteen"=>{"hostname"=>"BLADE-13", "name"=>"load_fifteen", "spoof"=>0, "type"=>"float", "name2"=>"load_fifteen", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Fifteen Minute Load Average", "DESC"=>"Fifteen minute load average", "GROUP"=>"load"}}, "proc_run"=>{"hostname"=>"BLADE-13", "name"=>"proc_run", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_run", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Running Processes", "DESC"=>"Total number of running processes", "GROUP"=>"process"}}, "proc_total"=>{"hostname"=>"BLADE-13", "name"=>"proc_total", "spoof"=>0, "type"=>"uint32", "name2"=>"proc_total", "units"=>" ", "slope"=>"both", "tmax"=>950, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Total Processes", "DESC"=>"Total number of processes", "GROUP"=>"process"}}, "mem_free"=>{"hostname"=>"BLADE-13", "name"=>"mem_free", "spoof"=>0, "type"=>"float", "name2"=>"mem_free", "units"=>"KB", "slope"=>"both", "tmax"=>180, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Free Memory", "DESC"=>"Amount of available memory", "GROUP"=>"memory"}}, "mem_shared"=>{"hostname"=>"BLADE-13", "name"=>"mem_shared", "spoof"=>0, "type"=>"float", "name2"=>"mem_shared", "units"=>"KB", "slope"=>"both", "tmax"=>180, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Shared Memory", "DESC"=>"Amount of shared memory", "GROUP"=>"memory"}}, "mem_buffers"=>{"hostname"=>"BLADE-13", "name"=>"mem_buffers", "spoof"=>0, "type"=>"float", "name2"=>"mem_buffers", "units"=>"KB", "slope"=>"both", "tmax"=>180, "dmax"=>0, "nrelements"=>3, "extra"=>{"TITLE"=>"Memory Buffers", "DESC"=>"Amount of buffered memory", "GROUP"=>"memory"}}, :file=>"logstash/inputs/ganglia.rb", :line=>"105", :method=>"parse_packet"}
Flushing output {:outgoing_count=>1, :time_since_last_flush=>3.61, :outgoing_events=>{nil=>[["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x41f92fd3 @metadata_accessors=#<LogStash::Util::Accessors:0x74ccadb7 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x56b2ebce @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.310Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>]]}, :batch_timeout=>1, :force=>nil, :final=>nil, :level=>:debug, :file=>"stud/buffer.rb", :line=>"207", :method=>"buffer_flush"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
Flushing output {:outgoing_count=>19, :time_since_last_flush=>0.325, :outgoing_events=>{nil=>[["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x4cee512c @metadata_accessors=#<LogStash::Util::Accessors:0x2c493c84 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x6cdcf4bd @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.317Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x779110f6 @metadata_accessors=#<LogStash::Util::Accessors:0x77c1262 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x5cf1005 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.324Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x6bae51ed @metadata_accessors=#<LogStash::Util::Accessors:0x69c3e421 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x52d0e3e @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.327Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x2c410c7e @metadata_accessors=#<LogStash::Util::Accessors:0x40e48436 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x255de5fd @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.329Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x3b59d41b @metadata_accessors=#<LogStash::Util::Accessors:0x5d9abec0 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x3f818704 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.333Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x5362ce0 @metadata_accessors=#<LogStash::Util::Accessors:0x7fe4400d @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x3159a2ca @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.336Z", "log_host"=>"BLADE-13", "metric"=>"gexec", "value"=>"OFF", "dmax"=>0, "tmax"=>300, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x65c5fbb0 @metadata_accessors=#<LogStash::Util::Accessors:0x18200519 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0xb449e5a @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.339Z", "log_host"=>"BLADE-13", "metric"=>"cpu_user", "value"=>0.2406298965215683, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x69a92775 @metadata_accessors=#<LogStash::Util::Accessors:0x6fc24591 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x1e742ab8 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.343Z", "log_host"=>"BLADE-13", "metric"=>"cpu_system", "value"=>0.44067996740341187, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x7100f029 @metadata_accessors=#<LogStash::Util::Accessors:0x7c54ce05 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x2c8fe5b8 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.348Z", "log_host"=>"BLADE-13", "metric"=>"cpu_idle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x41d8173f @metadata_accessors=#<LogStash::Util::Accessors:0x7667fcee @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x4fc1d508 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.351Z", "log_host"=>"BLADE-13", "metric"=>"cpu_nice", "value"=>0.00019227589655201882, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x51777690 @metadata_accessors=#<LogStash::Util::Accessors:0x27a02af8 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x7b127531 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.354Z", "log_host"=>"BLADE-13", "metric"=>"cpu_aidle", "value"=>99.30460357666016, "dmax"=>0, "tmax"=>3800, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x47c07f4 @metadata_accessors=#<LogStash::Util::Accessors:0x3a0ffe4c @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x59400b2c @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.357Z", "log_host"=>"BLADE-13", "metric"=>"cpu_wio", "value"=>0.013893697410821915, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x5b83f7f0 @metadata_accessors=#<LogStash::Util::Accessors:0x2530bee6 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x2590519a @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.361Z", "log_host"=>"BLADE-13", "metric"=>"cpu_steal", "value"=>0.0, "dmax"=>0, "tmax"=>90, "slope"=>"both", "type"=>"float", "units"=>"%", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x47f20052 @metadata_accessors=#<LogStash::Util::Accessors:0x7bed848c @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x76c864ef @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.364Z", "log_host"=>"BLADE-13", "metric"=>"load_one", "value"=>0.029999999329447746, "dmax"=>0, "tmax"=>70, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x63101331 @metadata_accessors=#<LogStash::Util::Accessors:0x2e6cef66 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x6861b9a5 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.368Z", "log_host"=>"BLADE-13", "metric"=>"load_five", "value"=>0.07000000029802322, "dmax"=>0, "tmax"=>325, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x49b4ef37 @metadata_accessors=#<LogStash::Util::Accessors:0x34fe06f1 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x162133e7 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.372Z", "log_host"=>"BLADE-13", "metric"=>"load_fifteen", "value"=>0.05000000074505806, "dmax"=>0, "tmax"=>950, "slope"=>"both", "type"=>"float", "units"=>" ", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x4f9c202d @metadata_accessors=#<LogStash::Util::Accessors:0x882b422 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x2c964e6 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.383Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258231920.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x74e93da6 @metadata_accessors=#<LogStash::Util::Accessors:0x30c52e5b @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x6392a21b @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.389Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x2b8ecd66 @metadata_accessors=#<LogStash::Util::Accessors:0x9218988 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x35823155 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:47:27.396Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>]]}, :batch_timeout=>1, :force=>true, :final=>nil, :level=>:debug, :file=>"stud/buffer.rb", :line=>"207", :method=>"buffer_flush"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
Starting flush cycle {:level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"183", :method=>"flush_pending_files"}
Flushing file {:path=>"/tmp/gmond-log.txt", :fd=>#<IOWriter:0x6d5483ab @active=true, @io=#<File:/tmp/gmond-log.txt>>, :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"185", :method=>"flush_pending_files"}
Starting stale files cleanup cycle {:files=>{"/tmp/gmond-log.txt"=>#<IOWriter:0x6d5483ab @active=true, @io=#<File:/tmp/gmond-log.txt>>}, :level=>:info, :file=>"logstash/outputs/file.rb", :line=>"196", :method=>"close_stale_files"}
0 stale files found {:inactive_files=>{}, :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"198", :method=>"close_stale_files"}
Flushing output {:outgoing_count=>1, :time_since_last_flush=>39.483, :outgoing_events=>{nil=>[["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x70d30720 @metadata_accessors=#<LogStash::Util::Accessors:0x11369ddc @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x3b4e95fe @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_free", "value"=>258234224.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>]]}, :batch_timeout=>1, :force=>nil, :final=>nil, :level=>:debug, :file=>"stud/buffer.rb", :line=>"207", :method=>"buffer_flush"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
Flushing output {:outgoing_count=>2, :time_since_last_flush=>0.518, :outgoing_events=>{nil=>[["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x3800b0dc @metadata_accessors=#<LogStash::Util::Accessors:0x73606673 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x5235ba0c @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.312Z", "log_host"=>"BLADE-13", "metric"=>"mem_shared", "value"=>0.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x1af41028 @metadata_accessors=#<LogStash::Util::Accessors:0x31bece66 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x69b4487c @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:07.313Z", "log_host"=>"BLADE-13", "metric"=>"mem_buffers", "value"=>233648.0, "dmax"=>0, "tmax"=>180, "slope"=>"both", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>]]}, :batch_timeout=>1, :force=>true, :final=>nil, :level=>:debug, :file=>"stud/buffer.rb", :line=>"207", :method=>"buffer_flush"}
^Cfilter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
Starting flush cycle {:level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"183", :method=>"flush_pending_files"}
filter received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"44", :method=>"filter_func"}
Flushing file {:path=>"/tmp/gmond-log.txt", :fd=>#<IOWriter:0x6d5483ab @active=true, @io=#<File:/tmp/gmond-log.txt>>, :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"185", :method=>"flush_pending_files"}
Starting stale files cleanup cycle {:files=>{"/tmp/gmond-log.txt"=>#<IOWriter:0x6d5483ab @active=true, @io=#<File:/tmp/gmond-log.txt>>}, :level=>:info, :file=>"logstash/outputs/file.rb", :line=>"196", :method=>"close_stale_files"}
0 stale files found {:inactive_files=>{}, :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"198", :method=>"close_stale_files"}
Flushing output {:outgoing_count=>1, :time_since_last_flush=>19.466, :outgoing_events=>{nil=>[["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0x66b406bc @metadata_accessors=#<LogStash::Util::Accessors:0x33e4f15f @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x4a56b6bd @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.311Z", "log_host"=>"BLADE-13", "metric"=>"mem_total", "value"=>264503584.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>]]}, :batch_timeout=>1, :force=>nil, :final=>nil, :level=>:debug, :file=>"stud/buffer.rb", :line=>"207", :method=>"buffer_flush"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
output received {:event=>{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, :level=>:debug, :file=>"(eval)", :line=>"50", :method=>"output_func"}
File, writing event to file. {:filename=>"/tmp/gmond-log.txt", :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"133", :method=>"write_event"}
Flushing output {:outgoing_count=>5, :time_since_last_flush=>0.533, :outgoing_events=>{nil=>[["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"float", :_routing=>nil}, #<LogStash::Event:0xeb61da1 @metadata_accessors=#<LogStash::Util::Accessors:0x530da59e @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x7eff834c @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"swap_total", "value"=>4194296.0, "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"float", "units"=>"KB", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x2d2c6163 @metadata_accessors=#<LogStash::Util::Accessors:0x34b095ec @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x46e392f2 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.312Z", "log_host"=>"BLADE-13", "metric"=>"machine_type", "value"=>"x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x1ff838d0 @metadata_accessors=#<LogStash::Util::Accessors:0x1694ffd7 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x6314ef56 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.313Z", "log_host"=>"BLADE-13", "metric"=>"os_name", "value"=>"Linux", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x3c53ed06 @metadata_accessors=#<LogStash::Util::Accessors:0x406c045 @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0xa2f2886 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"os_release", "value"=>"2.6.32-431.23.3.el6.x86_64", "dmax"=>0, "tmax"=>1200, "slope"=>"zero", "type"=>"string", "units"=>"", "host"=>"10.40.94.157"}, "message"]}>>], ["index", {:_id=>nil, :_index=>"ganglialog-2015.09.08", :_type=>"string", :_routing=>nil}, #<LogStash::Event:0x3558c6ff @metadata_accessors=#<LogStash::Util::Accessors:0x1f02cc3f @store={"retry_count"=>0}, @lut={}>, @cancelled=false, @data={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, @metadata={"retry_count"=>0}, @accessors=#<LogStash::Util::Accessors:0x60917708 @store={"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, @lut={"log_host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "log_host"], "metric"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "metric"], "value"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "value"], "dmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "dmax"], "tmax"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "tmax"], "slope"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "slope"], "type"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "type"], "units"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "units"], "host"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "host"], "[message]"=>[{"@version"=>"1", "@timestamp"=>"2015-09-08T09:48:27.314Z", "log_host"=>"BLADE-13", "metric"=>"location", "value"=>"unspecified", "dmax"=>0, "tmax"=>1200, "slope"=>"unspecified", "type"=>"string", "units"=>"(x,y,z)", "host"=>"10.40.94.157"}, "message"]}>>]]}, :batch_timeout=>1, :force=>true, :final=>nil, :level=>:debug, :file=>"stud/buffer.rb", :line=>"207", :method=>"buffer_flush"}
^CSIGINT received. Shutting down the pipeline. {:level=>:warn, :file=>"logstash/agent.rb", :line=>"126", :method=>"execute"}
Sending shutdown signal to input thread {:thread=>#<Thread:0x7910157e run>, :level=>:info, :file=>"logstash/pipeline.rb", :line=>"260", :method=>"shutdown"}
Plugin is finished {:plugin=><LogStash::Inputs::Ganglia port=>8686, type=>"ganglia", debug=>false, codec=><LogStash::Codecs::Plain charset=>"UTF-8">, host=>"0.0.0.0">, :level=>:info, :file=>"logstash/plugin.rb", :line=>"61", :method=>"finished"}
Teardown: closing files {:level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"113", :method=>"teardown"}
Closed file /tmp/gmond-log.txt {:fd=>#<IOWriter:0x6d5483ab @active=true, @io=#<File:/tmp/gmond-log.txt (closed)>>, :level=>:debug, :file=>"logstash/outputs/file.rb", :line=>"117", :method=>"teardown"}
Plugin is finished {:plugin=><LogStash::Outputs::File path=>"/tmp/gmond-log.txt", codec=><LogStash::Codecs::Plain charset=>"UTF-8">, workers=>1, flush_interval=>2, gzip=>false, filename_failure=>"_filepath_failures">, :level=>:info, :file=>"logstash/plugin.rb", :line=>"61", :method=>"finished"}
Pipeline shutdown complete. {:level=>:info, :file=>"logstash/pipeline.rb", :line=>"101", :method=>"run"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment