Sha256: 96012797fdd698ba91150787a64413fa54f6bdd4766faef013bb84fbc5aa885b
Contents?: true
Size: 973 Bytes
Versions: 16
Compression:
Stored size: 973 Bytes
Contents
module RocketJob # Heartbeat # # Information from the server as at it's last heartbeat class Heartbeat include Plugins::Document # Time of the last heartbeat received from this server field :updated_at, type: Time # Number of workers started. field :workers, type: Integer # # Process Information. Future. # # Percentage utilization for the server process alone #field :process_cpu, type: Integer # Kilo Bytes used by the server process (Virtual & Physical) #field :process_mem_phys_kb, type: Integer #field :process_mem_virt_kb, type: Integer # # System Information. Future. # # Percentage utilization for the host machine #field :host_cpu, type: Integer # Kilo Bytes Available on the host machine (Physical) #field :host_mem_avail_phys_kbytes, type: Float #field :host_mem_avail_virt_kbytes, type: Float # If available #field :load_average, type: Float end end
Version data entries
16 entries across 16 versions & 1 rubygems