Add note about where to get MC and how we use it

This commit is contained in:
Drew Stephens 2012-02-03 01:59:07 -05:00
parent 411bb54143
commit 2bf9d3ef3c

View file

@ -5,7 +5,16 @@ require "json"
# This output ships metrics to MetricCatcher, allowing you to # This output ships metrics to MetricCatcher, allowing you to
# utilize Coda Hale's Metrics. # utilize Coda Hale's Metrics.
# #
# At Clearspring, we use it to count the response codes from Apache logs # More info on MetricCatcher: https://github.com/clearspring/MetricCatcher
#
# At Clearspring, we use it to count the response codes from Apache logs:
# metriccatcher {
# host => "localhost"
# port => "1420"
# type => "apache-access"
# fields => [ "response" ]
# meter => [ "%{@source_host}.apache.response.%{response}", "1" ]
# }
class LogStash::Outputs::MetricCatcher < LogStash::Outputs::Base class LogStash::Outputs::MetricCatcher < LogStash::Outputs::Base
config_name "metriccatcher" config_name "metriccatcher"
plugin_status "beta" plugin_status "beta"