class LogfileInterval::Aggregator::OneHundredMinusPxx

Public Instance Methods

add(value, group_by = nil) click to toggle source
# File lib/vpsb_client/datafiles/pxx_aggregator.rb, line 24
def add(value, group_by = nil)
  raise NotImplementedError if group_by
  @val.increment(100.0 - value)
end