class Stackify::Metrics::MetricSettings

Attributes

autoreport_last_value_if_nothing_reported[R]
autoreport_zero_if_nothing_reported[R]

Public Instance Methods

autoreport_last_value_if_nothing_reported=(value) click to toggle source
# File lib/stackify/metrics/metric.rb, line 35
def autoreport_last_value_if_nothing_reported= value
  @autoreport_last_value_if_nothing_reported = value
  @autoreport_zero_if_nothing_reported = false if value
end
autoreport_zero_if_nothing_reported=(value) click to toggle source
# File lib/stackify/metrics/metric.rb, line 40
def autoreport_zero_if_nothing_reported= value
  @autoreport_zero_if_nothing_reported = value
  @autoreport_last_value_if_nothing_reported = false if value
end