libZSservicesZSamazonka-cloudwatchZSamazonka-cloudwatch
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudWatch.GetMetricStatistics

Description

Gets statistics for the specified metric.

The maximum number of data points returned from a single call is 1,440. If you request more than 1,440 data points, CloudWatch returns an error. To reduce the number of data points, you can narrow the specified time range and make multiple requests across adjacent time ranges, or you can increase the specified period. Data points are not returned in chronological order.

CloudWatch aggregates data points based on the length of the period that you specify. For example, if you request statistics with a one-hour period, CloudWatch aggregates all data points with time stamps that fall within each one-hour period. Therefore, the number of values aggregated by CloudWatch is larger than the number of data points returned.

CloudWatch needs raw data points to calculate percentile statistics. If you publish data using a statistic set instead, you can only retrieve percentile statistics for this data if one of the following conditions is true:

  • The SampleCount value of the statistic set is 1.
  • The Min and the Max values of the statistic set are equal.

Percentile statistics are not available for metrics when any of the metric values are negative numbers.

Amazon CloudWatch retains metric data as follows:

  • Data points with a period of less than 60 seconds are available for 3 hours. These data points are high-resolution metrics and are available only for custom metrics that have been defined with a StorageResolution of 1.
  • Data points with a period of 60 seconds (1-minute) are available for 15 days.
  • Data points with a period of 300 seconds (5-minute) are available for 63 days.
  • Data points with a period of 3600 seconds (1 hour) are available for 455 days (15 months).

Data points that are initially published with a shorter period are aggregated together for long-term storage. For example, if you collect data using a period of 1 minute, the data remains available for 15 days with 1-minute resolution. After 15 days, this data is still available, but is aggregated and retrievable only with a resolution of 5 minutes. After 63 days, the data is further aggregated and is available with a resolution of 1 hour.

CloudWatch started retaining 5-minute and 1-hour metric data as of July 9, 2016.

For information about metrics and dimensions supported by Amazon Web Services services, see the Amazon CloudWatch Metrics and Dimensions Reference in the Amazon CloudWatch User Guide.

Synopsis

Creating a Request

data GetMetricStatistics Source #

See: newGetMetricStatistics smart constructor.

Constructors

GetMetricStatistics' 

Fields

  • extendedStatistics :: Maybe (NonEmpty Text)

    The percentile statistics. Specify values between p0.0 and p100. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both. Percentile statistics are not available for metrics when any of the metric values are negative numbers.

  • statistics :: Maybe (NonEmpty Statistic)

    The metric statistics, other than percentile. For percentile statistics, use ExtendedStatistics. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both.

  • dimensions :: Maybe [Dimension]

    The dimensions. If the metric contains multiple dimensions, you must include a value for each dimension. CloudWatch treats each unique combination of dimensions as a separate metric. If a specific combination of dimensions was not published, you can't retrieve statistics for it. You must specify the same dimensions that were used when the metrics were created. For an example, see Dimension Combinations in the Amazon CloudWatch User Guide. For more information about specifying dimensions, see Publishing Metrics in the Amazon CloudWatch User Guide.

  • unit :: Maybe StandardUnit

    The unit for a given metric. If you omit Unit, all data that was collected with any unit is returned, along with the corresponding units that were specified when the data was reported to CloudWatch. If you specify a unit, the operation returns only data that was collected with that unit specified. If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.

  • namespace :: Text

    The namespace of the metric, with or without spaces.

  • metricName :: Text

    The name of the metric, with or without spaces.

  • startTime :: ISO8601

    The time stamp that determines the first data point to return. Start times are evaluated relative to the time that CloudWatch receives the request.

    The value specified is inclusive; results include data points with the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-03T23:00:00Z).

    CloudWatch rounds the specified time stamp as follows:

    • Start time less than 15 days ago - Round down to the nearest whole minute. For example, 12:32:34 is rounded down to 12:32:00.
    • Start time between 15 and 63 days ago - Round down to the nearest 5-minute clock interval. For example, 12:32:34 is rounded down to 12:30:00.
    • Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is rounded down to 12:00:00.

    If you set Period to 5, 10, or 30, the start time of your request is rounded down to the nearest time that corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5 seconds, you receive data timestamped between 15:02:15 and 15:07:15.

  • endTime :: ISO8601

    The time stamp that determines the last data point to return.

    The value specified is exclusive; results include data points up to the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-10T23:00:00Z).

  • period :: Natural

    The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a PutMetricData call that includes a StorageResolution of 1 second.

    If the StartTime parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as follows or no data points in that time range is returned:

    • Start time between 3 hours and 15 days ago - Use a multiple of 60 seconds (1 minute).
    • Start time between 15 and 63 days ago - Use a multiple of 300 seconds (5 minutes).
    • Start time greater than 63 days ago - Use a multiple of 3600 seconds (1 hour).

Instances

Instances details
Eq GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Read GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Show GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Generic GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Associated Types

type Rep GetMetricStatistics :: Type -> Type #

NFData GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Methods

rnf :: GetMetricStatistics -> () #

Hashable GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

AWSRequest GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Associated Types

type AWSResponse GetMetricStatistics #

ToHeaders GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

ToPath GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

ToQuery GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

type Rep GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

type AWSResponse GetMetricStatistics Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

newGetMetricStatistics Source #

Create a value of GetMetricStatistics with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:extendedStatistics:GetMetricStatistics', getMetricStatistics_extendedStatistics - The percentile statistics. Specify values between p0.0 and p100. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both. Percentile statistics are not available for metrics when any of the metric values are negative numbers.

$sel:statistics:GetMetricStatistics', getMetricStatistics_statistics - The metric statistics, other than percentile. For percentile statistics, use ExtendedStatistics. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both.

$sel:dimensions:GetMetricStatistics', getMetricStatistics_dimensions - The dimensions. If the metric contains multiple dimensions, you must include a value for each dimension. CloudWatch treats each unique combination of dimensions as a separate metric. If a specific combination of dimensions was not published, you can't retrieve statistics for it. You must specify the same dimensions that were used when the metrics were created. For an example, see Dimension Combinations in the Amazon CloudWatch User Guide. For more information about specifying dimensions, see Publishing Metrics in the Amazon CloudWatch User Guide.

$sel:unit:GetMetricStatistics', getMetricStatistics_unit - The unit for a given metric. If you omit Unit, all data that was collected with any unit is returned, along with the corresponding units that were specified when the data was reported to CloudWatch. If you specify a unit, the operation returns only data that was collected with that unit specified. If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.

$sel:namespace:GetMetricStatistics', getMetricStatistics_namespace - The namespace of the metric, with or without spaces.

$sel:metricName:GetMetricStatistics', getMetricStatistics_metricName - The name of the metric, with or without spaces.

$sel:startTime:GetMetricStatistics', getMetricStatistics_startTime - The time stamp that determines the first data point to return. Start times are evaluated relative to the time that CloudWatch receives the request.

The value specified is inclusive; results include data points with the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-03T23:00:00Z).

CloudWatch rounds the specified time stamp as follows:

  • Start time less than 15 days ago - Round down to the nearest whole minute. For example, 12:32:34 is rounded down to 12:32:00.
  • Start time between 15 and 63 days ago - Round down to the nearest 5-minute clock interval. For example, 12:32:34 is rounded down to 12:30:00.
  • Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is rounded down to 12:00:00.

If you set Period to 5, 10, or 30, the start time of your request is rounded down to the nearest time that corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5 seconds, you receive data timestamped between 15:02:15 and 15:07:15.

$sel:endTime:GetMetricStatistics', getMetricStatistics_endTime - The time stamp that determines the last data point to return.

The value specified is exclusive; results include data points up to the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-10T23:00:00Z).

$sel:period:GetMetricStatistics', getMetricStatistics_period - The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a PutMetricData call that includes a StorageResolution of 1 second.

If the StartTime parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as follows or no data points in that time range is returned:

  • Start time between 3 hours and 15 days ago - Use a multiple of 60 seconds (1 minute).
  • Start time between 15 and 63 days ago - Use a multiple of 300 seconds (5 minutes).
  • Start time greater than 63 days ago - Use a multiple of 3600 seconds (1 hour).

Request Lenses

getMetricStatistics_extendedStatistics :: Lens' GetMetricStatistics (Maybe (NonEmpty Text)) Source #

The percentile statistics. Specify values between p0.0 and p100. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both. Percentile statistics are not available for metrics when any of the metric values are negative numbers.

