NAME
OP::Enum::StatType - Series statistic type enumeration
DESCRIPTION
Specifies a statistic type for series data. For more information, see RRDTool's explanation of GAUGE, COUNTER, and DERIVE types:
http://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html
SYNOPSIS
use OP::Enum::StatType;
my $type = OP::Enum::Inter::Counter;
CONSTANTS
OP::Enum::StatType::Gauge
Specifies a constant and absolute value, such as temperature or speed at a given point in time (e.g. a Thermometer, Speedometer)
OP::Enum::StatType::Counter
Specifies a constantly increasing value, such as distance traveled (e.g. an Odometer). Counter values sampled at regular intervals may be used to compute a gauge-style "rate over time" metric.
OP::Enum::StatType::Derivative
Specifies a constantly increasing value, with interpolation across premature counter resets.
SEE ALSO
OP::Series, OP::Enum, OP::Persistence
This file is part of OP.