Class: Parsers::Group

Inherits:
Base
  • Object
show all
Defined in:
lib/parsers/group.rb

Constant Summary collapse

STATS =
%w[
  capacity_used
  get_wait_list_size
  disable_wait_list_size
  processes_being_spawned
  enabled_process_count
  disabling_process_count
  disabled_process_count
].freeze

Constants inherited from Base

Base::PREFIX

Instance Attribute Summary

Attributes inherited from Base

#batch, #prefix, #tags, #xml

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Parsers::Base

Instance Method Details

#runObject



13
14
15
16
17
# File 'lib/parsers/group.rb', line 13

def run
  STATS.each do |key|
    gauge(key, key)
  end
end