Class CeilometerStatistics
- java.lang.Object
-
- org.openstack4j.openstack.telemetry.domain.CeilometerStatistics
-
- All Implemented Interfaces:
Serializable,ModelEntity,Statistics
public class CeilometerStatistics extends Object implements Statistics
Computed Statistics for a Query against a Meter- Author:
- Jeremy Unruh
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CeilometerStatistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DoublegetAvg()IntegergetCount()DoublegetDuration()DategetDurationEnd()DategetDurationStart()StringgetGroupBy()DoublegetMax()DoublegetMin()IntegergetPeriod()DategetPeriodEnd()DategetPeriodStart()DoublegetSum()StringgetUnit()StringtoString()
-
-
-
Method Detail
-
getAvg
public Double getAvg()
- Specified by:
getAvgin interfaceStatistics- Returns:
- The average of all of the volume values seen in the data
-
getCount
public Integer getCount()
- Specified by:
getCountin interfaceStatistics- Returns:
- The number of samples seen
-
getDuration
public Double getDuration()
- Specified by:
getDurationin interfaceStatistics- Returns:
- The difference, in seconds, between the oldest and newest timestamp
-
getDurationStart
public Date getDurationStart()
- Specified by:
getDurationStartin interfaceStatistics- Returns:
- UTC date and time of the earliest timestamp, or the query start time
-
getDurationEnd
public Date getDurationEnd()
- Specified by:
getDurationEndin interfaceStatistics- Returns:
- UTC date and time of the oldest timestamp, or the query end time
-
getMax
public Double getMax()
- Specified by:
getMaxin interfaceStatistics- Returns:
- The maximum volume seen in the data
-
getMin
public Double getMin()
- Specified by:
getMinin interfaceStatistics- Returns:
- The minimum volume seen in the data
-
getSum
public Double getSum()
- Specified by:
getSumin interfaceStatistics- Returns:
- The total of all of the volume values seen in the data
-
getPeriod
public Integer getPeriod()
- Specified by:
getPeriodin interfaceStatistics- Returns:
- The difference, in seconds, between the period start and end
-
getPeriodStart
public Date getPeriodStart()
- Specified by:
getPeriodStartin interfaceStatistics- Returns:
- UTC date and time of the period start
-
getPeriodEnd
public Date getPeriodEnd()
- Specified by:
getPeriodEndin interfaceStatistics- Returns:
- UTC date and time of the period end
-
getUnit
public String getUnit()
- Specified by:
getUnitin interfaceStatistics- Returns:
- The unit type of the data set
-
getGroupBy
public String getGroupBy()
- Specified by:
getGroupByin interfaceStatistics- Returns:
- The group-by of the data set
-
-