aws-cdk.aws-kinesisanalytics-flink-alpha 2.182.0a0__py3-none-any.whl → 2.222.0a0__py3-none-any.whl
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.
- aws_cdk/aws_kinesisanalytics_flink_alpha/__init__.py +480 -2
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/__init__.py +2 -2
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/aws-kinesisanalytics-flink-alpha@2.222.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.182.0a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.222.0a0.dist-info}/METADATA +7 -8
- aws_cdk_aws_kinesisanalytics_flink_alpha-2.222.0a0.dist-info/RECORD +10 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.182.0a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.222.0a0.dist-info}/WHEEL +1 -1
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/aws-kinesisanalytics-flink-alpha@2.182.0-alpha.0.jsii.tgz +0 -0
- aws_cdk.aws_kinesisanalytics_flink_alpha-2.182.0a0.dist-info/RECORD +0 -10
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.182.0a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.222.0a0.dist-info}/LICENSE +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.182.0a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.222.0a0.dist-info}/NOTICE +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.182.0a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.222.0a0.dist-info}/top_level.txt +0 -0
|
@@ -291,8 +291,9 @@ class ApplicationCode(
|
|
|
291
291
|
path: builtins.str,
|
|
292
292
|
*,
|
|
293
293
|
deploy_time: typing.Optional[builtins.bool] = None,
|
|
294
|
+
display_name: typing.Optional[builtins.str] = None,
|
|
294
295
|
readers: typing.Optional[typing.Sequence[_aws_cdk_aws_iam_ceddda9d.IGrantable]] = None,
|
|
295
|
-
source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.
|
|
296
|
+
source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKeyRef] = None,
|
|
296
297
|
asset_hash: typing.Optional[builtins.str] = None,
|
|
297
298
|
asset_hash_type: typing.Optional[_aws_cdk_ceddda9d.AssetHashType] = None,
|
|
298
299
|
bundling: typing.Optional[typing.Union[_aws_cdk_ceddda9d.BundlingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -304,6 +305,7 @@ class ApplicationCode(
|
|
|
304
305
|
|
|
305
306
|
:param path: - a local directory path.
|
|
306
307
|
:param deploy_time: Whether or not the asset needs to exist beyond deployment time; i.e. are copied over to a different location and not needed afterwards. Setting this property to true has an impact on the lifecycle of the asset, because we will assume that it is safe to delete after the CloudFormation deployment succeeds. For example, Lambda Function assets are copied over to Lambda during deployment. Therefore, it is not necessary to store the asset in S3, so we consider those deployTime assets. Default: false
|
|
308
|
+
:param display_name: A display name for this asset. If supplied, the display name will be used in locations where the asset identifier is printed, like in the CLI progress information. If the same asset is added multiple times, the display name of the first occurrence is used. The default is the construct path of the Asset construct, with respect to the enclosing stack. If the asset is produced by a construct helper function (such as ``lambda.Code.fromAsset()``), this will look like ``MyFunction/Code``. We use the stack-relative construct path so that in the common case where you have multiple stacks with the same asset, we won't show something like ``/MyBetaStack/MyFunction/Code`` when you are actually deploying to production. Default: - Stack-relative construct path
|
|
307
309
|
:param readers: A list of principals that should be able to read this asset from S3. You can use ``asset.grantRead(principal)`` to grant read permissions later. Default: - No principals that can read file asset.
|
|
308
310
|
:param source_kms_key: The ARN of the KMS key used to encrypt the handler code. Default: - the default server-side encryption with Amazon S3 managed keys(SSE-S3) key will be used.
|
|
309
311
|
:param asset_hash: Specify a custom hash for this asset. If ``assetHashType`` is set it must be set to ``AssetHashType.CUSTOM``. For consistency, this custom hash will be SHA256 hashed and encoded as hex. The resulting hash will be the asset hash. NOTE: the hash is used in order to identify a specific revision of the asset, and used for optimizing and caching deployment activities related to this asset such as packaging, uploading to Amazon S3, etc. If you chose to customize the hash, you will need to make sure it is updated every time the asset changes, or otherwise it is possible that some deployments will not be invalidated. Default: - based on ``assetHashType``
|
|
@@ -321,6 +323,7 @@ class ApplicationCode(
|
|
|
321
323
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
322
324
|
options = _aws_cdk_aws_s3_assets_ceddda9d.AssetOptions(
|
|
323
325
|
deploy_time=deploy_time,
|
|
326
|
+
display_name=display_name,
|
|
324
327
|
readers=readers,
|
|
325
328
|
source_kms_key=source_kms_key,
|
|
326
329
|
asset_hash=asset_hash,
|
|
@@ -434,6 +437,12 @@ class ApplicationCodeConfig:
|
|
|
434
437
|
),
|
|
435
438
|
code_content_type="codeContentType"
|
|
436
439
|
),
|
|
440
|
+
application_encryption_configuration=ApplicationEncryptionConfigurationProperty(
|
|
441
|
+
key_type="keyType",
|
|
442
|
+
|
|
443
|
+
# the properties below are optional
|
|
444
|
+
key_id="keyId"
|
|
445
|
+
),
|
|
437
446
|
application_snapshot_configuration=ApplicationSnapshotConfigurationProperty(
|
|
438
447
|
snapshots_enabled=False
|
|
439
448
|
),
|
|
@@ -1061,6 +1070,7 @@ class IApplication(
|
|
|
1061
1070
|
account: typing.Optional[builtins.str] = None,
|
|
1062
1071
|
color: typing.Optional[builtins.str] = None,
|
|
1063
1072
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1073
|
+
id: typing.Optional[builtins.str] = None,
|
|
1064
1074
|
label: typing.Optional[builtins.str] = None,
|
|
1065
1075
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1066
1076
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1068,6 +1078,7 @@ class IApplication(
|
|
|
1068
1078
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1069
1079
|
statistic: typing.Optional[builtins.str] = None,
|
|
1070
1080
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1081
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1071
1082
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1072
1083
|
'''(experimental) Return a CloudWatch metric associated with this Flink application.
|
|
1073
1084
|
|
|
@@ -1075,6 +1086,7 @@ class IApplication(
|
|
|
1075
1086
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1076
1087
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1077
1088
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1089
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1078
1090
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1079
1091
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1080
1092
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1082,6 +1094,7 @@ class IApplication(
|
|
|
1082
1094
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1083
1095
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1084
1096
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1097
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1085
1098
|
|
|
1086
1099
|
:stability: experimental
|
|
1087
1100
|
'''
|
|
@@ -1094,6 +1107,7 @@ class IApplication(
|
|
|
1094
1107
|
account: typing.Optional[builtins.str] = None,
|
|
1095
1108
|
color: typing.Optional[builtins.str] = None,
|
|
1096
1109
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1110
|
+
id: typing.Optional[builtins.str] = None,
|
|
1097
1111
|
label: typing.Optional[builtins.str] = None,
|
|
1098
1112
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1099
1113
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1101,6 +1115,7 @@ class IApplication(
|
|
|
1101
1115
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1102
1116
|
statistic: typing.Optional[builtins.str] = None,
|
|
1103
1117
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1118
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1104
1119
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1105
1120
|
'''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
|
|
1106
1121
|
|
|
@@ -1111,6 +1126,7 @@ class IApplication(
|
|
|
1111
1126
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1112
1127
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1113
1128
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1129
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1114
1130
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1115
1131
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1116
1132
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1118,6 +1134,7 @@ class IApplication(
|
|
|
1118
1134
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1119
1135
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1120
1136
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1137
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1121
1138
|
|
|
1122
1139
|
:default: - average over 5 minutes
|
|
1123
1140
|
|
|
@@ -1132,6 +1149,7 @@ class IApplication(
|
|
|
1132
1149
|
account: typing.Optional[builtins.str] = None,
|
|
1133
1150
|
color: typing.Optional[builtins.str] = None,
|
|
1134
1151
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1152
|
+
id: typing.Optional[builtins.str] = None,
|
|
1135
1153
|
label: typing.Optional[builtins.str] = None,
|
|
1136
1154
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1137
1155
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1139,6 +1157,7 @@ class IApplication(
|
|
|
1139
1157
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1140
1158
|
statistic: typing.Optional[builtins.str] = None,
|
|
1141
1159
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1160
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1142
1161
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1143
1162
|
'''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
|
|
1144
1163
|
|
|
@@ -1152,6 +1171,7 @@ class IApplication(
|
|
|
1152
1171
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1153
1172
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1154
1173
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1174
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1155
1175
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1156
1176
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1157
1177
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1159,6 +1179,7 @@ class IApplication(
|
|
|
1159
1179
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1160
1180
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1161
1181
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1182
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1162
1183
|
|
|
1163
1184
|
:default: - average over 5 minutes
|
|
1164
1185
|
|
|
@@ -1173,6 +1194,7 @@ class IApplication(
|
|
|
1173
1194
|
account: typing.Optional[builtins.str] = None,
|
|
1174
1195
|
color: typing.Optional[builtins.str] = None,
|
|
1175
1196
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1197
|
+
id: typing.Optional[builtins.str] = None,
|
|
1176
1198
|
label: typing.Optional[builtins.str] = None,
|
|
1177
1199
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1178
1200
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1180,6 +1202,7 @@ class IApplication(
|
|
|
1180
1202
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1181
1203
|
statistic: typing.Optional[builtins.str] = None,
|
|
1182
1204
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1205
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1183
1206
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1184
1207
|
'''(experimental) The overall percentage of CPU utilization across task managers.
|
|
1185
1208
|
|
|
@@ -1194,6 +1217,7 @@ class IApplication(
|
|
|
1194
1217
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1195
1218
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1196
1219
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1220
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1197
1221
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1198
1222
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1199
1223
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1201,6 +1225,7 @@ class IApplication(
|
|
|
1201
1225
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1202
1226
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1203
1227
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1228
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1204
1229
|
|
|
1205
1230
|
:default: - average over 5 minutes
|
|
1206
1231
|
|
|
@@ -1215,6 +1240,7 @@ class IApplication(
|
|
|
1215
1240
|
account: typing.Optional[builtins.str] = None,
|
|
1216
1241
|
color: typing.Optional[builtins.str] = None,
|
|
1217
1242
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1243
|
+
id: typing.Optional[builtins.str] = None,
|
|
1218
1244
|
label: typing.Optional[builtins.str] = None,
|
|
1219
1245
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1220
1246
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1222,6 +1248,7 @@ class IApplication(
|
|
|
1222
1248
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1223
1249
|
statistic: typing.Optional[builtins.str] = None,
|
|
1224
1250
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1251
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1225
1252
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1226
1253
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
1227
1254
|
|
|
@@ -1232,6 +1259,7 @@ class IApplication(
|
|
|
1232
1259
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1233
1260
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1234
1261
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1262
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1235
1263
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1236
1264
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1237
1265
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1239,6 +1267,7 @@ class IApplication(
|
|
|
1239
1267
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1240
1268
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1241
1269
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1270
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1242
1271
|
|
|
1243
1272
|
:default: - maximum over 5 minutes
|
|
1244
1273
|
|
|
@@ -1253,6 +1282,7 @@ class IApplication(
|
|
|
1253
1282
|
account: typing.Optional[builtins.str] = None,
|
|
1254
1283
|
color: typing.Optional[builtins.str] = None,
|
|
1255
1284
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1285
|
+
id: typing.Optional[builtins.str] = None,
|
|
1256
1286
|
label: typing.Optional[builtins.str] = None,
|
|
1257
1287
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1258
1288
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1260,6 +1290,7 @@ class IApplication(
|
|
|
1260
1290
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1261
1291
|
statistic: typing.Optional[builtins.str] = None,
|
|
1262
1292
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1293
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1263
1294
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1264
1295
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
1265
1296
|
|
|
@@ -1270,6 +1301,7 @@ class IApplication(
|
|
|
1270
1301
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1271
1302
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1272
1303
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1304
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1273
1305
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1274
1306
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1275
1307
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1277,6 +1309,7 @@ class IApplication(
|
|
|
1277
1309
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1278
1310
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1279
1311
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1312
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1280
1313
|
|
|
1281
1314
|
:default: - maximum over 5 minutes
|
|
1282
1315
|
|
|
@@ -1291,6 +1324,7 @@ class IApplication(
|
|
|
1291
1324
|
account: typing.Optional[builtins.str] = None,
|
|
1292
1325
|
color: typing.Optional[builtins.str] = None,
|
|
1293
1326
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1327
|
+
id: typing.Optional[builtins.str] = None,
|
|
1294
1328
|
label: typing.Optional[builtins.str] = None,
|
|
1295
1329
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1296
1330
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1298,6 +1332,7 @@ class IApplication(
|
|
|
1298
1332
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1299
1333
|
statistic: typing.Optional[builtins.str] = None,
|
|
1300
1334
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1335
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1301
1336
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1302
1337
|
'''(experimental) The time elapsed during an outage for failing/recovering jobs.
|
|
1303
1338
|
|
|
@@ -1308,6 +1343,7 @@ class IApplication(
|
|
|
1308
1343
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1309
1344
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1310
1345
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1346
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1311
1347
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1312
1348
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1313
1349
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1315,6 +1351,7 @@ class IApplication(
|
|
|
1315
1351
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1316
1352
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1317
1353
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1354
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1318
1355
|
|
|
1319
1356
|
:default: - average over 5 minutes
|
|
1320
1357
|
|
|
@@ -1329,6 +1366,7 @@ class IApplication(
|
|
|
1329
1366
|
account: typing.Optional[builtins.str] = None,
|
|
1330
1367
|
color: typing.Optional[builtins.str] = None,
|
|
1331
1368
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1369
|
+
id: typing.Optional[builtins.str] = None,
|
|
1332
1370
|
label: typing.Optional[builtins.str] = None,
|
|
1333
1371
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1334
1372
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1336,6 +1374,7 @@ class IApplication(
|
|
|
1336
1374
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1337
1375
|
statistic: typing.Optional[builtins.str] = None,
|
|
1338
1376
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1377
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1339
1378
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1340
1379
|
'''(experimental) The total number of times this job has fully restarted since it was submitted.
|
|
1341
1380
|
|
|
@@ -1348,6 +1387,7 @@ class IApplication(
|
|
|
1348
1387
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1349
1388
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1350
1389
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1390
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1351
1391
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1352
1392
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1353
1393
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1355,6 +1395,7 @@ class IApplication(
|
|
|
1355
1395
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1356
1396
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1357
1397
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1398
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1358
1399
|
|
|
1359
1400
|
:default: - sum over 5 minutes
|
|
1360
1401
|
|
|
@@ -1369,6 +1410,7 @@ class IApplication(
|
|
|
1369
1410
|
account: typing.Optional[builtins.str] = None,
|
|
1370
1411
|
color: typing.Optional[builtins.str] = None,
|
|
1371
1412
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1413
|
+
id: typing.Optional[builtins.str] = None,
|
|
1372
1414
|
label: typing.Optional[builtins.str] = None,
|
|
1373
1415
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1374
1416
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1376,6 +1418,7 @@ class IApplication(
|
|
|
1376
1418
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1377
1419
|
statistic: typing.Optional[builtins.str] = None,
|
|
1378
1420
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1421
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1379
1422
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1380
1423
|
'''(experimental) Overall heap memory utilization across task managers.
|
|
1381
1424
|
|
|
@@ -1390,6 +1433,7 @@ class IApplication(
|
|
|
1390
1433
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1391
1434
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1392
1435
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1436
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1393
1437
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1394
1438
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1395
1439
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1397,6 +1441,7 @@ class IApplication(
|
|
|
1397
1441
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1398
1442
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1399
1443
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1444
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1400
1445
|
|
|
1401
1446
|
:default: - average over 5 minutes
|
|
1402
1447
|
|
|
@@ -1411,6 +1456,7 @@ class IApplication(
|
|
|
1411
1456
|
account: typing.Optional[builtins.str] = None,
|
|
1412
1457
|
color: typing.Optional[builtins.str] = None,
|
|
1413
1458
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1459
|
+
id: typing.Optional[builtins.str] = None,
|
|
1414
1460
|
label: typing.Optional[builtins.str] = None,
|
|
1415
1461
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1416
1462
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1418,6 +1464,7 @@ class IApplication(
|
|
|
1418
1464
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1419
1465
|
statistic: typing.Optional[builtins.str] = None,
|
|
1420
1466
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1467
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1421
1468
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1422
1469
|
'''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
|
|
1423
1470
|
|
|
@@ -1431,6 +1478,7 @@ class IApplication(
|
|
|
1431
1478
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1432
1479
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1433
1480
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1481
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1434
1482
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1435
1483
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1436
1484
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1438,6 +1486,7 @@ class IApplication(
|
|
|
1438
1486
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1439
1487
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1440
1488
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1489
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1441
1490
|
|
|
1442
1491
|
:default: - average over 5 minutes
|
|
1443
1492
|
|
|
@@ -1452,6 +1501,7 @@ class IApplication(
|
|
|
1452
1501
|
account: typing.Optional[builtins.str] = None,
|
|
1453
1502
|
color: typing.Optional[builtins.str] = None,
|
|
1454
1503
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1504
|
+
id: typing.Optional[builtins.str] = None,
|
|
1455
1505
|
label: typing.Optional[builtins.str] = None,
|
|
1456
1506
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1457
1507
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1459,6 +1509,7 @@ class IApplication(
|
|
|
1459
1509
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1460
1510
|
statistic: typing.Optional[builtins.str] = None,
|
|
1461
1511
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1512
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1462
1513
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1463
1514
|
'''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
|
|
1464
1515
|
|
|
@@ -1472,6 +1523,7 @@ class IApplication(
|
|
|
1472
1523
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1473
1524
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1474
1525
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1526
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1475
1527
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1476
1528
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1477
1529
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1479,6 +1531,7 @@ class IApplication(
|
|
|
1479
1531
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1480
1532
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1481
1533
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1534
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1482
1535
|
|
|
1483
1536
|
:default: - average over 5 minutes
|
|
1484
1537
|
|
|
@@ -1493,6 +1546,7 @@ class IApplication(
|
|
|
1493
1546
|
account: typing.Optional[builtins.str] = None,
|
|
1494
1547
|
color: typing.Optional[builtins.str] = None,
|
|
1495
1548
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1549
|
+
id: typing.Optional[builtins.str] = None,
|
|
1496
1550
|
label: typing.Optional[builtins.str] = None,
|
|
1497
1551
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1498
1552
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1500,6 +1554,7 @@ class IApplication(
|
|
|
1500
1554
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1501
1555
|
statistic: typing.Optional[builtins.str] = None,
|
|
1502
1556
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1557
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1503
1558
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1504
1559
|
'''(experimental) The time it took to complete the last checkpoint.
|
|
1505
1560
|
|
|
@@ -1510,6 +1565,7 @@ class IApplication(
|
|
|
1510
1565
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1511
1566
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1512
1567
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1568
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1513
1569
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1514
1570
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1515
1571
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1517,6 +1573,7 @@ class IApplication(
|
|
|
1517
1573
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1518
1574
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1519
1575
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1576
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1520
1577
|
|
|
1521
1578
|
:default: - maximum over 5 minutes
|
|
1522
1579
|
|
|
@@ -1531,6 +1588,7 @@ class IApplication(
|
|
|
1531
1588
|
account: typing.Optional[builtins.str] = None,
|
|
1532
1589
|
color: typing.Optional[builtins.str] = None,
|
|
1533
1590
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1591
|
+
id: typing.Optional[builtins.str] = None,
|
|
1534
1592
|
label: typing.Optional[builtins.str] = None,
|
|
1535
1593
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1536
1594
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1538,6 +1596,7 @@ class IApplication(
|
|
|
1538
1596
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1539
1597
|
statistic: typing.Optional[builtins.str] = None,
|
|
1540
1598
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1599
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1541
1600
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1542
1601
|
'''(experimental) The total size of the last checkpoint.
|
|
1543
1602
|
|
|
@@ -1548,6 +1607,7 @@ class IApplication(
|
|
|
1548
1607
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1549
1608
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1550
1609
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1610
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1551
1611
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1552
1612
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1553
1613
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1555,6 +1615,7 @@ class IApplication(
|
|
|
1555
1615
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1556
1616
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1557
1617
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1618
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1558
1619
|
|
|
1559
1620
|
:default: - maximum over 5 minutes
|
|
1560
1621
|
|
|
@@ -1569,6 +1630,7 @@ class IApplication(
|
|
|
1569
1630
|
account: typing.Optional[builtins.str] = None,
|
|
1570
1631
|
color: typing.Optional[builtins.str] = None,
|
|
1571
1632
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1633
|
+
id: typing.Optional[builtins.str] = None,
|
|
1572
1634
|
label: typing.Optional[builtins.str] = None,
|
|
1573
1635
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1574
1636
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1576,6 +1638,7 @@ class IApplication(
|
|
|
1576
1638
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1577
1639
|
statistic: typing.Optional[builtins.str] = None,
|
|
1578
1640
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1641
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1579
1642
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1580
1643
|
'''(experimental) The total amount of managed memory.
|
|
1581
1644
|
|
|
@@ -1586,6 +1649,7 @@ class IApplication(
|
|
|
1586
1649
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1587
1650
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1588
1651
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1652
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1589
1653
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1590
1654
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1591
1655
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1593,6 +1657,7 @@ class IApplication(
|
|
|
1593
1657
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1594
1658
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1595
1659
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1660
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1596
1661
|
|
|
1597
1662
|
:default: - average over 5 minutes
|
|
1598
1663
|
|
|
@@ -1607,6 +1672,7 @@ class IApplication(
|
|
|
1607
1672
|
account: typing.Optional[builtins.str] = None,
|
|
1608
1673
|
color: typing.Optional[builtins.str] = None,
|
|
1609
1674
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1675
|
+
id: typing.Optional[builtins.str] = None,
|
|
1610
1676
|
label: typing.Optional[builtins.str] = None,
|
|
1611
1677
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1612
1678
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1614,6 +1680,7 @@ class IApplication(
|
|
|
1614
1680
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1615
1681
|
statistic: typing.Optional[builtins.str] = None,
|
|
1616
1682
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1683
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1617
1684
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1618
1685
|
'''(experimental) The amount of managed memory currently used.
|
|
1619
1686
|
|
|
@@ -1624,6 +1691,7 @@ class IApplication(
|
|
|
1624
1691
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1625
1692
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1626
1693
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1694
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1627
1695
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1628
1696
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1629
1697
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1631,6 +1699,7 @@ class IApplication(
|
|
|
1631
1699
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1632
1700
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1633
1701
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1702
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1634
1703
|
|
|
1635
1704
|
:default: - average over 5 minutes
|
|
1636
1705
|
|
|
@@ -1645,6 +1714,7 @@ class IApplication(
|
|
|
1645
1714
|
account: typing.Optional[builtins.str] = None,
|
|
1646
1715
|
color: typing.Optional[builtins.str] = None,
|
|
1647
1716
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1717
|
+
id: typing.Optional[builtins.str] = None,
|
|
1648
1718
|
label: typing.Optional[builtins.str] = None,
|
|
1649
1719
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1650
1720
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1652,6 +1722,7 @@ class IApplication(
|
|
|
1652
1722
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1653
1723
|
statistic: typing.Optional[builtins.str] = None,
|
|
1654
1724
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1725
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1655
1726
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1656
1727
|
'''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
|
|
1657
1728
|
|
|
@@ -1662,6 +1733,7 @@ class IApplication(
|
|
|
1662
1733
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1663
1734
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1664
1735
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1736
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1665
1737
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1666
1738
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1667
1739
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1669,6 +1741,7 @@ class IApplication(
|
|
|
1669
1741
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1670
1742
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1671
1743
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1744
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1672
1745
|
|
|
1673
1746
|
:default: - average over 5 minutes
|
|
1674
1747
|
|
|
@@ -1683,6 +1756,7 @@ class IApplication(
|
|
|
1683
1756
|
account: typing.Optional[builtins.str] = None,
|
|
1684
1757
|
color: typing.Optional[builtins.str] = None,
|
|
1685
1758
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1759
|
+
id: typing.Optional[builtins.str] = None,
|
|
1686
1760
|
label: typing.Optional[builtins.str] = None,
|
|
1687
1761
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1688
1762
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1690,6 +1764,7 @@ class IApplication(
|
|
|
1690
1764
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1691
1765
|
statistic: typing.Optional[builtins.str] = None,
|
|
1692
1766
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1767
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1693
1768
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1694
1769
|
'''(experimental) The number of times checkpointing has failed.
|
|
1695
1770
|
|
|
@@ -1700,6 +1775,7 @@ class IApplication(
|
|
|
1700
1775
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1701
1776
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1702
1777
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1778
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1703
1779
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1704
1780
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1705
1781
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1707,6 +1783,7 @@ class IApplication(
|
|
|
1707
1783
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1708
1784
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1709
1785
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1786
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1710
1787
|
|
|
1711
1788
|
:default: - sum over 5 minutes
|
|
1712
1789
|
|
|
@@ -1721,6 +1798,7 @@ class IApplication(
|
|
|
1721
1798
|
account: typing.Optional[builtins.str] = None,
|
|
1722
1799
|
color: typing.Optional[builtins.str] = None,
|
|
1723
1800
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1801
|
+
id: typing.Optional[builtins.str] = None,
|
|
1724
1802
|
label: typing.Optional[builtins.str] = None,
|
|
1725
1803
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1726
1804
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1728,6 +1806,7 @@ class IApplication(
|
|
|
1728
1806
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1729
1807
|
statistic: typing.Optional[builtins.str] = None,
|
|
1730
1808
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1809
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1731
1810
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1732
1811
|
'''(experimental) The number of records this operator or task has dropped due to arriving late.
|
|
1733
1812
|
|
|
@@ -1738,6 +1817,7 @@ class IApplication(
|
|
|
1738
1817
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1739
1818
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1740
1819
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1820
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1741
1821
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1742
1822
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1743
1823
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1745,6 +1825,7 @@ class IApplication(
|
|
|
1745
1825
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1746
1826
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1747
1827
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1828
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1748
1829
|
|
|
1749
1830
|
:default: - sum over 5 minutes
|
|
1750
1831
|
|
|
@@ -1759,6 +1840,7 @@ class IApplication(
|
|
|
1759
1840
|
account: typing.Optional[builtins.str] = None,
|
|
1760
1841
|
color: typing.Optional[builtins.str] = None,
|
|
1761
1842
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1843
|
+
id: typing.Optional[builtins.str] = None,
|
|
1762
1844
|
label: typing.Optional[builtins.str] = None,
|
|
1763
1845
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1764
1846
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1766,6 +1848,7 @@ class IApplication(
|
|
|
1766
1848
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1767
1849
|
statistic: typing.Optional[builtins.str] = None,
|
|
1768
1850
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1851
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1769
1852
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1770
1853
|
'''(experimental) The total number of records this application, operator, or task has received.
|
|
1771
1854
|
|
|
@@ -1776,6 +1859,7 @@ class IApplication(
|
|
|
1776
1859
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1777
1860
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1778
1861
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1862
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1779
1863
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1780
1864
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1781
1865
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1783,6 +1867,7 @@ class IApplication(
|
|
|
1783
1867
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1784
1868
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1785
1869
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1870
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1786
1871
|
|
|
1787
1872
|
:default: - average over 5 minutes
|
|
1788
1873
|
|
|
@@ -1797,6 +1882,7 @@ class IApplication(
|
|
|
1797
1882
|
account: typing.Optional[builtins.str] = None,
|
|
1798
1883
|
color: typing.Optional[builtins.str] = None,
|
|
1799
1884
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1885
|
+
id: typing.Optional[builtins.str] = None,
|
|
1800
1886
|
label: typing.Optional[builtins.str] = None,
|
|
1801
1887
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1802
1888
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1804,6 +1890,7 @@ class IApplication(
|
|
|
1804
1890
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1805
1891
|
statistic: typing.Optional[builtins.str] = None,
|
|
1806
1892
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1893
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1807
1894
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1808
1895
|
'''(experimental) The total number of records this application, operator or task has received per second.
|
|
1809
1896
|
|
|
@@ -1814,6 +1901,7 @@ class IApplication(
|
|
|
1814
1901
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1815
1902
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1816
1903
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1904
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1817
1905
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1818
1906
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1819
1907
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1821,6 +1909,7 @@ class IApplication(
|
|
|
1821
1909
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1822
1910
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1823
1911
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1912
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1824
1913
|
|
|
1825
1914
|
:default: - average over 5 minutes
|
|
1826
1915
|
|
|
@@ -1835,6 +1924,7 @@ class IApplication(
|
|
|
1835
1924
|
account: typing.Optional[builtins.str] = None,
|
|
1836
1925
|
color: typing.Optional[builtins.str] = None,
|
|
1837
1926
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1927
|
+
id: typing.Optional[builtins.str] = None,
|
|
1838
1928
|
label: typing.Optional[builtins.str] = None,
|
|
1839
1929
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1840
1930
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1842,6 +1932,7 @@ class IApplication(
|
|
|
1842
1932
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1843
1933
|
statistic: typing.Optional[builtins.str] = None,
|
|
1844
1934
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1935
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1845
1936
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1846
1937
|
'''(experimental) The total number of records this application, operator or task has emitted.
|
|
1847
1938
|
|
|
@@ -1852,6 +1943,7 @@ class IApplication(
|
|
|
1852
1943
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1853
1944
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1854
1945
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1946
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1855
1947
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1856
1948
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1857
1949
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1859,6 +1951,7 @@ class IApplication(
|
|
|
1859
1951
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1860
1952
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1861
1953
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1954
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1862
1955
|
|
|
1863
1956
|
:default: - average over 5 minutes
|
|
1864
1957
|
|
|
@@ -1873,6 +1966,7 @@ class IApplication(
|
|
|
1873
1966
|
account: typing.Optional[builtins.str] = None,
|
|
1874
1967
|
color: typing.Optional[builtins.str] = None,
|
|
1875
1968
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1969
|
+
id: typing.Optional[builtins.str] = None,
|
|
1876
1970
|
label: typing.Optional[builtins.str] = None,
|
|
1877
1971
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1878
1972
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1880,6 +1974,7 @@ class IApplication(
|
|
|
1880
1974
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1881
1975
|
statistic: typing.Optional[builtins.str] = None,
|
|
1882
1976
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1977
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1883
1978
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1884
1979
|
'''(experimental) The total number of records this application, operator or task has emitted per second.
|
|
1885
1980
|
|
|
@@ -1890,6 +1985,7 @@ class IApplication(
|
|
|
1890
1985
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1891
1986
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1892
1987
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1988
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1893
1989
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1894
1990
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1895
1991
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1897,6 +1993,7 @@ class IApplication(
|
|
|
1897
1993
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1898
1994
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1899
1995
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1996
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1900
1997
|
|
|
1901
1998
|
:default: - average over 5 minutes
|
|
1902
1999
|
|
|
@@ -1911,6 +2008,7 @@ class IApplication(
|
|
|
1911
2008
|
account: typing.Optional[builtins.str] = None,
|
|
1912
2009
|
color: typing.Optional[builtins.str] = None,
|
|
1913
2010
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2011
|
+
id: typing.Optional[builtins.str] = None,
|
|
1914
2012
|
label: typing.Optional[builtins.str] = None,
|
|
1915
2013
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1916
2014
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1918,6 +2016,7 @@ class IApplication(
|
|
|
1918
2016
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1919
2017
|
statistic: typing.Optional[builtins.str] = None,
|
|
1920
2018
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2019
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1921
2020
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1922
2021
|
'''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
|
|
1923
2022
|
|
|
@@ -1928,6 +2027,7 @@ class IApplication(
|
|
|
1928
2027
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1929
2028
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1930
2029
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2030
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1931
2031
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1932
2032
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1933
2033
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1935,6 +2035,7 @@ class IApplication(
|
|
|
1935
2035
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1936
2036
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1937
2037
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2038
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1938
2039
|
|
|
1939
2040
|
:default: - sum over 5 minutes
|
|
1940
2041
|
|
|
@@ -1949,6 +2050,7 @@ class IApplication(
|
|
|
1949
2050
|
account: typing.Optional[builtins.str] = None,
|
|
1950
2051
|
color: typing.Optional[builtins.str] = None,
|
|
1951
2052
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2053
|
+
id: typing.Optional[builtins.str] = None,
|
|
1952
2054
|
label: typing.Optional[builtins.str] = None,
|
|
1953
2055
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1954
2056
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1956,6 +2058,7 @@ class IApplication(
|
|
|
1956
2058
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1957
2059
|
statistic: typing.Optional[builtins.str] = None,
|
|
1958
2060
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2061
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1959
2062
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1960
2063
|
'''(experimental) The total time spent performing old garbage collection operations.
|
|
1961
2064
|
|
|
@@ -1966,6 +2069,7 @@ class IApplication(
|
|
|
1966
2069
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1967
2070
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
1968
2071
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2072
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
1969
2073
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
1970
2074
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1971
2075
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1973,6 +2077,7 @@ class IApplication(
|
|
|
1973
2077
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1974
2078
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
1975
2079
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2080
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
1976
2081
|
|
|
1977
2082
|
:default: - sum over 5 minutes
|
|
1978
2083
|
|
|
@@ -1987,6 +2092,7 @@ class IApplication(
|
|
|
1987
2092
|
account: typing.Optional[builtins.str] = None,
|
|
1988
2093
|
color: typing.Optional[builtins.str] = None,
|
|
1989
2094
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2095
|
+
id: typing.Optional[builtins.str] = None,
|
|
1990
2096
|
label: typing.Optional[builtins.str] = None,
|
|
1991
2097
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1992
2098
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1994,6 +2100,7 @@ class IApplication(
|
|
|
1994
2100
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1995
2101
|
statistic: typing.Optional[builtins.str] = None,
|
|
1996
2102
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2103
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1997
2104
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1998
2105
|
'''(experimental) The total number of live threads used by the application.
|
|
1999
2106
|
|
|
@@ -2004,6 +2111,7 @@ class IApplication(
|
|
|
2004
2111
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2005
2112
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2006
2113
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2114
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2007
2115
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2008
2116
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2009
2117
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2011,6 +2119,7 @@ class IApplication(
|
|
|
2011
2119
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2012
2120
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2013
2121
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2122
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2014
2123
|
|
|
2015
2124
|
:default: - average over 5 minutes
|
|
2016
2125
|
|
|
@@ -2025,6 +2134,7 @@ class IApplication(
|
|
|
2025
2134
|
account: typing.Optional[builtins.str] = None,
|
|
2026
2135
|
color: typing.Optional[builtins.str] = None,
|
|
2027
2136
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2137
|
+
id: typing.Optional[builtins.str] = None,
|
|
2028
2138
|
label: typing.Optional[builtins.str] = None,
|
|
2029
2139
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2030
2140
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2032,6 +2142,7 @@ class IApplication(
|
|
|
2032
2142
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2033
2143
|
statistic: typing.Optional[builtins.str] = None,
|
|
2034
2144
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2145
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2035
2146
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2036
2147
|
'''(experimental) The time that the job has been running without interruption.
|
|
2037
2148
|
|
|
@@ -2042,6 +2153,7 @@ class IApplication(
|
|
|
2042
2153
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2043
2154
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2044
2155
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2156
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2045
2157
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2046
2158
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2047
2159
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2049,6 +2161,7 @@ class IApplication(
|
|
|
2049
2161
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2050
2162
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2051
2163
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2164
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2052
2165
|
|
|
2053
2166
|
:default: - sample count over 5 minutes
|
|
2054
2167
|
|
|
@@ -2122,6 +2235,7 @@ class _IApplicationProxy(
|
|
|
2122
2235
|
account: typing.Optional[builtins.str] = None,
|
|
2123
2236
|
color: typing.Optional[builtins.str] = None,
|
|
2124
2237
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2238
|
+
id: typing.Optional[builtins.str] = None,
|
|
2125
2239
|
label: typing.Optional[builtins.str] = None,
|
|
2126
2240
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2127
2241
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2129,6 +2243,7 @@ class _IApplicationProxy(
|
|
|
2129
2243
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2130
2244
|
statistic: typing.Optional[builtins.str] = None,
|
|
2131
2245
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2246
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2132
2247
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2133
2248
|
'''(experimental) Return a CloudWatch metric associated with this Flink application.
|
|
2134
2249
|
|
|
@@ -2136,6 +2251,7 @@ class _IApplicationProxy(
|
|
|
2136
2251
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2137
2252
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2138
2253
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2254
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2139
2255
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2140
2256
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2141
2257
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2143,6 +2259,7 @@ class _IApplicationProxy(
|
|
|
2143
2259
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2144
2260
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2145
2261
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2262
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2146
2263
|
|
|
2147
2264
|
:stability: experimental
|
|
2148
2265
|
'''
|
|
@@ -2153,6 +2270,7 @@ class _IApplicationProxy(
|
|
|
2153
2270
|
account=account,
|
|
2154
2271
|
color=color,
|
|
2155
2272
|
dimensions_map=dimensions_map,
|
|
2273
|
+
id=id,
|
|
2156
2274
|
label=label,
|
|
2157
2275
|
period=period,
|
|
2158
2276
|
region=region,
|
|
@@ -2160,6 +2278,7 @@ class _IApplicationProxy(
|
|
|
2160
2278
|
stack_region=stack_region,
|
|
2161
2279
|
statistic=statistic,
|
|
2162
2280
|
unit=unit,
|
|
2281
|
+
visible=visible,
|
|
2163
2282
|
)
|
|
2164
2283
|
|
|
2165
2284
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -2171,6 +2290,7 @@ class _IApplicationProxy(
|
|
|
2171
2290
|
account: typing.Optional[builtins.str] = None,
|
|
2172
2291
|
color: typing.Optional[builtins.str] = None,
|
|
2173
2292
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2293
|
+
id: typing.Optional[builtins.str] = None,
|
|
2174
2294
|
label: typing.Optional[builtins.str] = None,
|
|
2175
2295
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2176
2296
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2178,6 +2298,7 @@ class _IApplicationProxy(
|
|
|
2178
2298
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2179
2299
|
statistic: typing.Optional[builtins.str] = None,
|
|
2180
2300
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2301
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2181
2302
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2182
2303
|
'''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
|
|
2183
2304
|
|
|
@@ -2188,6 +2309,7 @@ class _IApplicationProxy(
|
|
|
2188
2309
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2189
2310
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2190
2311
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2312
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2191
2313
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2192
2314
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2193
2315
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2195,6 +2317,7 @@ class _IApplicationProxy(
|
|
|
2195
2317
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2196
2318
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2197
2319
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2320
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2198
2321
|
|
|
2199
2322
|
:default: - average over 5 minutes
|
|
2200
2323
|
|
|
@@ -2204,6 +2327,7 @@ class _IApplicationProxy(
|
|
|
2204
2327
|
account=account,
|
|
2205
2328
|
color=color,
|
|
2206
2329
|
dimensions_map=dimensions_map,
|
|
2330
|
+
id=id,
|
|
2207
2331
|
label=label,
|
|
2208
2332
|
period=period,
|
|
2209
2333
|
region=region,
|
|
@@ -2211,6 +2335,7 @@ class _IApplicationProxy(
|
|
|
2211
2335
|
stack_region=stack_region,
|
|
2212
2336
|
statistic=statistic,
|
|
2213
2337
|
unit=unit,
|
|
2338
|
+
visible=visible,
|
|
2214
2339
|
)
|
|
2215
2340
|
|
|
2216
2341
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBackPressuredTimeMsPerSecond", [props]))
|
|
@@ -2222,6 +2347,7 @@ class _IApplicationProxy(
|
|
|
2222
2347
|
account: typing.Optional[builtins.str] = None,
|
|
2223
2348
|
color: typing.Optional[builtins.str] = None,
|
|
2224
2349
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2350
|
+
id: typing.Optional[builtins.str] = None,
|
|
2225
2351
|
label: typing.Optional[builtins.str] = None,
|
|
2226
2352
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2227
2353
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2229,6 +2355,7 @@ class _IApplicationProxy(
|
|
|
2229
2355
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2230
2356
|
statistic: typing.Optional[builtins.str] = None,
|
|
2231
2357
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2358
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2232
2359
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2233
2360
|
'''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
|
|
2234
2361
|
|
|
@@ -2242,6 +2369,7 @@ class _IApplicationProxy(
|
|
|
2242
2369
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2243
2370
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2244
2371
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2372
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2245
2373
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2246
2374
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2247
2375
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2249,6 +2377,7 @@ class _IApplicationProxy(
|
|
|
2249
2377
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2250
2378
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2251
2379
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2380
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2252
2381
|
|
|
2253
2382
|
:default: - average over 5 minutes
|
|
2254
2383
|
|
|
@@ -2258,6 +2387,7 @@ class _IApplicationProxy(
|
|
|
2258
2387
|
account=account,
|
|
2259
2388
|
color=color,
|
|
2260
2389
|
dimensions_map=dimensions_map,
|
|
2390
|
+
id=id,
|
|
2261
2391
|
label=label,
|
|
2262
2392
|
period=period,
|
|
2263
2393
|
region=region,
|
|
@@ -2265,6 +2395,7 @@ class _IApplicationProxy(
|
|
|
2265
2395
|
stack_region=stack_region,
|
|
2266
2396
|
statistic=statistic,
|
|
2267
2397
|
unit=unit,
|
|
2398
|
+
visible=visible,
|
|
2268
2399
|
)
|
|
2269
2400
|
|
|
2270
2401
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBusyTimePerMsPerSecond", [props]))
|
|
@@ -2276,6 +2407,7 @@ class _IApplicationProxy(
|
|
|
2276
2407
|
account: typing.Optional[builtins.str] = None,
|
|
2277
2408
|
color: typing.Optional[builtins.str] = None,
|
|
2278
2409
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2410
|
+
id: typing.Optional[builtins.str] = None,
|
|
2279
2411
|
label: typing.Optional[builtins.str] = None,
|
|
2280
2412
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2281
2413
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2283,6 +2415,7 @@ class _IApplicationProxy(
|
|
|
2283
2415
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2284
2416
|
statistic: typing.Optional[builtins.str] = None,
|
|
2285
2417
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2418
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2286
2419
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2287
2420
|
'''(experimental) The overall percentage of CPU utilization across task managers.
|
|
2288
2421
|
|
|
@@ -2297,6 +2430,7 @@ class _IApplicationProxy(
|
|
|
2297
2430
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2298
2431
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2299
2432
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2433
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2300
2434
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2301
2435
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2302
2436
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2304,6 +2438,7 @@ class _IApplicationProxy(
|
|
|
2304
2438
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2305
2439
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2306
2440
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2441
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2307
2442
|
|
|
2308
2443
|
:default: - average over 5 minutes
|
|
2309
2444
|
|
|
@@ -2313,6 +2448,7 @@ class _IApplicationProxy(
|
|
|
2313
2448
|
account=account,
|
|
2314
2449
|
color=color,
|
|
2315
2450
|
dimensions_map=dimensions_map,
|
|
2451
|
+
id=id,
|
|
2316
2452
|
label=label,
|
|
2317
2453
|
period=period,
|
|
2318
2454
|
region=region,
|
|
@@ -2320,6 +2456,7 @@ class _IApplicationProxy(
|
|
|
2320
2456
|
stack_region=stack_region,
|
|
2321
2457
|
statistic=statistic,
|
|
2322
2458
|
unit=unit,
|
|
2459
|
+
visible=visible,
|
|
2323
2460
|
)
|
|
2324
2461
|
|
|
2325
2462
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCpuUtilization", [props]))
|
|
@@ -2331,6 +2468,7 @@ class _IApplicationProxy(
|
|
|
2331
2468
|
account: typing.Optional[builtins.str] = None,
|
|
2332
2469
|
color: typing.Optional[builtins.str] = None,
|
|
2333
2470
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2471
|
+
id: typing.Optional[builtins.str] = None,
|
|
2334
2472
|
label: typing.Optional[builtins.str] = None,
|
|
2335
2473
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2336
2474
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2338,6 +2476,7 @@ class _IApplicationProxy(
|
|
|
2338
2476
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2339
2477
|
statistic: typing.Optional[builtins.str] = None,
|
|
2340
2478
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2479
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2341
2480
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2342
2481
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
2343
2482
|
|
|
@@ -2348,6 +2487,7 @@ class _IApplicationProxy(
|
|
|
2348
2487
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2349
2488
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2350
2489
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2490
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2351
2491
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2352
2492
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2353
2493
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2355,6 +2495,7 @@ class _IApplicationProxy(
|
|
|
2355
2495
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2356
2496
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2357
2497
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2498
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2358
2499
|
|
|
2359
2500
|
:default: - maximum over 5 minutes
|
|
2360
2501
|
|
|
@@ -2364,6 +2505,7 @@ class _IApplicationProxy(
|
|
|
2364
2505
|
account=account,
|
|
2365
2506
|
color=color,
|
|
2366
2507
|
dimensions_map=dimensions_map,
|
|
2508
|
+
id=id,
|
|
2367
2509
|
label=label,
|
|
2368
2510
|
period=period,
|
|
2369
2511
|
region=region,
|
|
@@ -2371,6 +2513,7 @@ class _IApplicationProxy(
|
|
|
2371
2513
|
stack_region=stack_region,
|
|
2372
2514
|
statistic=statistic,
|
|
2373
2515
|
unit=unit,
|
|
2516
|
+
visible=visible,
|
|
2374
2517
|
)
|
|
2375
2518
|
|
|
2376
2519
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentInputWatermark", [props]))
|
|
@@ -2382,6 +2525,7 @@ class _IApplicationProxy(
|
|
|
2382
2525
|
account: typing.Optional[builtins.str] = None,
|
|
2383
2526
|
color: typing.Optional[builtins.str] = None,
|
|
2384
2527
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2528
|
+
id: typing.Optional[builtins.str] = None,
|
|
2385
2529
|
label: typing.Optional[builtins.str] = None,
|
|
2386
2530
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2387
2531
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2389,6 +2533,7 @@ class _IApplicationProxy(
|
|
|
2389
2533
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2390
2534
|
statistic: typing.Optional[builtins.str] = None,
|
|
2391
2535
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2536
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2392
2537
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2393
2538
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
2394
2539
|
|
|
@@ -2399,6 +2544,7 @@ class _IApplicationProxy(
|
|
|
2399
2544
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2400
2545
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2401
2546
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2547
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2402
2548
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2403
2549
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2404
2550
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2406,6 +2552,7 @@ class _IApplicationProxy(
|
|
|
2406
2552
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2407
2553
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2408
2554
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2555
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2409
2556
|
|
|
2410
2557
|
:default: - maximum over 5 minutes
|
|
2411
2558
|
|
|
@@ -2415,6 +2562,7 @@ class _IApplicationProxy(
|
|
|
2415
2562
|
account=account,
|
|
2416
2563
|
color=color,
|
|
2417
2564
|
dimensions_map=dimensions_map,
|
|
2565
|
+
id=id,
|
|
2418
2566
|
label=label,
|
|
2419
2567
|
period=period,
|
|
2420
2568
|
region=region,
|
|
@@ -2422,6 +2570,7 @@ class _IApplicationProxy(
|
|
|
2422
2570
|
stack_region=stack_region,
|
|
2423
2571
|
statistic=statistic,
|
|
2424
2572
|
unit=unit,
|
|
2573
|
+
visible=visible,
|
|
2425
2574
|
)
|
|
2426
2575
|
|
|
2427
2576
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentOutputWatermark", [props]))
|
|
@@ -2433,6 +2582,7 @@ class _IApplicationProxy(
|
|
|
2433
2582
|
account: typing.Optional[builtins.str] = None,
|
|
2434
2583
|
color: typing.Optional[builtins.str] = None,
|
|
2435
2584
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2585
|
+
id: typing.Optional[builtins.str] = None,
|
|
2436
2586
|
label: typing.Optional[builtins.str] = None,
|
|
2437
2587
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2438
2588
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2440,6 +2590,7 @@ class _IApplicationProxy(
|
|
|
2440
2590
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2441
2591
|
statistic: typing.Optional[builtins.str] = None,
|
|
2442
2592
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2593
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2443
2594
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2444
2595
|
'''(experimental) The time elapsed during an outage for failing/recovering jobs.
|
|
2445
2596
|
|
|
@@ -2450,6 +2601,7 @@ class _IApplicationProxy(
|
|
|
2450
2601
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2451
2602
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2452
2603
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2604
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2453
2605
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2454
2606
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2455
2607
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2457,6 +2609,7 @@ class _IApplicationProxy(
|
|
|
2457
2609
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2458
2610
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2459
2611
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2612
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2460
2613
|
|
|
2461
2614
|
:default: - average over 5 minutes
|
|
2462
2615
|
|
|
@@ -2466,6 +2619,7 @@ class _IApplicationProxy(
|
|
|
2466
2619
|
account=account,
|
|
2467
2620
|
color=color,
|
|
2468
2621
|
dimensions_map=dimensions_map,
|
|
2622
|
+
id=id,
|
|
2469
2623
|
label=label,
|
|
2470
2624
|
period=period,
|
|
2471
2625
|
region=region,
|
|
@@ -2473,6 +2627,7 @@ class _IApplicationProxy(
|
|
|
2473
2627
|
stack_region=stack_region,
|
|
2474
2628
|
statistic=statistic,
|
|
2475
2629
|
unit=unit,
|
|
2630
|
+
visible=visible,
|
|
2476
2631
|
)
|
|
2477
2632
|
|
|
2478
2633
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricDowntime", [props]))
|
|
@@ -2484,6 +2639,7 @@ class _IApplicationProxy(
|
|
|
2484
2639
|
account: typing.Optional[builtins.str] = None,
|
|
2485
2640
|
color: typing.Optional[builtins.str] = None,
|
|
2486
2641
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2642
|
+
id: typing.Optional[builtins.str] = None,
|
|
2487
2643
|
label: typing.Optional[builtins.str] = None,
|
|
2488
2644
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2489
2645
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2491,6 +2647,7 @@ class _IApplicationProxy(
|
|
|
2491
2647
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2492
2648
|
statistic: typing.Optional[builtins.str] = None,
|
|
2493
2649
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2650
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2494
2651
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2495
2652
|
'''(experimental) The total number of times this job has fully restarted since it was submitted.
|
|
2496
2653
|
|
|
@@ -2503,6 +2660,7 @@ class _IApplicationProxy(
|
|
|
2503
2660
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2504
2661
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2505
2662
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2663
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2506
2664
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2507
2665
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2508
2666
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2510,6 +2668,7 @@ class _IApplicationProxy(
|
|
|
2510
2668
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2511
2669
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2512
2670
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2671
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2513
2672
|
|
|
2514
2673
|
:default: - sum over 5 minutes
|
|
2515
2674
|
|
|
@@ -2519,6 +2678,7 @@ class _IApplicationProxy(
|
|
|
2519
2678
|
account=account,
|
|
2520
2679
|
color=color,
|
|
2521
2680
|
dimensions_map=dimensions_map,
|
|
2681
|
+
id=id,
|
|
2522
2682
|
label=label,
|
|
2523
2683
|
period=period,
|
|
2524
2684
|
region=region,
|
|
@@ -2526,6 +2686,7 @@ class _IApplicationProxy(
|
|
|
2526
2686
|
stack_region=stack_region,
|
|
2527
2687
|
statistic=statistic,
|
|
2528
2688
|
unit=unit,
|
|
2689
|
+
visible=visible,
|
|
2529
2690
|
)
|
|
2530
2691
|
|
|
2531
2692
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricFullRestarts", [props]))
|
|
@@ -2537,6 +2698,7 @@ class _IApplicationProxy(
|
|
|
2537
2698
|
account: typing.Optional[builtins.str] = None,
|
|
2538
2699
|
color: typing.Optional[builtins.str] = None,
|
|
2539
2700
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2701
|
+
id: typing.Optional[builtins.str] = None,
|
|
2540
2702
|
label: typing.Optional[builtins.str] = None,
|
|
2541
2703
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2542
2704
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2544,6 +2706,7 @@ class _IApplicationProxy(
|
|
|
2544
2706
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2545
2707
|
statistic: typing.Optional[builtins.str] = None,
|
|
2546
2708
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2709
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2547
2710
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2548
2711
|
'''(experimental) Overall heap memory utilization across task managers.
|
|
2549
2712
|
|
|
@@ -2558,6 +2721,7 @@ class _IApplicationProxy(
|
|
|
2558
2721
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2559
2722
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2560
2723
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2724
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2561
2725
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2562
2726
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2563
2727
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2565,6 +2729,7 @@ class _IApplicationProxy(
|
|
|
2565
2729
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2566
2730
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2567
2731
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2732
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2568
2733
|
|
|
2569
2734
|
:default: - average over 5 minutes
|
|
2570
2735
|
|
|
@@ -2574,6 +2739,7 @@ class _IApplicationProxy(
|
|
|
2574
2739
|
account=account,
|
|
2575
2740
|
color=color,
|
|
2576
2741
|
dimensions_map=dimensions_map,
|
|
2742
|
+
id=id,
|
|
2577
2743
|
label=label,
|
|
2578
2744
|
period=period,
|
|
2579
2745
|
region=region,
|
|
@@ -2581,6 +2747,7 @@ class _IApplicationProxy(
|
|
|
2581
2747
|
stack_region=stack_region,
|
|
2582
2748
|
statistic=statistic,
|
|
2583
2749
|
unit=unit,
|
|
2750
|
+
visible=visible,
|
|
2584
2751
|
)
|
|
2585
2752
|
|
|
2586
2753
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricHeapMemoryUtilization", [props]))
|
|
@@ -2592,6 +2759,7 @@ class _IApplicationProxy(
|
|
|
2592
2759
|
account: typing.Optional[builtins.str] = None,
|
|
2593
2760
|
color: typing.Optional[builtins.str] = None,
|
|
2594
2761
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2762
|
+
id: typing.Optional[builtins.str] = None,
|
|
2595
2763
|
label: typing.Optional[builtins.str] = None,
|
|
2596
2764
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2597
2765
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2599,6 +2767,7 @@ class _IApplicationProxy(
|
|
|
2599
2767
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2600
2768
|
statistic: typing.Optional[builtins.str] = None,
|
|
2601
2769
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2770
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2602
2771
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2603
2772
|
'''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
|
|
2604
2773
|
|
|
@@ -2612,6 +2781,7 @@ class _IApplicationProxy(
|
|
|
2612
2781
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2613
2782
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2614
2783
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2784
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2615
2785
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2616
2786
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2617
2787
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2619,6 +2789,7 @@ class _IApplicationProxy(
|
|
|
2619
2789
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2620
2790
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2621
2791
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2792
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2622
2793
|
|
|
2623
2794
|
:default: - average over 5 minutes
|
|
2624
2795
|
|
|
@@ -2628,6 +2799,7 @@ class _IApplicationProxy(
|
|
|
2628
2799
|
account=account,
|
|
2629
2800
|
color=color,
|
|
2630
2801
|
dimensions_map=dimensions_map,
|
|
2802
|
+
id=id,
|
|
2631
2803
|
label=label,
|
|
2632
2804
|
period=period,
|
|
2633
2805
|
region=region,
|
|
@@ -2635,6 +2807,7 @@ class _IApplicationProxy(
|
|
|
2635
2807
|
stack_region=stack_region,
|
|
2636
2808
|
statistic=statistic,
|
|
2637
2809
|
unit=unit,
|
|
2810
|
+
visible=visible,
|
|
2638
2811
|
)
|
|
2639
2812
|
|
|
2640
2813
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricIdleTimeMsPerSecond", [props]))
|
|
@@ -2646,6 +2819,7 @@ class _IApplicationProxy(
|
|
|
2646
2819
|
account: typing.Optional[builtins.str] = None,
|
|
2647
2820
|
color: typing.Optional[builtins.str] = None,
|
|
2648
2821
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2822
|
+
id: typing.Optional[builtins.str] = None,
|
|
2649
2823
|
label: typing.Optional[builtins.str] = None,
|
|
2650
2824
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2651
2825
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2653,6 +2827,7 @@ class _IApplicationProxy(
|
|
|
2653
2827
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2654
2828
|
statistic: typing.Optional[builtins.str] = None,
|
|
2655
2829
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2830
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2656
2831
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2657
2832
|
'''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
|
|
2658
2833
|
|
|
@@ -2666,6 +2841,7 @@ class _IApplicationProxy(
|
|
|
2666
2841
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2667
2842
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2668
2843
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2844
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2669
2845
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2670
2846
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2671
2847
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2673,6 +2849,7 @@ class _IApplicationProxy(
|
|
|
2673
2849
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2674
2850
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2675
2851
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2852
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2676
2853
|
|
|
2677
2854
|
:default: - average over 5 minutes
|
|
2678
2855
|
|
|
@@ -2682,6 +2859,7 @@ class _IApplicationProxy(
|
|
|
2682
2859
|
account=account,
|
|
2683
2860
|
color=color,
|
|
2684
2861
|
dimensions_map=dimensions_map,
|
|
2862
|
+
id=id,
|
|
2685
2863
|
label=label,
|
|
2686
2864
|
period=period,
|
|
2687
2865
|
region=region,
|
|
@@ -2689,6 +2867,7 @@ class _IApplicationProxy(
|
|
|
2689
2867
|
stack_region=stack_region,
|
|
2690
2868
|
statistic=statistic,
|
|
2691
2869
|
unit=unit,
|
|
2870
|
+
visible=visible,
|
|
2692
2871
|
)
|
|
2693
2872
|
|
|
2694
2873
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricKpus", [props]))
|
|
@@ -2700,6 +2879,7 @@ class _IApplicationProxy(
|
|
|
2700
2879
|
account: typing.Optional[builtins.str] = None,
|
|
2701
2880
|
color: typing.Optional[builtins.str] = None,
|
|
2702
2881
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2882
|
+
id: typing.Optional[builtins.str] = None,
|
|
2703
2883
|
label: typing.Optional[builtins.str] = None,
|
|
2704
2884
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2705
2885
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2707,6 +2887,7 @@ class _IApplicationProxy(
|
|
|
2707
2887
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2708
2888
|
statistic: typing.Optional[builtins.str] = None,
|
|
2709
2889
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2890
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2710
2891
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2711
2892
|
'''(experimental) The time it took to complete the last checkpoint.
|
|
2712
2893
|
|
|
@@ -2717,6 +2898,7 @@ class _IApplicationProxy(
|
|
|
2717
2898
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2718
2899
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2719
2900
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2901
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2720
2902
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2721
2903
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2722
2904
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2724,6 +2906,7 @@ class _IApplicationProxy(
|
|
|
2724
2906
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2725
2907
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2726
2908
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2909
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2727
2910
|
|
|
2728
2911
|
:default: - maximum over 5 minutes
|
|
2729
2912
|
|
|
@@ -2733,6 +2916,7 @@ class _IApplicationProxy(
|
|
|
2733
2916
|
account=account,
|
|
2734
2917
|
color=color,
|
|
2735
2918
|
dimensions_map=dimensions_map,
|
|
2919
|
+
id=id,
|
|
2736
2920
|
label=label,
|
|
2737
2921
|
period=period,
|
|
2738
2922
|
region=region,
|
|
@@ -2740,6 +2924,7 @@ class _IApplicationProxy(
|
|
|
2740
2924
|
stack_region=stack_region,
|
|
2741
2925
|
statistic=statistic,
|
|
2742
2926
|
unit=unit,
|
|
2927
|
+
visible=visible,
|
|
2743
2928
|
)
|
|
2744
2929
|
|
|
2745
2930
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointDuration", [props]))
|
|
@@ -2751,6 +2936,7 @@ class _IApplicationProxy(
|
|
|
2751
2936
|
account: typing.Optional[builtins.str] = None,
|
|
2752
2937
|
color: typing.Optional[builtins.str] = None,
|
|
2753
2938
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2939
|
+
id: typing.Optional[builtins.str] = None,
|
|
2754
2940
|
label: typing.Optional[builtins.str] = None,
|
|
2755
2941
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2756
2942
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2758,6 +2944,7 @@ class _IApplicationProxy(
|
|
|
2758
2944
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2759
2945
|
statistic: typing.Optional[builtins.str] = None,
|
|
2760
2946
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2947
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2761
2948
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2762
2949
|
'''(experimental) The total size of the last checkpoint.
|
|
2763
2950
|
|
|
@@ -2768,6 +2955,7 @@ class _IApplicationProxy(
|
|
|
2768
2955
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2769
2956
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2770
2957
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2958
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2771
2959
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2772
2960
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2773
2961
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2775,6 +2963,7 @@ class _IApplicationProxy(
|
|
|
2775
2963
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2776
2964
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2777
2965
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2966
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2778
2967
|
|
|
2779
2968
|
:default: - maximum over 5 minutes
|
|
2780
2969
|
|
|
@@ -2784,6 +2973,7 @@ class _IApplicationProxy(
|
|
|
2784
2973
|
account=account,
|
|
2785
2974
|
color=color,
|
|
2786
2975
|
dimensions_map=dimensions_map,
|
|
2976
|
+
id=id,
|
|
2787
2977
|
label=label,
|
|
2788
2978
|
period=period,
|
|
2789
2979
|
region=region,
|
|
@@ -2791,6 +2981,7 @@ class _IApplicationProxy(
|
|
|
2791
2981
|
stack_region=stack_region,
|
|
2792
2982
|
statistic=statistic,
|
|
2793
2983
|
unit=unit,
|
|
2984
|
+
visible=visible,
|
|
2794
2985
|
)
|
|
2795
2986
|
|
|
2796
2987
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointSize", [props]))
|
|
@@ -2802,6 +2993,7 @@ class _IApplicationProxy(
|
|
|
2802
2993
|
account: typing.Optional[builtins.str] = None,
|
|
2803
2994
|
color: typing.Optional[builtins.str] = None,
|
|
2804
2995
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2996
|
+
id: typing.Optional[builtins.str] = None,
|
|
2805
2997
|
label: typing.Optional[builtins.str] = None,
|
|
2806
2998
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2807
2999
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2809,6 +3001,7 @@ class _IApplicationProxy(
|
|
|
2809
3001
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2810
3002
|
statistic: typing.Optional[builtins.str] = None,
|
|
2811
3003
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3004
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2812
3005
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2813
3006
|
'''(experimental) The total amount of managed memory.
|
|
2814
3007
|
|
|
@@ -2819,6 +3012,7 @@ class _IApplicationProxy(
|
|
|
2819
3012
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2820
3013
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2821
3014
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3015
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2822
3016
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2823
3017
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2824
3018
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2826,6 +3020,7 @@ class _IApplicationProxy(
|
|
|
2826
3020
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2827
3021
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2828
3022
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3023
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2829
3024
|
|
|
2830
3025
|
:default: - average over 5 minutes
|
|
2831
3026
|
|
|
@@ -2835,6 +3030,7 @@ class _IApplicationProxy(
|
|
|
2835
3030
|
account=account,
|
|
2836
3031
|
color=color,
|
|
2837
3032
|
dimensions_map=dimensions_map,
|
|
3033
|
+
id=id,
|
|
2838
3034
|
label=label,
|
|
2839
3035
|
period=period,
|
|
2840
3036
|
region=region,
|
|
@@ -2842,6 +3038,7 @@ class _IApplicationProxy(
|
|
|
2842
3038
|
stack_region=stack_region,
|
|
2843
3039
|
statistic=statistic,
|
|
2844
3040
|
unit=unit,
|
|
3041
|
+
visible=visible,
|
|
2845
3042
|
)
|
|
2846
3043
|
|
|
2847
3044
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryTotal", [props]))
|
|
@@ -2853,6 +3050,7 @@ class _IApplicationProxy(
|
|
|
2853
3050
|
account: typing.Optional[builtins.str] = None,
|
|
2854
3051
|
color: typing.Optional[builtins.str] = None,
|
|
2855
3052
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3053
|
+
id: typing.Optional[builtins.str] = None,
|
|
2856
3054
|
label: typing.Optional[builtins.str] = None,
|
|
2857
3055
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2858
3056
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2860,6 +3058,7 @@ class _IApplicationProxy(
|
|
|
2860
3058
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2861
3059
|
statistic: typing.Optional[builtins.str] = None,
|
|
2862
3060
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3061
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2863
3062
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2864
3063
|
'''(experimental) The amount of managed memory currently used.
|
|
2865
3064
|
|
|
@@ -2870,6 +3069,7 @@ class _IApplicationProxy(
|
|
|
2870
3069
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2871
3070
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2872
3071
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3072
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2873
3073
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2874
3074
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2875
3075
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2877,6 +3077,7 @@ class _IApplicationProxy(
|
|
|
2877
3077
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2878
3078
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2879
3079
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3080
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2880
3081
|
|
|
2881
3082
|
:default: - average over 5 minutes
|
|
2882
3083
|
|
|
@@ -2886,6 +3087,7 @@ class _IApplicationProxy(
|
|
|
2886
3087
|
account=account,
|
|
2887
3088
|
color=color,
|
|
2888
3089
|
dimensions_map=dimensions_map,
|
|
3090
|
+
id=id,
|
|
2889
3091
|
label=label,
|
|
2890
3092
|
period=period,
|
|
2891
3093
|
region=region,
|
|
@@ -2893,6 +3095,7 @@ class _IApplicationProxy(
|
|
|
2893
3095
|
stack_region=stack_region,
|
|
2894
3096
|
statistic=statistic,
|
|
2895
3097
|
unit=unit,
|
|
3098
|
+
visible=visible,
|
|
2896
3099
|
)
|
|
2897
3100
|
|
|
2898
3101
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUsed", [props]))
|
|
@@ -2904,6 +3107,7 @@ class _IApplicationProxy(
|
|
|
2904
3107
|
account: typing.Optional[builtins.str] = None,
|
|
2905
3108
|
color: typing.Optional[builtins.str] = None,
|
|
2906
3109
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3110
|
+
id: typing.Optional[builtins.str] = None,
|
|
2907
3111
|
label: typing.Optional[builtins.str] = None,
|
|
2908
3112
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2909
3113
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2911,6 +3115,7 @@ class _IApplicationProxy(
|
|
|
2911
3115
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2912
3116
|
statistic: typing.Optional[builtins.str] = None,
|
|
2913
3117
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3118
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2914
3119
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2915
3120
|
'''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
|
|
2916
3121
|
|
|
@@ -2921,6 +3126,7 @@ class _IApplicationProxy(
|
|
|
2921
3126
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2922
3127
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2923
3128
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3129
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2924
3130
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2925
3131
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2926
3132
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2928,6 +3134,7 @@ class _IApplicationProxy(
|
|
|
2928
3134
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2929
3135
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2930
3136
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3137
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2931
3138
|
|
|
2932
3139
|
:default: - average over 5 minutes
|
|
2933
3140
|
|
|
@@ -2937,6 +3144,7 @@ class _IApplicationProxy(
|
|
|
2937
3144
|
account=account,
|
|
2938
3145
|
color=color,
|
|
2939
3146
|
dimensions_map=dimensions_map,
|
|
3147
|
+
id=id,
|
|
2940
3148
|
label=label,
|
|
2941
3149
|
period=period,
|
|
2942
3150
|
region=region,
|
|
@@ -2944,6 +3152,7 @@ class _IApplicationProxy(
|
|
|
2944
3152
|
stack_region=stack_region,
|
|
2945
3153
|
statistic=statistic,
|
|
2946
3154
|
unit=unit,
|
|
3155
|
+
visible=visible,
|
|
2947
3156
|
)
|
|
2948
3157
|
|
|
2949
3158
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUtilization", [props]))
|
|
@@ -2955,6 +3164,7 @@ class _IApplicationProxy(
|
|
|
2955
3164
|
account: typing.Optional[builtins.str] = None,
|
|
2956
3165
|
color: typing.Optional[builtins.str] = None,
|
|
2957
3166
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3167
|
+
id: typing.Optional[builtins.str] = None,
|
|
2958
3168
|
label: typing.Optional[builtins.str] = None,
|
|
2959
3169
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2960
3170
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2962,6 +3172,7 @@ class _IApplicationProxy(
|
|
|
2962
3172
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2963
3173
|
statistic: typing.Optional[builtins.str] = None,
|
|
2964
3174
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3175
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2965
3176
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2966
3177
|
'''(experimental) The number of times checkpointing has failed.
|
|
2967
3178
|
|
|
@@ -2972,6 +3183,7 @@ class _IApplicationProxy(
|
|
|
2972
3183
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2973
3184
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
2974
3185
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3186
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
2975
3187
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
2976
3188
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2977
3189
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2979,6 +3191,7 @@ class _IApplicationProxy(
|
|
|
2979
3191
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2980
3192
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
2981
3193
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3194
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
2982
3195
|
|
|
2983
3196
|
:default: - sum over 5 minutes
|
|
2984
3197
|
|
|
@@ -2988,6 +3201,7 @@ class _IApplicationProxy(
|
|
|
2988
3201
|
account=account,
|
|
2989
3202
|
color=color,
|
|
2990
3203
|
dimensions_map=dimensions_map,
|
|
3204
|
+
id=id,
|
|
2991
3205
|
label=label,
|
|
2992
3206
|
period=period,
|
|
2993
3207
|
region=region,
|
|
@@ -2995,6 +3209,7 @@ class _IApplicationProxy(
|
|
|
2995
3209
|
stack_region=stack_region,
|
|
2996
3210
|
statistic=statistic,
|
|
2997
3211
|
unit=unit,
|
|
3212
|
+
visible=visible,
|
|
2998
3213
|
)
|
|
2999
3214
|
|
|
3000
3215
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumberOfFailedCheckpoints", [props]))
|
|
@@ -3006,6 +3221,7 @@ class _IApplicationProxy(
|
|
|
3006
3221
|
account: typing.Optional[builtins.str] = None,
|
|
3007
3222
|
color: typing.Optional[builtins.str] = None,
|
|
3008
3223
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3224
|
+
id: typing.Optional[builtins.str] = None,
|
|
3009
3225
|
label: typing.Optional[builtins.str] = None,
|
|
3010
3226
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3011
3227
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3013,6 +3229,7 @@ class _IApplicationProxy(
|
|
|
3013
3229
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3014
3230
|
statistic: typing.Optional[builtins.str] = None,
|
|
3015
3231
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3232
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3016
3233
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3017
3234
|
'''(experimental) The number of records this operator or task has dropped due to arriving late.
|
|
3018
3235
|
|
|
@@ -3023,6 +3240,7 @@ class _IApplicationProxy(
|
|
|
3023
3240
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3024
3241
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3025
3242
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3243
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3026
3244
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3027
3245
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3028
3246
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3030,6 +3248,7 @@ class _IApplicationProxy(
|
|
|
3030
3248
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3031
3249
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3032
3250
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3251
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3033
3252
|
|
|
3034
3253
|
:default: - sum over 5 minutes
|
|
3035
3254
|
|
|
@@ -3039,6 +3258,7 @@ class _IApplicationProxy(
|
|
|
3039
3258
|
account=account,
|
|
3040
3259
|
color=color,
|
|
3041
3260
|
dimensions_map=dimensions_map,
|
|
3261
|
+
id=id,
|
|
3042
3262
|
label=label,
|
|
3043
3263
|
period=period,
|
|
3044
3264
|
region=region,
|
|
@@ -3046,6 +3266,7 @@ class _IApplicationProxy(
|
|
|
3046
3266
|
stack_region=stack_region,
|
|
3047
3267
|
statistic=statistic,
|
|
3048
3268
|
unit=unit,
|
|
3269
|
+
visible=visible,
|
|
3049
3270
|
)
|
|
3050
3271
|
|
|
3051
3272
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumLateRecordsDropped", [props]))
|
|
@@ -3057,6 +3278,7 @@ class _IApplicationProxy(
|
|
|
3057
3278
|
account: typing.Optional[builtins.str] = None,
|
|
3058
3279
|
color: typing.Optional[builtins.str] = None,
|
|
3059
3280
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3281
|
+
id: typing.Optional[builtins.str] = None,
|
|
3060
3282
|
label: typing.Optional[builtins.str] = None,
|
|
3061
3283
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3062
3284
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3064,6 +3286,7 @@ class _IApplicationProxy(
|
|
|
3064
3286
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3065
3287
|
statistic: typing.Optional[builtins.str] = None,
|
|
3066
3288
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3289
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3067
3290
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3068
3291
|
'''(experimental) The total number of records this application, operator, or task has received.
|
|
3069
3292
|
|
|
@@ -3074,6 +3297,7 @@ class _IApplicationProxy(
|
|
|
3074
3297
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3075
3298
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3076
3299
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3300
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3077
3301
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3078
3302
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3079
3303
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3081,6 +3305,7 @@ class _IApplicationProxy(
|
|
|
3081
3305
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3082
3306
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3083
3307
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3308
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3084
3309
|
|
|
3085
3310
|
:default: - average over 5 minutes
|
|
3086
3311
|
|
|
@@ -3090,6 +3315,7 @@ class _IApplicationProxy(
|
|
|
3090
3315
|
account=account,
|
|
3091
3316
|
color=color,
|
|
3092
3317
|
dimensions_map=dimensions_map,
|
|
3318
|
+
id=id,
|
|
3093
3319
|
label=label,
|
|
3094
3320
|
period=period,
|
|
3095
3321
|
region=region,
|
|
@@ -3097,6 +3323,7 @@ class _IApplicationProxy(
|
|
|
3097
3323
|
stack_region=stack_region,
|
|
3098
3324
|
statistic=statistic,
|
|
3099
3325
|
unit=unit,
|
|
3326
|
+
visible=visible,
|
|
3100
3327
|
)
|
|
3101
3328
|
|
|
3102
3329
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsIn", [props]))
|
|
@@ -3108,6 +3335,7 @@ class _IApplicationProxy(
|
|
|
3108
3335
|
account: typing.Optional[builtins.str] = None,
|
|
3109
3336
|
color: typing.Optional[builtins.str] = None,
|
|
3110
3337
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3338
|
+
id: typing.Optional[builtins.str] = None,
|
|
3111
3339
|
label: typing.Optional[builtins.str] = None,
|
|
3112
3340
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3113
3341
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3115,6 +3343,7 @@ class _IApplicationProxy(
|
|
|
3115
3343
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3116
3344
|
statistic: typing.Optional[builtins.str] = None,
|
|
3117
3345
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3346
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3118
3347
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3119
3348
|
'''(experimental) The total number of records this application, operator or task has received per second.
|
|
3120
3349
|
|
|
@@ -3125,6 +3354,7 @@ class _IApplicationProxy(
|
|
|
3125
3354
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3126
3355
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3127
3356
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3357
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3128
3358
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3129
3359
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3130
3360
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3132,6 +3362,7 @@ class _IApplicationProxy(
|
|
|
3132
3362
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3133
3363
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3134
3364
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3365
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3135
3366
|
|
|
3136
3367
|
:default: - average over 5 minutes
|
|
3137
3368
|
|
|
@@ -3141,6 +3372,7 @@ class _IApplicationProxy(
|
|
|
3141
3372
|
account=account,
|
|
3142
3373
|
color=color,
|
|
3143
3374
|
dimensions_map=dimensions_map,
|
|
3375
|
+
id=id,
|
|
3144
3376
|
label=label,
|
|
3145
3377
|
period=period,
|
|
3146
3378
|
region=region,
|
|
@@ -3148,6 +3380,7 @@ class _IApplicationProxy(
|
|
|
3148
3380
|
stack_region=stack_region,
|
|
3149
3381
|
statistic=statistic,
|
|
3150
3382
|
unit=unit,
|
|
3383
|
+
visible=visible,
|
|
3151
3384
|
)
|
|
3152
3385
|
|
|
3153
3386
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsInPerSecond", [props]))
|
|
@@ -3159,6 +3392,7 @@ class _IApplicationProxy(
|
|
|
3159
3392
|
account: typing.Optional[builtins.str] = None,
|
|
3160
3393
|
color: typing.Optional[builtins.str] = None,
|
|
3161
3394
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3395
|
+
id: typing.Optional[builtins.str] = None,
|
|
3162
3396
|
label: typing.Optional[builtins.str] = None,
|
|
3163
3397
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3164
3398
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3166,6 +3400,7 @@ class _IApplicationProxy(
|
|
|
3166
3400
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3167
3401
|
statistic: typing.Optional[builtins.str] = None,
|
|
3168
3402
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3403
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3169
3404
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3170
3405
|
'''(experimental) The total number of records this application, operator or task has emitted.
|
|
3171
3406
|
|
|
@@ -3176,6 +3411,7 @@ class _IApplicationProxy(
|
|
|
3176
3411
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3177
3412
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3178
3413
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3414
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3179
3415
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3180
3416
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3181
3417
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3183,6 +3419,7 @@ class _IApplicationProxy(
|
|
|
3183
3419
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3184
3420
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3185
3421
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3422
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3186
3423
|
|
|
3187
3424
|
:default: - average over 5 minutes
|
|
3188
3425
|
|
|
@@ -3192,6 +3429,7 @@ class _IApplicationProxy(
|
|
|
3192
3429
|
account=account,
|
|
3193
3430
|
color=color,
|
|
3194
3431
|
dimensions_map=dimensions_map,
|
|
3432
|
+
id=id,
|
|
3195
3433
|
label=label,
|
|
3196
3434
|
period=period,
|
|
3197
3435
|
region=region,
|
|
@@ -3199,6 +3437,7 @@ class _IApplicationProxy(
|
|
|
3199
3437
|
stack_region=stack_region,
|
|
3200
3438
|
statistic=statistic,
|
|
3201
3439
|
unit=unit,
|
|
3440
|
+
visible=visible,
|
|
3202
3441
|
)
|
|
3203
3442
|
|
|
3204
3443
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOut", [props]))
|
|
@@ -3210,6 +3449,7 @@ class _IApplicationProxy(
|
|
|
3210
3449
|
account: typing.Optional[builtins.str] = None,
|
|
3211
3450
|
color: typing.Optional[builtins.str] = None,
|
|
3212
3451
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3452
|
+
id: typing.Optional[builtins.str] = None,
|
|
3213
3453
|
label: typing.Optional[builtins.str] = None,
|
|
3214
3454
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3215
3455
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3217,6 +3457,7 @@ class _IApplicationProxy(
|
|
|
3217
3457
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3218
3458
|
statistic: typing.Optional[builtins.str] = None,
|
|
3219
3459
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3460
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3220
3461
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3221
3462
|
'''(experimental) The total number of records this application, operator or task has emitted per second.
|
|
3222
3463
|
|
|
@@ -3227,6 +3468,7 @@ class _IApplicationProxy(
|
|
|
3227
3468
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3228
3469
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3229
3470
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3471
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3230
3472
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3231
3473
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3232
3474
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3234,6 +3476,7 @@ class _IApplicationProxy(
|
|
|
3234
3476
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3235
3477
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3236
3478
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3479
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3237
3480
|
|
|
3238
3481
|
:default: - average over 5 minutes
|
|
3239
3482
|
|
|
@@ -3243,6 +3486,7 @@ class _IApplicationProxy(
|
|
|
3243
3486
|
account=account,
|
|
3244
3487
|
color=color,
|
|
3245
3488
|
dimensions_map=dimensions_map,
|
|
3489
|
+
id=id,
|
|
3246
3490
|
label=label,
|
|
3247
3491
|
period=period,
|
|
3248
3492
|
region=region,
|
|
@@ -3250,6 +3494,7 @@ class _IApplicationProxy(
|
|
|
3250
3494
|
stack_region=stack_region,
|
|
3251
3495
|
statistic=statistic,
|
|
3252
3496
|
unit=unit,
|
|
3497
|
+
visible=visible,
|
|
3253
3498
|
)
|
|
3254
3499
|
|
|
3255
3500
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOutPerSecond", [props]))
|
|
@@ -3261,6 +3506,7 @@ class _IApplicationProxy(
|
|
|
3261
3506
|
account: typing.Optional[builtins.str] = None,
|
|
3262
3507
|
color: typing.Optional[builtins.str] = None,
|
|
3263
3508
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3509
|
+
id: typing.Optional[builtins.str] = None,
|
|
3264
3510
|
label: typing.Optional[builtins.str] = None,
|
|
3265
3511
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3266
3512
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3268,6 +3514,7 @@ class _IApplicationProxy(
|
|
|
3268
3514
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3269
3515
|
statistic: typing.Optional[builtins.str] = None,
|
|
3270
3516
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3517
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3271
3518
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3272
3519
|
'''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
|
|
3273
3520
|
|
|
@@ -3278,6 +3525,7 @@ class _IApplicationProxy(
|
|
|
3278
3525
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3279
3526
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3280
3527
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3528
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3281
3529
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3282
3530
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3283
3531
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3285,6 +3533,7 @@ class _IApplicationProxy(
|
|
|
3285
3533
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3286
3534
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3287
3535
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3536
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3288
3537
|
|
|
3289
3538
|
:default: - sum over 5 minutes
|
|
3290
3539
|
|
|
@@ -3294,6 +3543,7 @@ class _IApplicationProxy(
|
|
|
3294
3543
|
account=account,
|
|
3295
3544
|
color=color,
|
|
3296
3545
|
dimensions_map=dimensions_map,
|
|
3546
|
+
id=id,
|
|
3297
3547
|
label=label,
|
|
3298
3548
|
period=period,
|
|
3299
3549
|
region=region,
|
|
@@ -3301,6 +3551,7 @@ class _IApplicationProxy(
|
|
|
3301
3551
|
stack_region=stack_region,
|
|
3302
3552
|
statistic=statistic,
|
|
3303
3553
|
unit=unit,
|
|
3554
|
+
visible=visible,
|
|
3304
3555
|
)
|
|
3305
3556
|
|
|
3306
3557
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCCount", [props]))
|
|
@@ -3312,6 +3563,7 @@ class _IApplicationProxy(
|
|
|
3312
3563
|
account: typing.Optional[builtins.str] = None,
|
|
3313
3564
|
color: typing.Optional[builtins.str] = None,
|
|
3314
3565
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3566
|
+
id: typing.Optional[builtins.str] = None,
|
|
3315
3567
|
label: typing.Optional[builtins.str] = None,
|
|
3316
3568
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3317
3569
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3319,6 +3571,7 @@ class _IApplicationProxy(
|
|
|
3319
3571
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3320
3572
|
statistic: typing.Optional[builtins.str] = None,
|
|
3321
3573
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3574
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3322
3575
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3323
3576
|
'''(experimental) The total time spent performing old garbage collection operations.
|
|
3324
3577
|
|
|
@@ -3329,6 +3582,7 @@ class _IApplicationProxy(
|
|
|
3329
3582
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3330
3583
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3331
3584
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3585
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3332
3586
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3333
3587
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3334
3588
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3336,6 +3590,7 @@ class _IApplicationProxy(
|
|
|
3336
3590
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3337
3591
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3338
3592
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3593
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3339
3594
|
|
|
3340
3595
|
:default: - sum over 5 minutes
|
|
3341
3596
|
|
|
@@ -3345,6 +3600,7 @@ class _IApplicationProxy(
|
|
|
3345
3600
|
account=account,
|
|
3346
3601
|
color=color,
|
|
3347
3602
|
dimensions_map=dimensions_map,
|
|
3603
|
+
id=id,
|
|
3348
3604
|
label=label,
|
|
3349
3605
|
period=period,
|
|
3350
3606
|
region=region,
|
|
@@ -3352,6 +3608,7 @@ class _IApplicationProxy(
|
|
|
3352
3608
|
stack_region=stack_region,
|
|
3353
3609
|
statistic=statistic,
|
|
3354
3610
|
unit=unit,
|
|
3611
|
+
visible=visible,
|
|
3355
3612
|
)
|
|
3356
3613
|
|
|
3357
3614
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCTime", [props]))
|
|
@@ -3363,6 +3620,7 @@ class _IApplicationProxy(
|
|
|
3363
3620
|
account: typing.Optional[builtins.str] = None,
|
|
3364
3621
|
color: typing.Optional[builtins.str] = None,
|
|
3365
3622
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3623
|
+
id: typing.Optional[builtins.str] = None,
|
|
3366
3624
|
label: typing.Optional[builtins.str] = None,
|
|
3367
3625
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3368
3626
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3370,6 +3628,7 @@ class _IApplicationProxy(
|
|
|
3370
3628
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3371
3629
|
statistic: typing.Optional[builtins.str] = None,
|
|
3372
3630
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3631
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3373
3632
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3374
3633
|
'''(experimental) The total number of live threads used by the application.
|
|
3375
3634
|
|
|
@@ -3380,6 +3639,7 @@ class _IApplicationProxy(
|
|
|
3380
3639
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3381
3640
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3382
3641
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3642
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3383
3643
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3384
3644
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3385
3645
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3387,6 +3647,7 @@ class _IApplicationProxy(
|
|
|
3387
3647
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3388
3648
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3389
3649
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3650
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3390
3651
|
|
|
3391
3652
|
:default: - average over 5 minutes
|
|
3392
3653
|
|
|
@@ -3396,6 +3657,7 @@ class _IApplicationProxy(
|
|
|
3396
3657
|
account=account,
|
|
3397
3658
|
color=color,
|
|
3398
3659
|
dimensions_map=dimensions_map,
|
|
3660
|
+
id=id,
|
|
3399
3661
|
label=label,
|
|
3400
3662
|
period=period,
|
|
3401
3663
|
region=region,
|
|
@@ -3403,6 +3665,7 @@ class _IApplicationProxy(
|
|
|
3403
3665
|
stack_region=stack_region,
|
|
3404
3666
|
statistic=statistic,
|
|
3405
3667
|
unit=unit,
|
|
3668
|
+
visible=visible,
|
|
3406
3669
|
)
|
|
3407
3670
|
|
|
3408
3671
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricThreadsCount", [props]))
|
|
@@ -3414,6 +3677,7 @@ class _IApplicationProxy(
|
|
|
3414
3677
|
account: typing.Optional[builtins.str] = None,
|
|
3415
3678
|
color: typing.Optional[builtins.str] = None,
|
|
3416
3679
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3680
|
+
id: typing.Optional[builtins.str] = None,
|
|
3417
3681
|
label: typing.Optional[builtins.str] = None,
|
|
3418
3682
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3419
3683
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3421,6 +3685,7 @@ class _IApplicationProxy(
|
|
|
3421
3685
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3422
3686
|
statistic: typing.Optional[builtins.str] = None,
|
|
3423
3687
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3688
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3424
3689
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3425
3690
|
'''(experimental) The time that the job has been running without interruption.
|
|
3426
3691
|
|
|
@@ -3431,6 +3696,7 @@ class _IApplicationProxy(
|
|
|
3431
3696
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3432
3697
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3433
3698
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3699
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3434
3700
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3435
3701
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3436
3702
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3438,6 +3704,7 @@ class _IApplicationProxy(
|
|
|
3438
3704
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3439
3705
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3440
3706
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3707
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3441
3708
|
|
|
3442
3709
|
:default: - sample count over 5 minutes
|
|
3443
3710
|
|
|
@@ -3447,6 +3714,7 @@ class _IApplicationProxy(
|
|
|
3447
3714
|
account=account,
|
|
3448
3715
|
color=color,
|
|
3449
3716
|
dimensions_map=dimensions_map,
|
|
3717
|
+
id=id,
|
|
3450
3718
|
label=label,
|
|
3451
3719
|
period=period,
|
|
3452
3720
|
region=region,
|
|
@@ -3454,6 +3722,7 @@ class _IApplicationProxy(
|
|
|
3454
3722
|
stack_region=stack_region,
|
|
3455
3723
|
statistic=statistic,
|
|
3456
3724
|
unit=unit,
|
|
3725
|
+
visible=visible,
|
|
3457
3726
|
)
|
|
3458
3727
|
|
|
3459
3728
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricUptime", [props]))
|
|
@@ -3711,6 +3980,42 @@ class Runtime(
|
|
|
3711
3980
|
'''
|
|
3712
3981
|
return typing.cast("Runtime", jsii.sget(cls, "FLINK_1_8"))
|
|
3713
3982
|
|
|
3983
|
+
@jsii.python.classproperty
|
|
3984
|
+
@jsii.member(jsii_name="SQL_1_0")
|
|
3985
|
+
def SQL_1_0(cls) -> "Runtime":
|
|
3986
|
+
'''(experimental) SQL Version 1.0.
|
|
3987
|
+
|
|
3988
|
+
:stability: experimental
|
|
3989
|
+
'''
|
|
3990
|
+
return typing.cast("Runtime", jsii.sget(cls, "SQL_1_0"))
|
|
3991
|
+
|
|
3992
|
+
@jsii.python.classproperty
|
|
3993
|
+
@jsii.member(jsii_name="ZEPPELIN_FLINK_1_0")
|
|
3994
|
+
def ZEPPELIN_FLINK_1_0(cls) -> "Runtime":
|
|
3995
|
+
'''(experimental) Zeppelin Flink Version 1.0.
|
|
3996
|
+
|
|
3997
|
+
:stability: experimental
|
|
3998
|
+
'''
|
|
3999
|
+
return typing.cast("Runtime", jsii.sget(cls, "ZEPPELIN_FLINK_1_0"))
|
|
4000
|
+
|
|
4001
|
+
@jsii.python.classproperty
|
|
4002
|
+
@jsii.member(jsii_name="ZEPPELIN_FLINK_2_0")
|
|
4003
|
+
def ZEPPELIN_FLINK_2_0(cls) -> "Runtime":
|
|
4004
|
+
'''(experimental) Zeppelin Flink Version 2.0.
|
|
4005
|
+
|
|
4006
|
+
:stability: experimental
|
|
4007
|
+
'''
|
|
4008
|
+
return typing.cast("Runtime", jsii.sget(cls, "ZEPPELIN_FLINK_2_0"))
|
|
4009
|
+
|
|
4010
|
+
@jsii.python.classproperty
|
|
4011
|
+
@jsii.member(jsii_name="ZEPPELIN_FLINK_3_0")
|
|
4012
|
+
def ZEPPELIN_FLINK_3_0(cls) -> "Runtime":
|
|
4013
|
+
'''(experimental) Zeppelin Flink Version 3.0.
|
|
4014
|
+
|
|
4015
|
+
:stability: experimental
|
|
4016
|
+
'''
|
|
4017
|
+
return typing.cast("Runtime", jsii.sget(cls, "ZEPPELIN_FLINK_3_0"))
|
|
4018
|
+
|
|
3714
4019
|
@builtins.property
|
|
3715
4020
|
@jsii.member(jsii_name="value")
|
|
3716
4021
|
def value(self) -> builtins.str:
|
|
@@ -3927,6 +4232,7 @@ class Application(
|
|
|
3927
4232
|
account: typing.Optional[builtins.str] = None,
|
|
3928
4233
|
color: typing.Optional[builtins.str] = None,
|
|
3929
4234
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4235
|
+
id: typing.Optional[builtins.str] = None,
|
|
3930
4236
|
label: typing.Optional[builtins.str] = None,
|
|
3931
4237
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3932
4238
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3934,6 +4240,7 @@ class Application(
|
|
|
3934
4240
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3935
4241
|
statistic: typing.Optional[builtins.str] = None,
|
|
3936
4242
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4243
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3937
4244
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3938
4245
|
'''(experimental) Return a CloudWatch metric associated with this Flink application.
|
|
3939
4246
|
|
|
@@ -3941,6 +4248,7 @@ class Application(
|
|
|
3941
4248
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3942
4249
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3943
4250
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4251
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3944
4252
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3945
4253
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3946
4254
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3948,6 +4256,7 @@ class Application(
|
|
|
3948
4256
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3949
4257
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3950
4258
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4259
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
3951
4260
|
|
|
3952
4261
|
:stability: experimental
|
|
3953
4262
|
'''
|
|
@@ -3958,6 +4267,7 @@ class Application(
|
|
|
3958
4267
|
account=account,
|
|
3959
4268
|
color=color,
|
|
3960
4269
|
dimensions_map=dimensions_map,
|
|
4270
|
+
id=id,
|
|
3961
4271
|
label=label,
|
|
3962
4272
|
period=period,
|
|
3963
4273
|
region=region,
|
|
@@ -3965,6 +4275,7 @@ class Application(
|
|
|
3965
4275
|
stack_region=stack_region,
|
|
3966
4276
|
statistic=statistic,
|
|
3967
4277
|
unit=unit,
|
|
4278
|
+
visible=visible,
|
|
3968
4279
|
)
|
|
3969
4280
|
|
|
3970
4281
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -3976,6 +4287,7 @@ class Application(
|
|
|
3976
4287
|
account: typing.Optional[builtins.str] = None,
|
|
3977
4288
|
color: typing.Optional[builtins.str] = None,
|
|
3978
4289
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4290
|
+
id: typing.Optional[builtins.str] = None,
|
|
3979
4291
|
label: typing.Optional[builtins.str] = None,
|
|
3980
4292
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3981
4293
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3983,6 +4295,7 @@ class Application(
|
|
|
3983
4295
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3984
4296
|
statistic: typing.Optional[builtins.str] = None,
|
|
3985
4297
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4298
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3986
4299
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3987
4300
|
'''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
|
|
3988
4301
|
|
|
@@ -3993,6 +4306,7 @@ class Application(
|
|
|
3993
4306
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3994
4307
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
3995
4308
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4309
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
3996
4310
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3997
4311
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3998
4312
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4000,6 +4314,7 @@ class Application(
|
|
|
4000
4314
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4001
4315
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4002
4316
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4317
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4003
4318
|
|
|
4004
4319
|
:default: - average over 5 minutes
|
|
4005
4320
|
|
|
@@ -4009,6 +4324,7 @@ class Application(
|
|
|
4009
4324
|
account=account,
|
|
4010
4325
|
color=color,
|
|
4011
4326
|
dimensions_map=dimensions_map,
|
|
4327
|
+
id=id,
|
|
4012
4328
|
label=label,
|
|
4013
4329
|
period=period,
|
|
4014
4330
|
region=region,
|
|
@@ -4016,6 +4332,7 @@ class Application(
|
|
|
4016
4332
|
stack_region=stack_region,
|
|
4017
4333
|
statistic=statistic,
|
|
4018
4334
|
unit=unit,
|
|
4335
|
+
visible=visible,
|
|
4019
4336
|
)
|
|
4020
4337
|
|
|
4021
4338
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBackPressuredTimeMsPerSecond", [props]))
|
|
@@ -4027,6 +4344,7 @@ class Application(
|
|
|
4027
4344
|
account: typing.Optional[builtins.str] = None,
|
|
4028
4345
|
color: typing.Optional[builtins.str] = None,
|
|
4029
4346
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4347
|
+
id: typing.Optional[builtins.str] = None,
|
|
4030
4348
|
label: typing.Optional[builtins.str] = None,
|
|
4031
4349
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4032
4350
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4034,6 +4352,7 @@ class Application(
|
|
|
4034
4352
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4035
4353
|
statistic: typing.Optional[builtins.str] = None,
|
|
4036
4354
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4355
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4037
4356
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4038
4357
|
'''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
|
|
4039
4358
|
|
|
@@ -4047,6 +4366,7 @@ class Application(
|
|
|
4047
4366
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4048
4367
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4049
4368
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4369
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4050
4370
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4051
4371
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4052
4372
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4054,6 +4374,7 @@ class Application(
|
|
|
4054
4374
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4055
4375
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4056
4376
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4377
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4057
4378
|
|
|
4058
4379
|
:default: - average over 5 minutes
|
|
4059
4380
|
|
|
@@ -4063,6 +4384,7 @@ class Application(
|
|
|
4063
4384
|
account=account,
|
|
4064
4385
|
color=color,
|
|
4065
4386
|
dimensions_map=dimensions_map,
|
|
4387
|
+
id=id,
|
|
4066
4388
|
label=label,
|
|
4067
4389
|
period=period,
|
|
4068
4390
|
region=region,
|
|
@@ -4070,6 +4392,7 @@ class Application(
|
|
|
4070
4392
|
stack_region=stack_region,
|
|
4071
4393
|
statistic=statistic,
|
|
4072
4394
|
unit=unit,
|
|
4395
|
+
visible=visible,
|
|
4073
4396
|
)
|
|
4074
4397
|
|
|
4075
4398
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBusyTimePerMsPerSecond", [props]))
|
|
@@ -4081,6 +4404,7 @@ class Application(
|
|
|
4081
4404
|
account: typing.Optional[builtins.str] = None,
|
|
4082
4405
|
color: typing.Optional[builtins.str] = None,
|
|
4083
4406
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4407
|
+
id: typing.Optional[builtins.str] = None,
|
|
4084
4408
|
label: typing.Optional[builtins.str] = None,
|
|
4085
4409
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4086
4410
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4088,6 +4412,7 @@ class Application(
|
|
|
4088
4412
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4089
4413
|
statistic: typing.Optional[builtins.str] = None,
|
|
4090
4414
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4415
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4091
4416
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4092
4417
|
'''(experimental) The overall percentage of CPU utilization across task managers.
|
|
4093
4418
|
|
|
@@ -4102,6 +4427,7 @@ class Application(
|
|
|
4102
4427
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4103
4428
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4104
4429
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4430
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4105
4431
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4106
4432
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4107
4433
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4109,6 +4435,7 @@ class Application(
|
|
|
4109
4435
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4110
4436
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4111
4437
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4438
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4112
4439
|
|
|
4113
4440
|
:default: - average over 5 minutes
|
|
4114
4441
|
|
|
@@ -4118,6 +4445,7 @@ class Application(
|
|
|
4118
4445
|
account=account,
|
|
4119
4446
|
color=color,
|
|
4120
4447
|
dimensions_map=dimensions_map,
|
|
4448
|
+
id=id,
|
|
4121
4449
|
label=label,
|
|
4122
4450
|
period=period,
|
|
4123
4451
|
region=region,
|
|
@@ -4125,6 +4453,7 @@ class Application(
|
|
|
4125
4453
|
stack_region=stack_region,
|
|
4126
4454
|
statistic=statistic,
|
|
4127
4455
|
unit=unit,
|
|
4456
|
+
visible=visible,
|
|
4128
4457
|
)
|
|
4129
4458
|
|
|
4130
4459
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCpuUtilization", [props]))
|
|
@@ -4136,6 +4465,7 @@ class Application(
|
|
|
4136
4465
|
account: typing.Optional[builtins.str] = None,
|
|
4137
4466
|
color: typing.Optional[builtins.str] = None,
|
|
4138
4467
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4468
|
+
id: typing.Optional[builtins.str] = None,
|
|
4139
4469
|
label: typing.Optional[builtins.str] = None,
|
|
4140
4470
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4141
4471
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4143,6 +4473,7 @@ class Application(
|
|
|
4143
4473
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4144
4474
|
statistic: typing.Optional[builtins.str] = None,
|
|
4145
4475
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4476
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4146
4477
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4147
4478
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
4148
4479
|
|
|
@@ -4153,6 +4484,7 @@ class Application(
|
|
|
4153
4484
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4154
4485
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4155
4486
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4487
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4156
4488
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4157
4489
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4158
4490
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4160,6 +4492,7 @@ class Application(
|
|
|
4160
4492
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4161
4493
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4162
4494
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4495
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4163
4496
|
|
|
4164
4497
|
:default: - maximum over 5 minutes
|
|
4165
4498
|
|
|
@@ -4169,6 +4502,7 @@ class Application(
|
|
|
4169
4502
|
account=account,
|
|
4170
4503
|
color=color,
|
|
4171
4504
|
dimensions_map=dimensions_map,
|
|
4505
|
+
id=id,
|
|
4172
4506
|
label=label,
|
|
4173
4507
|
period=period,
|
|
4174
4508
|
region=region,
|
|
@@ -4176,6 +4510,7 @@ class Application(
|
|
|
4176
4510
|
stack_region=stack_region,
|
|
4177
4511
|
statistic=statistic,
|
|
4178
4512
|
unit=unit,
|
|
4513
|
+
visible=visible,
|
|
4179
4514
|
)
|
|
4180
4515
|
|
|
4181
4516
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentInputWatermark", [props]))
|
|
@@ -4187,6 +4522,7 @@ class Application(
|
|
|
4187
4522
|
account: typing.Optional[builtins.str] = None,
|
|
4188
4523
|
color: typing.Optional[builtins.str] = None,
|
|
4189
4524
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4525
|
+
id: typing.Optional[builtins.str] = None,
|
|
4190
4526
|
label: typing.Optional[builtins.str] = None,
|
|
4191
4527
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4192
4528
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4194,6 +4530,7 @@ class Application(
|
|
|
4194
4530
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4195
4531
|
statistic: typing.Optional[builtins.str] = None,
|
|
4196
4532
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4533
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4197
4534
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4198
4535
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
4199
4536
|
|
|
@@ -4204,6 +4541,7 @@ class Application(
|
|
|
4204
4541
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4205
4542
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4206
4543
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4544
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4207
4545
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4208
4546
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4209
4547
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4211,6 +4549,7 @@ class Application(
|
|
|
4211
4549
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4212
4550
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4213
4551
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4552
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4214
4553
|
|
|
4215
4554
|
:default: - maximum over 5 minutes
|
|
4216
4555
|
|
|
@@ -4220,6 +4559,7 @@ class Application(
|
|
|
4220
4559
|
account=account,
|
|
4221
4560
|
color=color,
|
|
4222
4561
|
dimensions_map=dimensions_map,
|
|
4562
|
+
id=id,
|
|
4223
4563
|
label=label,
|
|
4224
4564
|
period=period,
|
|
4225
4565
|
region=region,
|
|
@@ -4227,6 +4567,7 @@ class Application(
|
|
|
4227
4567
|
stack_region=stack_region,
|
|
4228
4568
|
statistic=statistic,
|
|
4229
4569
|
unit=unit,
|
|
4570
|
+
visible=visible,
|
|
4230
4571
|
)
|
|
4231
4572
|
|
|
4232
4573
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentOutputWatermark", [props]))
|
|
@@ -4238,6 +4579,7 @@ class Application(
|
|
|
4238
4579
|
account: typing.Optional[builtins.str] = None,
|
|
4239
4580
|
color: typing.Optional[builtins.str] = None,
|
|
4240
4581
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4582
|
+
id: typing.Optional[builtins.str] = None,
|
|
4241
4583
|
label: typing.Optional[builtins.str] = None,
|
|
4242
4584
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4243
4585
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4245,6 +4587,7 @@ class Application(
|
|
|
4245
4587
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4246
4588
|
statistic: typing.Optional[builtins.str] = None,
|
|
4247
4589
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4590
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4248
4591
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4249
4592
|
'''(experimental) The time elapsed during an outage for failing/recovering jobs.
|
|
4250
4593
|
|
|
@@ -4255,6 +4598,7 @@ class Application(
|
|
|
4255
4598
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4256
4599
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4257
4600
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4601
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4258
4602
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4259
4603
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4260
4604
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4262,6 +4606,7 @@ class Application(
|
|
|
4262
4606
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4263
4607
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4264
4608
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4609
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4265
4610
|
|
|
4266
4611
|
:default: - average over 5 minutes
|
|
4267
4612
|
|
|
@@ -4271,6 +4616,7 @@ class Application(
|
|
|
4271
4616
|
account=account,
|
|
4272
4617
|
color=color,
|
|
4273
4618
|
dimensions_map=dimensions_map,
|
|
4619
|
+
id=id,
|
|
4274
4620
|
label=label,
|
|
4275
4621
|
period=period,
|
|
4276
4622
|
region=region,
|
|
@@ -4278,6 +4624,7 @@ class Application(
|
|
|
4278
4624
|
stack_region=stack_region,
|
|
4279
4625
|
statistic=statistic,
|
|
4280
4626
|
unit=unit,
|
|
4627
|
+
visible=visible,
|
|
4281
4628
|
)
|
|
4282
4629
|
|
|
4283
4630
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricDowntime", [props]))
|
|
@@ -4289,6 +4636,7 @@ class Application(
|
|
|
4289
4636
|
account: typing.Optional[builtins.str] = None,
|
|
4290
4637
|
color: typing.Optional[builtins.str] = None,
|
|
4291
4638
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4639
|
+
id: typing.Optional[builtins.str] = None,
|
|
4292
4640
|
label: typing.Optional[builtins.str] = None,
|
|
4293
4641
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4294
4642
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4296,6 +4644,7 @@ class Application(
|
|
|
4296
4644
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4297
4645
|
statistic: typing.Optional[builtins.str] = None,
|
|
4298
4646
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4647
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4299
4648
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4300
4649
|
'''(experimental) The total number of times this job has fully restarted since it was submitted.
|
|
4301
4650
|
|
|
@@ -4308,6 +4657,7 @@ class Application(
|
|
|
4308
4657
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4309
4658
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4310
4659
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4660
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4311
4661
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4312
4662
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4313
4663
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4315,6 +4665,7 @@ class Application(
|
|
|
4315
4665
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4316
4666
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4317
4667
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4668
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4318
4669
|
|
|
4319
4670
|
:default: - sum over 5 minutes
|
|
4320
4671
|
|
|
@@ -4324,6 +4675,7 @@ class Application(
|
|
|
4324
4675
|
account=account,
|
|
4325
4676
|
color=color,
|
|
4326
4677
|
dimensions_map=dimensions_map,
|
|
4678
|
+
id=id,
|
|
4327
4679
|
label=label,
|
|
4328
4680
|
period=period,
|
|
4329
4681
|
region=region,
|
|
@@ -4331,6 +4683,7 @@ class Application(
|
|
|
4331
4683
|
stack_region=stack_region,
|
|
4332
4684
|
statistic=statistic,
|
|
4333
4685
|
unit=unit,
|
|
4686
|
+
visible=visible,
|
|
4334
4687
|
)
|
|
4335
4688
|
|
|
4336
4689
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricFullRestarts", [props]))
|
|
@@ -4342,6 +4695,7 @@ class Application(
|
|
|
4342
4695
|
account: typing.Optional[builtins.str] = None,
|
|
4343
4696
|
color: typing.Optional[builtins.str] = None,
|
|
4344
4697
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4698
|
+
id: typing.Optional[builtins.str] = None,
|
|
4345
4699
|
label: typing.Optional[builtins.str] = None,
|
|
4346
4700
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4347
4701
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4349,6 +4703,7 @@ class Application(
|
|
|
4349
4703
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4350
4704
|
statistic: typing.Optional[builtins.str] = None,
|
|
4351
4705
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4706
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4352
4707
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4353
4708
|
'''(experimental) Overall heap memory utilization across task managers.
|
|
4354
4709
|
|
|
@@ -4363,6 +4718,7 @@ class Application(
|
|
|
4363
4718
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4364
4719
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4365
4720
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4721
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4366
4722
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4367
4723
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4368
4724
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4370,6 +4726,7 @@ class Application(
|
|
|
4370
4726
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4371
4727
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4372
4728
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4729
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4373
4730
|
|
|
4374
4731
|
:default: - average over 5 minutes
|
|
4375
4732
|
|
|
@@ -4379,6 +4736,7 @@ class Application(
|
|
|
4379
4736
|
account=account,
|
|
4380
4737
|
color=color,
|
|
4381
4738
|
dimensions_map=dimensions_map,
|
|
4739
|
+
id=id,
|
|
4382
4740
|
label=label,
|
|
4383
4741
|
period=period,
|
|
4384
4742
|
region=region,
|
|
@@ -4386,6 +4744,7 @@ class Application(
|
|
|
4386
4744
|
stack_region=stack_region,
|
|
4387
4745
|
statistic=statistic,
|
|
4388
4746
|
unit=unit,
|
|
4747
|
+
visible=visible,
|
|
4389
4748
|
)
|
|
4390
4749
|
|
|
4391
4750
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricHeapMemoryUtilization", [props]))
|
|
@@ -4397,6 +4756,7 @@ class Application(
|
|
|
4397
4756
|
account: typing.Optional[builtins.str] = None,
|
|
4398
4757
|
color: typing.Optional[builtins.str] = None,
|
|
4399
4758
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4759
|
+
id: typing.Optional[builtins.str] = None,
|
|
4400
4760
|
label: typing.Optional[builtins.str] = None,
|
|
4401
4761
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4402
4762
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4404,6 +4764,7 @@ class Application(
|
|
|
4404
4764
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4405
4765
|
statistic: typing.Optional[builtins.str] = None,
|
|
4406
4766
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4767
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4407
4768
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4408
4769
|
'''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
|
|
4409
4770
|
|
|
@@ -4417,6 +4778,7 @@ class Application(
|
|
|
4417
4778
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4418
4779
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4419
4780
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4781
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4420
4782
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4421
4783
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4422
4784
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4424,6 +4786,7 @@ class Application(
|
|
|
4424
4786
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4425
4787
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4426
4788
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4789
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4427
4790
|
|
|
4428
4791
|
:default: - average over 5 minutes
|
|
4429
4792
|
|
|
@@ -4433,6 +4796,7 @@ class Application(
|
|
|
4433
4796
|
account=account,
|
|
4434
4797
|
color=color,
|
|
4435
4798
|
dimensions_map=dimensions_map,
|
|
4799
|
+
id=id,
|
|
4436
4800
|
label=label,
|
|
4437
4801
|
period=period,
|
|
4438
4802
|
region=region,
|
|
@@ -4440,6 +4804,7 @@ class Application(
|
|
|
4440
4804
|
stack_region=stack_region,
|
|
4441
4805
|
statistic=statistic,
|
|
4442
4806
|
unit=unit,
|
|
4807
|
+
visible=visible,
|
|
4443
4808
|
)
|
|
4444
4809
|
|
|
4445
4810
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricIdleTimeMsPerSecond", [props]))
|
|
@@ -4451,6 +4816,7 @@ class Application(
|
|
|
4451
4816
|
account: typing.Optional[builtins.str] = None,
|
|
4452
4817
|
color: typing.Optional[builtins.str] = None,
|
|
4453
4818
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4819
|
+
id: typing.Optional[builtins.str] = None,
|
|
4454
4820
|
label: typing.Optional[builtins.str] = None,
|
|
4455
4821
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4456
4822
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4458,6 +4824,7 @@ class Application(
|
|
|
4458
4824
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4459
4825
|
statistic: typing.Optional[builtins.str] = None,
|
|
4460
4826
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4827
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4461
4828
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4462
4829
|
'''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
|
|
4463
4830
|
|
|
@@ -4471,6 +4838,7 @@ class Application(
|
|
|
4471
4838
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4472
4839
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4473
4840
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4841
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4474
4842
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4475
4843
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4476
4844
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4478,6 +4846,7 @@ class Application(
|
|
|
4478
4846
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4479
4847
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4480
4848
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4849
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4481
4850
|
|
|
4482
4851
|
:default: - average over 5 minutes
|
|
4483
4852
|
|
|
@@ -4487,6 +4856,7 @@ class Application(
|
|
|
4487
4856
|
account=account,
|
|
4488
4857
|
color=color,
|
|
4489
4858
|
dimensions_map=dimensions_map,
|
|
4859
|
+
id=id,
|
|
4490
4860
|
label=label,
|
|
4491
4861
|
period=period,
|
|
4492
4862
|
region=region,
|
|
@@ -4494,6 +4864,7 @@ class Application(
|
|
|
4494
4864
|
stack_region=stack_region,
|
|
4495
4865
|
statistic=statistic,
|
|
4496
4866
|
unit=unit,
|
|
4867
|
+
visible=visible,
|
|
4497
4868
|
)
|
|
4498
4869
|
|
|
4499
4870
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricKpus", [props]))
|
|
@@ -4505,6 +4876,7 @@ class Application(
|
|
|
4505
4876
|
account: typing.Optional[builtins.str] = None,
|
|
4506
4877
|
color: typing.Optional[builtins.str] = None,
|
|
4507
4878
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4879
|
+
id: typing.Optional[builtins.str] = None,
|
|
4508
4880
|
label: typing.Optional[builtins.str] = None,
|
|
4509
4881
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4510
4882
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4512,6 +4884,7 @@ class Application(
|
|
|
4512
4884
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4513
4885
|
statistic: typing.Optional[builtins.str] = None,
|
|
4514
4886
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4887
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4515
4888
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4516
4889
|
'''(experimental) The time it took to complete the last checkpoint.
|
|
4517
4890
|
|
|
@@ -4522,6 +4895,7 @@ class Application(
|
|
|
4522
4895
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4523
4896
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4524
4897
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4898
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4525
4899
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4526
4900
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4527
4901
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4529,6 +4903,7 @@ class Application(
|
|
|
4529
4903
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4530
4904
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4531
4905
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4906
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4532
4907
|
|
|
4533
4908
|
:default: - maximum over 5 minutes
|
|
4534
4909
|
|
|
@@ -4538,6 +4913,7 @@ class Application(
|
|
|
4538
4913
|
account=account,
|
|
4539
4914
|
color=color,
|
|
4540
4915
|
dimensions_map=dimensions_map,
|
|
4916
|
+
id=id,
|
|
4541
4917
|
label=label,
|
|
4542
4918
|
period=period,
|
|
4543
4919
|
region=region,
|
|
@@ -4545,6 +4921,7 @@ class Application(
|
|
|
4545
4921
|
stack_region=stack_region,
|
|
4546
4922
|
statistic=statistic,
|
|
4547
4923
|
unit=unit,
|
|
4924
|
+
visible=visible,
|
|
4548
4925
|
)
|
|
4549
4926
|
|
|
4550
4927
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointDuration", [props]))
|
|
@@ -4556,6 +4933,7 @@ class Application(
|
|
|
4556
4933
|
account: typing.Optional[builtins.str] = None,
|
|
4557
4934
|
color: typing.Optional[builtins.str] = None,
|
|
4558
4935
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4936
|
+
id: typing.Optional[builtins.str] = None,
|
|
4559
4937
|
label: typing.Optional[builtins.str] = None,
|
|
4560
4938
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4561
4939
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4563,6 +4941,7 @@ class Application(
|
|
|
4563
4941
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4564
4942
|
statistic: typing.Optional[builtins.str] = None,
|
|
4565
4943
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4944
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4566
4945
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4567
4946
|
'''(experimental) The total size of the last checkpoint.
|
|
4568
4947
|
|
|
@@ -4573,6 +4952,7 @@ class Application(
|
|
|
4573
4952
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4574
4953
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4575
4954
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4955
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4576
4956
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4577
4957
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4578
4958
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4580,6 +4960,7 @@ class Application(
|
|
|
4580
4960
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4581
4961
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4582
4962
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4963
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4583
4964
|
|
|
4584
4965
|
:default: - maximum over 5 minutes
|
|
4585
4966
|
|
|
@@ -4589,6 +4970,7 @@ class Application(
|
|
|
4589
4970
|
account=account,
|
|
4590
4971
|
color=color,
|
|
4591
4972
|
dimensions_map=dimensions_map,
|
|
4973
|
+
id=id,
|
|
4592
4974
|
label=label,
|
|
4593
4975
|
period=period,
|
|
4594
4976
|
region=region,
|
|
@@ -4596,6 +4978,7 @@ class Application(
|
|
|
4596
4978
|
stack_region=stack_region,
|
|
4597
4979
|
statistic=statistic,
|
|
4598
4980
|
unit=unit,
|
|
4981
|
+
visible=visible,
|
|
4599
4982
|
)
|
|
4600
4983
|
|
|
4601
4984
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointSize", [props]))
|
|
@@ -4607,6 +4990,7 @@ class Application(
|
|
|
4607
4990
|
account: typing.Optional[builtins.str] = None,
|
|
4608
4991
|
color: typing.Optional[builtins.str] = None,
|
|
4609
4992
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4993
|
+
id: typing.Optional[builtins.str] = None,
|
|
4610
4994
|
label: typing.Optional[builtins.str] = None,
|
|
4611
4995
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4612
4996
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4614,6 +4998,7 @@ class Application(
|
|
|
4614
4998
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4615
4999
|
statistic: typing.Optional[builtins.str] = None,
|
|
4616
5000
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5001
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4617
5002
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4618
5003
|
'''(experimental) The total amount of managed memory.
|
|
4619
5004
|
|
|
@@ -4624,6 +5009,7 @@ class Application(
|
|
|
4624
5009
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4625
5010
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4626
5011
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5012
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4627
5013
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4628
5014
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4629
5015
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4631,6 +5017,7 @@ class Application(
|
|
|
4631
5017
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4632
5018
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4633
5019
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5020
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4634
5021
|
|
|
4635
5022
|
:default: - average over 5 minutes
|
|
4636
5023
|
|
|
@@ -4640,6 +5027,7 @@ class Application(
|
|
|
4640
5027
|
account=account,
|
|
4641
5028
|
color=color,
|
|
4642
5029
|
dimensions_map=dimensions_map,
|
|
5030
|
+
id=id,
|
|
4643
5031
|
label=label,
|
|
4644
5032
|
period=period,
|
|
4645
5033
|
region=region,
|
|
@@ -4647,6 +5035,7 @@ class Application(
|
|
|
4647
5035
|
stack_region=stack_region,
|
|
4648
5036
|
statistic=statistic,
|
|
4649
5037
|
unit=unit,
|
|
5038
|
+
visible=visible,
|
|
4650
5039
|
)
|
|
4651
5040
|
|
|
4652
5041
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryTotal", [props]))
|
|
@@ -4658,6 +5047,7 @@ class Application(
|
|
|
4658
5047
|
account: typing.Optional[builtins.str] = None,
|
|
4659
5048
|
color: typing.Optional[builtins.str] = None,
|
|
4660
5049
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5050
|
+
id: typing.Optional[builtins.str] = None,
|
|
4661
5051
|
label: typing.Optional[builtins.str] = None,
|
|
4662
5052
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4663
5053
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4665,6 +5055,7 @@ class Application(
|
|
|
4665
5055
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4666
5056
|
statistic: typing.Optional[builtins.str] = None,
|
|
4667
5057
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5058
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4668
5059
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4669
5060
|
'''(experimental) The amount of managed memory currently used.
|
|
4670
5061
|
|
|
@@ -4675,6 +5066,7 @@ class Application(
|
|
|
4675
5066
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4676
5067
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4677
5068
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5069
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4678
5070
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4679
5071
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4680
5072
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4682,6 +5074,7 @@ class Application(
|
|
|
4682
5074
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4683
5075
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4684
5076
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5077
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4685
5078
|
|
|
4686
5079
|
:default: - average over 5 minutes
|
|
4687
5080
|
|
|
@@ -4691,6 +5084,7 @@ class Application(
|
|
|
4691
5084
|
account=account,
|
|
4692
5085
|
color=color,
|
|
4693
5086
|
dimensions_map=dimensions_map,
|
|
5087
|
+
id=id,
|
|
4694
5088
|
label=label,
|
|
4695
5089
|
period=period,
|
|
4696
5090
|
region=region,
|
|
@@ -4698,6 +5092,7 @@ class Application(
|
|
|
4698
5092
|
stack_region=stack_region,
|
|
4699
5093
|
statistic=statistic,
|
|
4700
5094
|
unit=unit,
|
|
5095
|
+
visible=visible,
|
|
4701
5096
|
)
|
|
4702
5097
|
|
|
4703
5098
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUsed", [props]))
|
|
@@ -4709,6 +5104,7 @@ class Application(
|
|
|
4709
5104
|
account: typing.Optional[builtins.str] = None,
|
|
4710
5105
|
color: typing.Optional[builtins.str] = None,
|
|
4711
5106
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5107
|
+
id: typing.Optional[builtins.str] = None,
|
|
4712
5108
|
label: typing.Optional[builtins.str] = None,
|
|
4713
5109
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4714
5110
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4716,6 +5112,7 @@ class Application(
|
|
|
4716
5112
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4717
5113
|
statistic: typing.Optional[builtins.str] = None,
|
|
4718
5114
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5115
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4719
5116
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4720
5117
|
'''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
|
|
4721
5118
|
|
|
@@ -4726,6 +5123,7 @@ class Application(
|
|
|
4726
5123
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4727
5124
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4728
5125
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5126
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4729
5127
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4730
5128
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4731
5129
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4733,6 +5131,7 @@ class Application(
|
|
|
4733
5131
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4734
5132
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4735
5133
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5134
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4736
5135
|
|
|
4737
5136
|
:default: - average over 5 minutes
|
|
4738
5137
|
|
|
@@ -4742,6 +5141,7 @@ class Application(
|
|
|
4742
5141
|
account=account,
|
|
4743
5142
|
color=color,
|
|
4744
5143
|
dimensions_map=dimensions_map,
|
|
5144
|
+
id=id,
|
|
4745
5145
|
label=label,
|
|
4746
5146
|
period=period,
|
|
4747
5147
|
region=region,
|
|
@@ -4749,6 +5149,7 @@ class Application(
|
|
|
4749
5149
|
stack_region=stack_region,
|
|
4750
5150
|
statistic=statistic,
|
|
4751
5151
|
unit=unit,
|
|
5152
|
+
visible=visible,
|
|
4752
5153
|
)
|
|
4753
5154
|
|
|
4754
5155
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUtilization", [props]))
|
|
@@ -4760,6 +5161,7 @@ class Application(
|
|
|
4760
5161
|
account: typing.Optional[builtins.str] = None,
|
|
4761
5162
|
color: typing.Optional[builtins.str] = None,
|
|
4762
5163
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5164
|
+
id: typing.Optional[builtins.str] = None,
|
|
4763
5165
|
label: typing.Optional[builtins.str] = None,
|
|
4764
5166
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4765
5167
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4767,6 +5169,7 @@ class Application(
|
|
|
4767
5169
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4768
5170
|
statistic: typing.Optional[builtins.str] = None,
|
|
4769
5171
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5172
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4770
5173
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4771
5174
|
'''(experimental) The number of times checkpointing has failed.
|
|
4772
5175
|
|
|
@@ -4777,6 +5180,7 @@ class Application(
|
|
|
4777
5180
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4778
5181
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4779
5182
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5183
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4780
5184
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4781
5185
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4782
5186
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4784,6 +5188,7 @@ class Application(
|
|
|
4784
5188
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4785
5189
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4786
5190
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5191
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4787
5192
|
|
|
4788
5193
|
:default: - sum over 5 minutes
|
|
4789
5194
|
|
|
@@ -4793,6 +5198,7 @@ class Application(
|
|
|
4793
5198
|
account=account,
|
|
4794
5199
|
color=color,
|
|
4795
5200
|
dimensions_map=dimensions_map,
|
|
5201
|
+
id=id,
|
|
4796
5202
|
label=label,
|
|
4797
5203
|
period=period,
|
|
4798
5204
|
region=region,
|
|
@@ -4800,6 +5206,7 @@ class Application(
|
|
|
4800
5206
|
stack_region=stack_region,
|
|
4801
5207
|
statistic=statistic,
|
|
4802
5208
|
unit=unit,
|
|
5209
|
+
visible=visible,
|
|
4803
5210
|
)
|
|
4804
5211
|
|
|
4805
5212
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumberOfFailedCheckpoints", [props]))
|
|
@@ -4811,6 +5218,7 @@ class Application(
|
|
|
4811
5218
|
account: typing.Optional[builtins.str] = None,
|
|
4812
5219
|
color: typing.Optional[builtins.str] = None,
|
|
4813
5220
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5221
|
+
id: typing.Optional[builtins.str] = None,
|
|
4814
5222
|
label: typing.Optional[builtins.str] = None,
|
|
4815
5223
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4816
5224
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4818,6 +5226,7 @@ class Application(
|
|
|
4818
5226
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4819
5227
|
statistic: typing.Optional[builtins.str] = None,
|
|
4820
5228
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5229
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4821
5230
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4822
5231
|
'''(experimental) The number of records this operator or task has dropped due to arriving late.
|
|
4823
5232
|
|
|
@@ -4828,6 +5237,7 @@ class Application(
|
|
|
4828
5237
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4829
5238
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4830
5239
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5240
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4831
5241
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4832
5242
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4833
5243
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4835,6 +5245,7 @@ class Application(
|
|
|
4835
5245
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4836
5246
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4837
5247
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5248
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4838
5249
|
|
|
4839
5250
|
:default: - sum over 5 minutes
|
|
4840
5251
|
|
|
@@ -4844,6 +5255,7 @@ class Application(
|
|
|
4844
5255
|
account=account,
|
|
4845
5256
|
color=color,
|
|
4846
5257
|
dimensions_map=dimensions_map,
|
|
5258
|
+
id=id,
|
|
4847
5259
|
label=label,
|
|
4848
5260
|
period=period,
|
|
4849
5261
|
region=region,
|
|
@@ -4851,6 +5263,7 @@ class Application(
|
|
|
4851
5263
|
stack_region=stack_region,
|
|
4852
5264
|
statistic=statistic,
|
|
4853
5265
|
unit=unit,
|
|
5266
|
+
visible=visible,
|
|
4854
5267
|
)
|
|
4855
5268
|
|
|
4856
5269
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumLateRecordsDropped", [props]))
|
|
@@ -4862,6 +5275,7 @@ class Application(
|
|
|
4862
5275
|
account: typing.Optional[builtins.str] = None,
|
|
4863
5276
|
color: typing.Optional[builtins.str] = None,
|
|
4864
5277
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5278
|
+
id: typing.Optional[builtins.str] = None,
|
|
4865
5279
|
label: typing.Optional[builtins.str] = None,
|
|
4866
5280
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4867
5281
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4869,6 +5283,7 @@ class Application(
|
|
|
4869
5283
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4870
5284
|
statistic: typing.Optional[builtins.str] = None,
|
|
4871
5285
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5286
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4872
5287
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4873
5288
|
'''(experimental) The total number of records this application, operator, or task has received.
|
|
4874
5289
|
|
|
@@ -4879,6 +5294,7 @@ class Application(
|
|
|
4879
5294
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4880
5295
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4881
5296
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5297
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4882
5298
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4883
5299
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4884
5300
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4886,6 +5302,7 @@ class Application(
|
|
|
4886
5302
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4887
5303
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4888
5304
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5305
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4889
5306
|
|
|
4890
5307
|
:default: - average over 5 minutes
|
|
4891
5308
|
|
|
@@ -4895,6 +5312,7 @@ class Application(
|
|
|
4895
5312
|
account=account,
|
|
4896
5313
|
color=color,
|
|
4897
5314
|
dimensions_map=dimensions_map,
|
|
5315
|
+
id=id,
|
|
4898
5316
|
label=label,
|
|
4899
5317
|
period=period,
|
|
4900
5318
|
region=region,
|
|
@@ -4902,6 +5320,7 @@ class Application(
|
|
|
4902
5320
|
stack_region=stack_region,
|
|
4903
5321
|
statistic=statistic,
|
|
4904
5322
|
unit=unit,
|
|
5323
|
+
visible=visible,
|
|
4905
5324
|
)
|
|
4906
5325
|
|
|
4907
5326
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsIn", [props]))
|
|
@@ -4913,6 +5332,7 @@ class Application(
|
|
|
4913
5332
|
account: typing.Optional[builtins.str] = None,
|
|
4914
5333
|
color: typing.Optional[builtins.str] = None,
|
|
4915
5334
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5335
|
+
id: typing.Optional[builtins.str] = None,
|
|
4916
5336
|
label: typing.Optional[builtins.str] = None,
|
|
4917
5337
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4918
5338
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4920,6 +5340,7 @@ class Application(
|
|
|
4920
5340
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4921
5341
|
statistic: typing.Optional[builtins.str] = None,
|
|
4922
5342
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5343
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4923
5344
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4924
5345
|
'''(experimental) The total number of records this application, operator or task has received per second.
|
|
4925
5346
|
|
|
@@ -4930,6 +5351,7 @@ class Application(
|
|
|
4930
5351
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4931
5352
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4932
5353
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5354
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4933
5355
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4934
5356
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4935
5357
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4937,6 +5359,7 @@ class Application(
|
|
|
4937
5359
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4938
5360
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4939
5361
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5362
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4940
5363
|
|
|
4941
5364
|
:default: - average over 5 minutes
|
|
4942
5365
|
|
|
@@ -4946,6 +5369,7 @@ class Application(
|
|
|
4946
5369
|
account=account,
|
|
4947
5370
|
color=color,
|
|
4948
5371
|
dimensions_map=dimensions_map,
|
|
5372
|
+
id=id,
|
|
4949
5373
|
label=label,
|
|
4950
5374
|
period=period,
|
|
4951
5375
|
region=region,
|
|
@@ -4953,6 +5377,7 @@ class Application(
|
|
|
4953
5377
|
stack_region=stack_region,
|
|
4954
5378
|
statistic=statistic,
|
|
4955
5379
|
unit=unit,
|
|
5380
|
+
visible=visible,
|
|
4956
5381
|
)
|
|
4957
5382
|
|
|
4958
5383
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsInPerSecond", [props]))
|
|
@@ -4964,6 +5389,7 @@ class Application(
|
|
|
4964
5389
|
account: typing.Optional[builtins.str] = None,
|
|
4965
5390
|
color: typing.Optional[builtins.str] = None,
|
|
4966
5391
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5392
|
+
id: typing.Optional[builtins.str] = None,
|
|
4967
5393
|
label: typing.Optional[builtins.str] = None,
|
|
4968
5394
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4969
5395
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4971,6 +5397,7 @@ class Application(
|
|
|
4971
5397
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4972
5398
|
statistic: typing.Optional[builtins.str] = None,
|
|
4973
5399
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5400
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4974
5401
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4975
5402
|
'''(experimental) The total number of records this application, operator or task has emitted.
|
|
4976
5403
|
|
|
@@ -4981,6 +5408,7 @@ class Application(
|
|
|
4981
5408
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4982
5409
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
4983
5410
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5411
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
4984
5412
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4985
5413
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4986
5414
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4988,6 +5416,7 @@ class Application(
|
|
|
4988
5416
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4989
5417
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4990
5418
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5419
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
4991
5420
|
|
|
4992
5421
|
:default: - average over 5 minutes
|
|
4993
5422
|
|
|
@@ -4997,6 +5426,7 @@ class Application(
|
|
|
4997
5426
|
account=account,
|
|
4998
5427
|
color=color,
|
|
4999
5428
|
dimensions_map=dimensions_map,
|
|
5429
|
+
id=id,
|
|
5000
5430
|
label=label,
|
|
5001
5431
|
period=period,
|
|
5002
5432
|
region=region,
|
|
@@ -5004,6 +5434,7 @@ class Application(
|
|
|
5004
5434
|
stack_region=stack_region,
|
|
5005
5435
|
statistic=statistic,
|
|
5006
5436
|
unit=unit,
|
|
5437
|
+
visible=visible,
|
|
5007
5438
|
)
|
|
5008
5439
|
|
|
5009
5440
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOut", [props]))
|
|
@@ -5015,6 +5446,7 @@ class Application(
|
|
|
5015
5446
|
account: typing.Optional[builtins.str] = None,
|
|
5016
5447
|
color: typing.Optional[builtins.str] = None,
|
|
5017
5448
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5449
|
+
id: typing.Optional[builtins.str] = None,
|
|
5018
5450
|
label: typing.Optional[builtins.str] = None,
|
|
5019
5451
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5020
5452
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5022,6 +5454,7 @@ class Application(
|
|
|
5022
5454
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5023
5455
|
statistic: typing.Optional[builtins.str] = None,
|
|
5024
5456
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5457
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5025
5458
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5026
5459
|
'''(experimental) The total number of records this application, operator or task has emitted per second.
|
|
5027
5460
|
|
|
@@ -5032,6 +5465,7 @@ class Application(
|
|
|
5032
5465
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5033
5466
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
5034
5467
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5468
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
5035
5469
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5036
5470
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5037
5471
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5039,6 +5473,7 @@ class Application(
|
|
|
5039
5473
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5040
5474
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5041
5475
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5476
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
5042
5477
|
|
|
5043
5478
|
:default: - average over 5 minutes
|
|
5044
5479
|
|
|
@@ -5048,6 +5483,7 @@ class Application(
|
|
|
5048
5483
|
account=account,
|
|
5049
5484
|
color=color,
|
|
5050
5485
|
dimensions_map=dimensions_map,
|
|
5486
|
+
id=id,
|
|
5051
5487
|
label=label,
|
|
5052
5488
|
period=period,
|
|
5053
5489
|
region=region,
|
|
@@ -5055,6 +5491,7 @@ class Application(
|
|
|
5055
5491
|
stack_region=stack_region,
|
|
5056
5492
|
statistic=statistic,
|
|
5057
5493
|
unit=unit,
|
|
5494
|
+
visible=visible,
|
|
5058
5495
|
)
|
|
5059
5496
|
|
|
5060
5497
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOutPerSecond", [props]))
|
|
@@ -5066,6 +5503,7 @@ class Application(
|
|
|
5066
5503
|
account: typing.Optional[builtins.str] = None,
|
|
5067
5504
|
color: typing.Optional[builtins.str] = None,
|
|
5068
5505
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5506
|
+
id: typing.Optional[builtins.str] = None,
|
|
5069
5507
|
label: typing.Optional[builtins.str] = None,
|
|
5070
5508
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5071
5509
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5073,6 +5511,7 @@ class Application(
|
|
|
5073
5511
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5074
5512
|
statistic: typing.Optional[builtins.str] = None,
|
|
5075
5513
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5514
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5076
5515
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5077
5516
|
'''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
|
|
5078
5517
|
|
|
@@ -5083,6 +5522,7 @@ class Application(
|
|
|
5083
5522
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5084
5523
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
5085
5524
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5525
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
5086
5526
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5087
5527
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5088
5528
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5090,6 +5530,7 @@ class Application(
|
|
|
5090
5530
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5091
5531
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5092
5532
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5533
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
5093
5534
|
|
|
5094
5535
|
:default: - sum over 5 minutes
|
|
5095
5536
|
|
|
@@ -5099,6 +5540,7 @@ class Application(
|
|
|
5099
5540
|
account=account,
|
|
5100
5541
|
color=color,
|
|
5101
5542
|
dimensions_map=dimensions_map,
|
|
5543
|
+
id=id,
|
|
5102
5544
|
label=label,
|
|
5103
5545
|
period=period,
|
|
5104
5546
|
region=region,
|
|
@@ -5106,6 +5548,7 @@ class Application(
|
|
|
5106
5548
|
stack_region=stack_region,
|
|
5107
5549
|
statistic=statistic,
|
|
5108
5550
|
unit=unit,
|
|
5551
|
+
visible=visible,
|
|
5109
5552
|
)
|
|
5110
5553
|
|
|
5111
5554
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCCount", [props]))
|
|
@@ -5117,6 +5560,7 @@ class Application(
|
|
|
5117
5560
|
account: typing.Optional[builtins.str] = None,
|
|
5118
5561
|
color: typing.Optional[builtins.str] = None,
|
|
5119
5562
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5563
|
+
id: typing.Optional[builtins.str] = None,
|
|
5120
5564
|
label: typing.Optional[builtins.str] = None,
|
|
5121
5565
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5122
5566
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5124,6 +5568,7 @@ class Application(
|
|
|
5124
5568
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5125
5569
|
statistic: typing.Optional[builtins.str] = None,
|
|
5126
5570
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5571
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5127
5572
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5128
5573
|
'''(experimental) The total time spent performing old garbage collection operations.
|
|
5129
5574
|
|
|
@@ -5134,6 +5579,7 @@ class Application(
|
|
|
5134
5579
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5135
5580
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
5136
5581
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5582
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
5137
5583
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5138
5584
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5139
5585
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5141,6 +5587,7 @@ class Application(
|
|
|
5141
5587
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5142
5588
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5143
5589
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5590
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
5144
5591
|
|
|
5145
5592
|
:default: - sum over 5 minutes
|
|
5146
5593
|
|
|
@@ -5150,6 +5597,7 @@ class Application(
|
|
|
5150
5597
|
account=account,
|
|
5151
5598
|
color=color,
|
|
5152
5599
|
dimensions_map=dimensions_map,
|
|
5600
|
+
id=id,
|
|
5153
5601
|
label=label,
|
|
5154
5602
|
period=period,
|
|
5155
5603
|
region=region,
|
|
@@ -5157,6 +5605,7 @@ class Application(
|
|
|
5157
5605
|
stack_region=stack_region,
|
|
5158
5606
|
statistic=statistic,
|
|
5159
5607
|
unit=unit,
|
|
5608
|
+
visible=visible,
|
|
5160
5609
|
)
|
|
5161
5610
|
|
|
5162
5611
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCTime", [props]))
|
|
@@ -5168,6 +5617,7 @@ class Application(
|
|
|
5168
5617
|
account: typing.Optional[builtins.str] = None,
|
|
5169
5618
|
color: typing.Optional[builtins.str] = None,
|
|
5170
5619
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5620
|
+
id: typing.Optional[builtins.str] = None,
|
|
5171
5621
|
label: typing.Optional[builtins.str] = None,
|
|
5172
5622
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5173
5623
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5175,6 +5625,7 @@ class Application(
|
|
|
5175
5625
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5176
5626
|
statistic: typing.Optional[builtins.str] = None,
|
|
5177
5627
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5628
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5178
5629
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5179
5630
|
'''(experimental) The total number of live threads used by the application.
|
|
5180
5631
|
|
|
@@ -5185,6 +5636,7 @@ class Application(
|
|
|
5185
5636
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5186
5637
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
5187
5638
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5639
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
5188
5640
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5189
5641
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5190
5642
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5192,6 +5644,7 @@ class Application(
|
|
|
5192
5644
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5193
5645
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5194
5646
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5647
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
5195
5648
|
|
|
5196
5649
|
:default: - average over 5 minutes
|
|
5197
5650
|
|
|
@@ -5201,6 +5654,7 @@ class Application(
|
|
|
5201
5654
|
account=account,
|
|
5202
5655
|
color=color,
|
|
5203
5656
|
dimensions_map=dimensions_map,
|
|
5657
|
+
id=id,
|
|
5204
5658
|
label=label,
|
|
5205
5659
|
period=period,
|
|
5206
5660
|
region=region,
|
|
@@ -5208,6 +5662,7 @@ class Application(
|
|
|
5208
5662
|
stack_region=stack_region,
|
|
5209
5663
|
statistic=statistic,
|
|
5210
5664
|
unit=unit,
|
|
5665
|
+
visible=visible,
|
|
5211
5666
|
)
|
|
5212
5667
|
|
|
5213
5668
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricThreadsCount", [props]))
|
|
@@ -5219,6 +5674,7 @@ class Application(
|
|
|
5219
5674
|
account: typing.Optional[builtins.str] = None,
|
|
5220
5675
|
color: typing.Optional[builtins.str] = None,
|
|
5221
5676
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5677
|
+
id: typing.Optional[builtins.str] = None,
|
|
5222
5678
|
label: typing.Optional[builtins.str] = None,
|
|
5223
5679
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5224
5680
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5226,6 +5682,7 @@ class Application(
|
|
|
5226
5682
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5227
5683
|
statistic: typing.Optional[builtins.str] = None,
|
|
5228
5684
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5685
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5229
5686
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5230
5687
|
'''(experimental) The time that the job has been running without interruption.
|
|
5231
5688
|
|
|
@@ -5236,6 +5693,7 @@ class Application(
|
|
|
5236
5693
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5237
5694
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
5238
5695
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5696
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
5239
5697
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5240
5698
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5241
5699
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5243,6 +5701,7 @@ class Application(
|
|
|
5243
5701
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5244
5702
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5245
5703
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5704
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
5246
5705
|
|
|
5247
5706
|
:default: - average over 5 minutes
|
|
5248
5707
|
|
|
@@ -5252,6 +5711,7 @@ class Application(
|
|
|
5252
5711
|
account=account,
|
|
5253
5712
|
color=color,
|
|
5254
5713
|
dimensions_map=dimensions_map,
|
|
5714
|
+
id=id,
|
|
5255
5715
|
label=label,
|
|
5256
5716
|
period=period,
|
|
5257
5717
|
region=region,
|
|
@@ -5259,10 +5719,20 @@ class Application(
|
|
|
5259
5719
|
stack_region=stack_region,
|
|
5260
5720
|
statistic=statistic,
|
|
5261
5721
|
unit=unit,
|
|
5722
|
+
visible=visible,
|
|
5262
5723
|
)
|
|
5263
5724
|
|
|
5264
5725
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricUptime", [props]))
|
|
5265
5726
|
|
|
5727
|
+
@jsii.python.classproperty
|
|
5728
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
5729
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
5730
|
+
'''(experimental) Uniquely identifies this class.
|
|
5731
|
+
|
|
5732
|
+
:stability: experimental
|
|
5733
|
+
'''
|
|
5734
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
5735
|
+
|
|
5266
5736
|
@builtins.property
|
|
5267
5737
|
@jsii.member(jsii_name="applicationArn")
|
|
5268
5738
|
def application_arn(self) -> builtins.str:
|
|
@@ -5336,8 +5806,9 @@ def _typecheckingstub__1b3f5ea7b01f2c445236fa2c0bbef9d04ab26dce3d5e0a7fe634f6546
|
|
|
5336
5806
|
path: builtins.str,
|
|
5337
5807
|
*,
|
|
5338
5808
|
deploy_time: typing.Optional[builtins.bool] = None,
|
|
5809
|
+
display_name: typing.Optional[builtins.str] = None,
|
|
5339
5810
|
readers: typing.Optional[typing.Sequence[_aws_cdk_aws_iam_ceddda9d.IGrantable]] = None,
|
|
5340
|
-
source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.
|
|
5811
|
+
source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKeyRef] = None,
|
|
5341
5812
|
asset_hash: typing.Optional[builtins.str] = None,
|
|
5342
5813
|
asset_hash_type: typing.Optional[_aws_cdk_ceddda9d.AssetHashType] = None,
|
|
5343
5814
|
bundling: typing.Optional[typing.Union[_aws_cdk_ceddda9d.BundlingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -5407,6 +5878,7 @@ def _typecheckingstub__097540094b7582e7d789cf6a116b80ddef50d6da32ceb164de5da9561
|
|
|
5407
5878
|
account: typing.Optional[builtins.str] = None,
|
|
5408
5879
|
color: typing.Optional[builtins.str] = None,
|
|
5409
5880
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5881
|
+
id: typing.Optional[builtins.str] = None,
|
|
5410
5882
|
label: typing.Optional[builtins.str] = None,
|
|
5411
5883
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5412
5884
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5414,6 +5886,7 @@ def _typecheckingstub__097540094b7582e7d789cf6a116b80ddef50d6da32ceb164de5da9561
|
|
|
5414
5886
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5415
5887
|
statistic: typing.Optional[builtins.str] = None,
|
|
5416
5888
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5889
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5417
5890
|
) -> None:
|
|
5418
5891
|
"""Type checking stubs"""
|
|
5419
5892
|
pass
|
|
@@ -5489,6 +5962,7 @@ def _typecheckingstub__bd7be1e816d1e378b989c42da53244077b88147554f5269f162bf7af5
|
|
|
5489
5962
|
account: typing.Optional[builtins.str] = None,
|
|
5490
5963
|
color: typing.Optional[builtins.str] = None,
|
|
5491
5964
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5965
|
+
id: typing.Optional[builtins.str] = None,
|
|
5492
5966
|
label: typing.Optional[builtins.str] = None,
|
|
5493
5967
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5494
5968
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5496,6 +5970,10 @@ def _typecheckingstub__bd7be1e816d1e378b989c42da53244077b88147554f5269f162bf7af5
|
|
|
5496
5970
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5497
5971
|
statistic: typing.Optional[builtins.str] = None,
|
|
5498
5972
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5973
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5499
5974
|
) -> None:
|
|
5500
5975
|
"""Type checking stubs"""
|
|
5501
5976
|
pass
|
|
5977
|
+
|
|
5978
|
+
for cls in [IApplication]:
|
|
5979
|
+
typing.cast(typing.Any, cls).__protocol_attrs__ = typing.cast(typing.Any, cls).__protocol_attrs__ - set(['__jsii_proxy_class__', '__jsii_type__'])
|