CounterType enum
Types of counters that measure different types of metrics
Constructors
- CounterType()
-
const
Values
- Interval → const CounterType
-
Counters that measure execution time intervals
- LastValue → const CounterType
-
Counters that keeps the latest measured value
- Statistics → const CounterType
-
Counters that measure min/average/max statistics
- Timestamp → const CounterType
-
Counter that record timestamps
- Increment → const CounterType
-
Counter that increment counters
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
CounterType> -
A constant List of the values in this enum, in order of their declaration.
[Interval, LastValue, Statistics, Timestamp, Increment]