Uses of Class
com.amazonaws.services.cloudwatch.model.MetricDatum
Packages that use MetricDatum
Package
Description
-
Uses of MetricDatum in com.amazonaws.metrics.internal.cloudwatch
Methods in com.amazonaws.metrics.internal.cloudwatch that return types with arguments of type MetricDatumModifier and TypeMethodDescriptionprotected List<MetricDatum>
PredefinedMetricTransformer.counterMetricOf
(MetricType type, Request<?> req, Object resp, boolean includesRequestType) Returns a list of metric datum recorded for the specified counter metric type; or an empty list if there is none.protected List<MetricDatum>
PredefinedMetricTransformer.latencyMetricOf
(MetricType metricType, Request<?> req, Object response, boolean includesRequestType) Returns all the latency metric data recorded for the specified metric event type; or an empty list if there is none.protected List<MetricDatum>
PredefinedMetricTransformer.latencyOfClientExecuteTime
(Request<?> req, Object response) Returns a request type specific metrics forAWSRequestMetrics.Field.ClientExecuteTime
which is special in the sense that it makes a more accurate measurement by taking theTimingInfo
at the root into account.protected List<MetricDatum>
PredefinedMetricTransformer.metricOfCount
(AWSRequestMetrics.Field metricType, Request<?> req, Object resp) protected List<MetricDatum>
PredefinedMetricTransformer.metricOfRequestOrRetryCount
(AWSRequestMetrics.Field metricType, Request<?> req, Object resp) Returns a list with a single metric datum for the specified retry or request count predefined metric; or an empty list if there is none.PredefinedMetricTransformer.toMetricData
(MetricType metricType, Request<?> request, Response<?> response) Returns a non-null list of metric datum for the metrics collected for the given request/response.Methods in com.amazonaws.metrics.internal.cloudwatch with parameters of type MetricDatumModifier and TypeMethodDescriptionprotected boolean
RequestMetricCollectorSupport.addMetricsToQueue
(MetricDatum metric) Adds the given metric to the queue, returning true if successful or false if no space available.protected boolean
ServiceMetricCollectorSupport.addMetricsToQueue
(MetricDatum metric) Adds the given metric to the queue, returning true if successful or false if no space available.Constructor parameters in com.amazonaws.metrics.internal.cloudwatch with type arguments of type MetricDatumModifierConstructorDescriptionprotected
protected
-
Uses of MetricDatum in com.amazonaws.metrics.internal.cloudwatch.spi
Methods in com.amazonaws.metrics.internal.cloudwatch.spi that return MetricDatumModifier and TypeMethodDescriptionstatic MetricDatum
MetricData.newMetricDatum
(MetricDatum from, Dimension... dimensions) Returns a new metric datum cloned from the given metric datum, but replacing the dimensions with the newly specified ones.Methods in com.amazonaws.metrics.internal.cloudwatch.spi that return types with arguments of type MetricDatumModifier and TypeMethodDescriptionRequestMetricTransformer.toMetricData
(MetricType metricType, Request<?> request, Response<?> response) Returns a list of metric datum for the metrics collected for the given request/response, or null if this transformer does not recognize the specific input metric type.Methods in com.amazonaws.metrics.internal.cloudwatch.spi with parameters of type MetricDatumModifier and TypeMethodDescriptionstatic MetricDatum
MetricData.newMetricDatum
(MetricDatum from, Dimension... dimensions) Returns a new metric datum cloned from the given metric datum, but replacing the dimensions with the newly specified ones. -
Uses of MetricDatum in com.amazonaws.services.cloudwatch.model
Methods in com.amazonaws.services.cloudwatch.model that return MetricDatumModifier and TypeMethodDescriptionMetricDatum.clone()
MetricDatum.withDimensions
(Dimension... dimensions) A list of dimensions associated with the metric.MetricDatum.withDimensions
(Collection<Dimension> dimensions) A list of dimensions associated with the metric.MetricDatum.withMetricName
(String metricName) The name of the metric.MetricDatum.withStatisticValues
(StatisticSet statisticValues) A set of statistical values describing the metric.MetricDatum.withTimestamp
(Date timestamp) The time stamp used for the metric in ISO 8601 Universal Coordinated Time (UTC) format.MetricDatum.withUnit
(StandardUnit unit) The unit of the metric.The unit of the metric.The value for the metric.Methods in com.amazonaws.services.cloudwatch.model that return types with arguments of type MetricDatumModifier and TypeMethodDescriptionPutMetricDataRequest.getMetricData()
A list of data describing the metric.Methods in com.amazonaws.services.cloudwatch.model with parameters of type MetricDatumModifier and TypeMethodDescriptionPutMetricDataRequest.withMetricData
(MetricDatum... metricData) A list of data describing the metric.Method parameters in com.amazonaws.services.cloudwatch.model with type arguments of type MetricDatumModifier and TypeMethodDescriptionvoid
PutMetricDataRequest.setMetricData
(Collection<MetricDatum> metricData) A list of data describing the metric.PutMetricDataRequest.withMetricData
(Collection<MetricDatum> metricData) A list of data describing the metric.