|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.cloudera.api.model.ApiTimeSeriesAggregateStatistics
public class ApiTimeSeriesAggregateStatistics
Statistics related to one time series aggregate data point. It is available from v6 for data points containing aggregate data. It includes further statistics about the data point. An aggregate can be across entities (e.g., fd_open_across_datanodes), over time (e.g., a daily point for the fd_open metric for a specific DataNode), or both (e.g., a daily point for the fd_open_across_datanodes metric). If the data point is for non-aggregate date this will return null.
Constructor Summary | |
---|---|
ApiTimeSeriesAggregateStatistics()
|
Method Summary | |
---|---|
long |
getCount()
The number of individual data points aggregated in this data point. |
ApiTimeSeriesCrossEntityMetadata |
getCrossEntityMetadata()
If the data-point is for a cross entity aggregate (e.g., fd_open_across_datanodes) returns the cross entity metadata, null otherwise. |
double |
getMax()
This maximum value encountered while producing this aggregate data point. |
Date |
getMaxTime()
The timestamp of the maximum data point. |
double |
getMean()
The mean of the values of all data-points for this aggregate data point. |
double |
getMin()
This minimum value encountered while producing this aggregate data point. |
Date |
getMinTime()
The timestamp of the minimum data point. |
Date |
getSampleTime()
The timestamp of the sample data point. |
double |
getSampleValue()
The sample data point value representing an actual sample value picked from the underlying data that is being aggregated. |
double |
getStdDev()
The standard deviation of the values of all data-points for this aggregate data point. |
void |
setCount(long count)
|
void |
setCrossEntityMetadata(ApiTimeSeriesCrossEntityMetadata crossEntityMetadata)
|
void |
setMax(double max)
|
void |
setMaxTime(Date maxTime)
|
void |
setMean(double mean)
|
void |
setMin(double min)
|
void |
setMinTime(Date minTime)
|
void |
setSampleTime(Date sampleTime)
|
void |
setSampleValue(double sampleValue)
|
void |
setStdDev(double stdDev)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ApiTimeSeriesAggregateStatistics()
Method Detail |
---|
public Date getSampleTime()
public void setSampleTime(Date sampleTime)
public double getSampleValue()
public void setSampleValue(double sampleValue)
public long getCount()
public void setCount(long count)
public double getMin()
public void setMin(double min)
public Date getMinTime()
public void setMinTime(Date minTime)
public double getMax()
public void setMax(double max)
public Date getMaxTime()
public void setMaxTime(Date maxTime)
public double getMean()
public void setMean(double mean)
public double getStdDev()
public void setStdDev(double stdDev)
public ApiTimeSeriesCrossEntityMetadata getCrossEntityMetadata()
public void setCrossEntityMetadata(ApiTimeSeriesCrossEntityMetadata crossEntityMetadata)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |