@aws-sdk/client-cloudwatch 3.70.0 → 3.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.74.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.73.0...v3.74.0) (2022-04-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudwatch
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.72.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.71.0...v3.72.0) (2022-04-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudwatch
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.71.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.70.0...v3.71.0) (2022-04-14)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudwatch
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [3.70.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.69.0...v3.70.0) (2022-04-13)
|
|
7
31
|
|
|
8
32
|
|
|
@@ -655,7 +655,7 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
655
655
|
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
|
|
656
656
|
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. You can use the
|
|
657
657
|
* <code>StatisticsConfigurations</code> parameter to have
|
|
658
|
-
* the metric stream also send
|
|
658
|
+
* the metric stream also send additional statistics in the stream. Streaming additional statistics incurs
|
|
659
659
|
* additional costs. For more information, see <a href="https://aws.amazon.com/cloudwatch/pricing/">Amazon CloudWatch Pricing</a>. </p>
|
|
660
660
|
*
|
|
661
661
|
* <p>When you use <code>PutMetricStream</code> to create a new metric stream, the stream
|
|
@@ -35,7 +35,7 @@ export interface PutMetricStreamCommandOutput extends PutMetricStreamOutput, __M
|
|
|
35
35
|
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
|
|
36
36
|
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. You can use the
|
|
37
37
|
* <code>StatisticsConfigurations</code> parameter to have
|
|
38
|
-
* the metric stream also send
|
|
38
|
+
* the metric stream also send additional statistics in the stream. Streaming additional statistics incurs
|
|
39
39
|
* additional costs. For more information, see <a href="https://aws.amazon.com/cloudwatch/pricing/">Amazon CloudWatch Pricing</a>. </p>
|
|
40
40
|
*
|
|
41
41
|
* <p>When you use <code>PutMetricStream</code> to create a new metric stream, the stream
|
|
@@ -2069,12 +2069,12 @@ export declare enum MetricStreamOutputFormat {
|
|
|
2069
2069
|
OPEN_TELEMETRY_0_7 = "opentelemetry0.7"
|
|
2070
2070
|
}
|
|
2071
2071
|
/**
|
|
2072
|
-
* <p>This object contains the information for one metric that is to streamed with
|
|
2073
|
-
*
|
|
2072
|
+
* <p>This object contains the information for one metric that is to be streamed with
|
|
2073
|
+
* additional statistics.</p>
|
|
2074
2074
|
*/
|
|
2075
2075
|
export interface MetricStreamStatisticsMetric {
|
|
2076
2076
|
/**
|
|
2077
|
-
* <p>The
|
|
2077
|
+
* <p>The namespace of the metric.</p>
|
|
2078
2078
|
*/
|
|
2079
2079
|
Namespace: string | undefined;
|
|
2080
2080
|
/**
|
|
@@ -2091,28 +2091,28 @@ export declare namespace MetricStreamStatisticsMetric {
|
|
|
2091
2091
|
/**
|
|
2092
2092
|
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
|
|
2093
2093
|
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. This structure contains information for
|
|
2094
|
-
* one metric that includes
|
|
2094
|
+
* one metric that includes additional statistics in the stream. For more information about statistics,
|
|
2095
2095
|
* see CloudWatch, listed in
|
|
2096
2096
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
|
|
2097
2097
|
* CloudWatch statistics definitions</a>.</p>
|
|
2098
2098
|
*/
|
|
2099
2099
|
export interface MetricStreamStatisticsConfiguration {
|
|
2100
2100
|
/**
|
|
2101
|
-
* <p>An array of metric name and namespace pairs that stream the
|
|
2101
|
+
* <p>An array of metric name and namespace pairs that stream the additional statistics listed
|
|
2102
2102
|
* in the value of the <code>AdditionalStatistics</code> parameter. There can be as many as
|
|
2103
2103
|
* 100 pairs in the array.</p>
|
|
2104
2104
|
* <p>All metrics that match the combination of metric name and namespace will be streamed
|
|
2105
|
-
* with the
|
|
2105
|
+
* with the additional statistics, no matter their dimensions.</p>
|
|
2106
2106
|
*/
|
|
2107
2107
|
IncludeMetrics: MetricStreamStatisticsMetric[] | undefined;
|
|
2108
2108
|
/**
|
|
2109
|
-
* <p>The list of
|
|
2109
|
+
* <p>The list of additional statistics that are to be streamed for the metrics listed
|
|
2110
2110
|
* in the <code>IncludeMetrics</code> array in this structure. This list can include as many as 20 statistics.</p>
|
|
2111
2111
|
* <p>If the <code>OutputFormat</code> for the stream is <code>opentelemetry0.7</code>, the only
|
|
2112
2112
|
* valid values are <code>p<i>??</i>
|
|
2113
2113
|
* </code> percentile statistics such as <code>p90</code>, <code>p99</code> and so on.</p>
|
|
2114
2114
|
* <p>If the <code>OutputFormat</code> for the stream is <code>json</code>,
|
|
2115
|
-
* the valid values
|
|
2115
|
+
* the valid values include the abbreviations for all of the statistics listed in
|
|
2116
2116
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
|
|
2117
2117
|
* CloudWatch statistics definitions</a>. For example, this includes
|
|
2118
2118
|
* <code>tm98, </code>
|
|
@@ -2178,8 +2178,8 @@ export interface GetMetricStreamOutput {
|
|
|
2178
2178
|
*/
|
|
2179
2179
|
OutputFormat?: MetricStreamOutputFormat | string;
|
|
2180
2180
|
/**
|
|
2181
|
-
* <p>Each entry in this array displays information about one or more metrics that include
|
|
2182
|
-
* in the metric stream. For more information about
|
|
2181
|
+
* <p>Each entry in this array displays information about one or more metrics that include additional statistics
|
|
2182
|
+
* in the metric stream. For more information about the additional statistics, see
|
|
2183
2183
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
|
|
2184
2184
|
* CloudWatch statistics definitions</a>. </p>
|
|
2185
2185
|
*/
|
|
@@ -3012,6 +3012,11 @@ export interface PutMetricAlarmInput {
|
|
|
3012
3012
|
* Alarms Treats Missing Data</a>.</p>
|
|
3013
3013
|
* <p>Valid Values: <code>breaching | notBreaching | ignore | missing</code>
|
|
3014
3014
|
* </p>
|
|
3015
|
+
* <note>
|
|
3016
|
+
* <p>Alarms that evaluate metrics in the <code>AWS/DynamoDB</code> namespace always <code>ignore</code>
|
|
3017
|
+
* missing data even if you choose a different option for <code>TreatMissingData</code>. When an
|
|
3018
|
+
* <code>AWS/DynamoDB</code> metric has missing data, alarms that evaluate that metric remain in their current state.</p>
|
|
3019
|
+
* </note>
|
|
3015
3020
|
*/
|
|
3016
3021
|
TreatMissingData?: string;
|
|
3017
3022
|
/**
|
|
@@ -3243,15 +3248,15 @@ export interface PutMetricStreamInput {
|
|
|
3243
3248
|
/**
|
|
3244
3249
|
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
|
|
3245
3250
|
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. You can use this parameter to have
|
|
3246
|
-
* the metric stream also send
|
|
3251
|
+
* the metric stream also send additional statistics in the stream. This
|
|
3247
3252
|
* array can have up to 100 members.</p>
|
|
3248
|
-
* <p>For each entry in this array, you specify one or more metrics and the list of
|
|
3249
|
-
* for those metrics. The
|
|
3250
|
-
* If the <code>OutputFormat</code> is <code>json</code>, you can stream any
|
|
3253
|
+
* <p>For each entry in this array, you specify one or more metrics and the list of additional statistics to stream
|
|
3254
|
+
* for those metrics. The additional statistics that you can stream depend on the stream's <code>OutputFormat</code>.
|
|
3255
|
+
* If the <code>OutputFormat</code> is <code>json</code>, you can stream any additional statistic that is supported
|
|
3251
3256
|
* by CloudWatch, listed in
|
|
3252
3257
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
|
|
3253
3258
|
* CloudWatch statistics definitions</a>. If the <code>OutputFormat</code> is
|
|
3254
|
-
* <code>opentelemetry0.7</code>, you can stream percentile statistics
|
|
3259
|
+
* <code>opentelemetry0.7</code>, you can stream percentile statistics such as p95, p99.9 and so on.</p>
|
|
3255
3260
|
*/
|
|
3256
3261
|
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[];
|
|
3257
3262
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.74.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.74.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.74.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.58.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.74.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
38
|
+
"@aws-sdk/smithy-client": "3.72.0",
|
|
39
39
|
"@aws-sdk/types": "3.55.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.55.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.72.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.72.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.58.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|