Method: Honeybadger::Util::Stats.load

Defined in:
lib/honeybadger/util/stats.rb

.loadObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

From github.com/bloopletech/webstats/blob/master/server/data_providers/cpu_info.rb

[View source]

23
24
25
26
27
28
29
# File 'lib/honeybadger/util/stats.rb', line 23

def load
  out = {}
  if HAS_LOAD && (loadavg = run_loadavg)
    out[:one], out[:five], out[:fifteen] = loadavg.split(' ', 4).map(&:to_f)
  end
  out
end