|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.ace.mws.reports.Report
class Report
A set of time-based values that share similar context. For example, a report
may contain data on CPU or power utilization for all nodes in a cluster.
A report is composed of metadata and a collection of Datapoints.
Samples are also associated with reports, but these are consolidated
using the consolidationFunction to create Datapoints.
Field Summary | |
---|---|
private String |
consolidationFunction
The consolidation function is the process used to convert a set of samples into a datapoint. |
private Long |
datapointDuration
Required. |
private List |
datapoints
(Datapoint collection) This is the set of datapoints that have been consolidated for the report or are desired to be included in the report during creation time. |
private String |
description
A description of the report. |
private String |
id
The unique identifier for the report. |
private Boolean |
keepSamples
Controls if samples are retained after consolidation. |
private Integer |
minimumSampleSize
If number of samples is below this number, the datapoint data field is "null". |
private String |
name
Required. |
private Long |
reportSize
Required. |
Constructor Summary | |
Report()
|
Method Summary | |
---|---|
String
|
getConsolidationFunction()
The consolidation function is the process used to convert a set of samples into a datapoint. |
Long
|
getDatapointDuration()
Required. |
List
|
getDatapoints()
(Datapoint collection) This is the set of datapoints that have been consolidated for the report or are desired to be included in the report during creation time. |
String
|
getDescription()
A description of the report. |
String
|
getId()
The unique identifier for the report. |
Boolean
|
getKeepSamples()
Controls if samples are retained after consolidation. |
Integer
|
getMinimumSampleSize()
If number of samples is below this number, the datapoint data field is "null". |
String
|
getName()
Required. |
Long
|
getReportSize()
Required. |
void
|
setConsolidationFunction(String consolidationFunction)
The consolidation function is the process used to convert a set of samples into a datapoint. |
void
|
setDatapointDuration(Long datapointDuration)
Required. |
void
|
setDatapoints(List datapoints)
(Datapoint collection) This is the set of datapoints that have been consolidated for the report or are desired to be included in the report during creation time. |
void
|
setDescription(String description)
A description of the report. |
void
|
setId(String id)
The unique identifier for the report. |
void
|
setKeepSamples(Boolean keepSamples)
Controls if samples are retained after consolidation. |
void
|
setMinimumSampleSize(Integer minimumSampleSize)
If number of samples is below this number, the datapoint data field is "null". |
void
|
setName(String name)
Required. |
void
|
setReportSize(Long reportSize)
Required. |
String
|
toString()
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail |
---|
private String consolidationFunction
private Long datapointDuration
private List datapoints
private String description
private String id
private Boolean keepSamples
private Integer minimumSampleSize
private String name
private Long reportSize
Constructor Detail |
---|
Report()
Method Detail |
---|
String getConsolidationFunction()
Long getDatapointDuration()
List getDatapoints()
String getDescription()
String getId()
Boolean getKeepSamples()
Integer getMinimumSampleSize()
String getName()
Long getReportSize()
void setConsolidationFunction(String consolidationFunction)
void setDatapointDuration(Long datapointDuration)
void setDatapoints(List datapoints)
void setDescription(String description)
void setId(String id)
void setKeepSamples(Boolean keepSamples)
void setMinimumSampleSize(Integer minimumSampleSize)
void setName(String name)
void setReportSize(Long reportSize)
String toString()
Groovy Documentation