Class: Parsers::Root
Constant Summary collapse
- STATS =
{ 'process_count' => 'pool.used', 'max' => 'pool.max', 'get_wait_list_size' => 'request_queue' }.freeze
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Parsers::Base
Instance Method Details
#run ⇒ Object
9 10 11 12 13 |
# File 'lib/parsers/root.rb', line 9 def run STATS.each do |xml_key, key| gauge(xml_key, key) end end |