getMetricStatistics_statistics :: Lens' GetMetricStatistics (Maybe (NonEmpty Statistic)) Source #

The metric statistics, other than percentile. For percentile statistics, use ExtendedStatistics. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both.

getMetricStatistics_dimensions :: Lens' GetMetricStatistics (Maybe [Dimension]) Source #

The dimensions. If the metric contains multiple dimensions, you must include a value for each dimension. CloudWatch treats each unique combination of dimensions as a separate metric. If a specific combination of dimensions was not published, you can't retrieve statistics for it. You must specify the same dimensions that were used when the metrics were created. For an example, see Dimension Combinations in the Amazon CloudWatch User Guide. For more information about specifying dimensions, see Publishing Metrics in the Amazon CloudWatch User Guide.

getMetricStatistics_unit :: Lens' GetMetricStatistics (Maybe StandardUnit) Source #

The unit for a given metric. If you omit Unit, all data that was collected with any unit is returned, along with the corresponding units that were specified when the data was reported to CloudWatch. If you specify a unit, the operation returns only data that was collected with that unit specified. If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.

getMetricStatistics_namespace :: Lens' GetMetricStatistics Text Source #

The namespace of the metric, with or without spaces.

getMetricStatistics_metricName :: Lens' GetMetricStatistics Text Source #

The name of the metric, with or without spaces.

getMetricStatistics_startTime :: Lens' GetMetricStatistics UTCTime Source #

The time stamp that determines the first data point to return. Start times are evaluated relative to the time that CloudWatch receives the request.

The value specified is inclusive; results include data points with the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-03T23:00:00Z).

CloudWatch rounds the specified time stamp as follows:

  • Start time less than 15 days ago - Round down to the nearest whole minute. For example, 12:32:34 is rounded down to 12:32:00.
  • Start time between 15 and 63 days ago - Round down to the nearest 5-minute clock interval. For example, 12:32:34 is rounded down to 12:30:00.
  • Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is rounded down to 12:00:00.

If you set Period to 5, 10, or 30, the start time of your request is rounded down to the nearest time that corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5 seconds, you receive data timestamped between 15:02:15 and 15:07:15.

getMetricStatistics_endTime :: Lens' GetMetricStatistics UTCTime Source #

The time stamp that determines the last data point to return.

The value specified is exclusive; results include data points up to the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-10T23:00:00Z).

getMetricStatistics_period :: Lens' GetMetricStatistics Natural Source #

The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a PutMetricData call that includes a StorageResolution of 1 second.

If the StartTime parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as follows or no data points in that time range is returned:

  • Start time between 3 hours and 15 days ago - Use a multiple of 60 seconds (1 minute).
  • Start time between 15 and 63 days ago - Use a multiple of 300 seconds (5 minutes).
  • Start time greater than 63 days ago - Use a multiple of 3600 seconds (1 hour).

Destructuring the Response

data GetMetricStatisticsResponse Source #

See: newGetMetricStatisticsResponse smart constructor.

Constructors

GetMetricStatisticsResponse' 

Fields

Instances

Instances details
Eq GetMetricStatisticsResponse Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Read GetMetricStatisticsResponse Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Show GetMetricStatisticsResponse Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Generic GetMetricStatisticsResponse Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

Associated Types

type Rep GetMetricStatisticsResponse :: Type -> Type #

NFData GetMetricStatisticsResponse Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

type Rep GetMetricStatisticsResponse Source # 
Instance details

Defined in Amazonka.CloudWatch.GetMetricStatistics

type Rep GetMetricStatisticsResponse = D1 ('MetaData "GetMetricStatisticsResponse" "Amazonka.CloudWatch.GetMetricStatistics" "libZSservicesZSamazonka-cloudwatchZSamazonka-cloudwatch" 'False) (C1 ('MetaCons "GetMetricStatisticsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "datapoints") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Datapoint])) :*: (S1 ('MetaSel ('Just "label") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetMetricStatisticsResponse Source #

Create a value of GetMetricStatisticsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:datapoints:GetMetricStatisticsResponse', getMetricStatisticsResponse_datapoints - The data points for the specified metric.

$sel:label:GetMetricStatisticsResponse', getMetricStatisticsResponse_label - A label for the specified metric.

$sel:httpStatus:GetMetricStatisticsResponse', getMetricStatisticsResponse_httpStatus - The response's http status code.

Response Lenses