aws-cdk.aws-kinesisanalytics-flink-alpha 2.203.1a0__py3-none-any.whl → 2.204.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.
Potentially problematic release.
This version of aws-cdk.aws-kinesisanalytics-flink-alpha might be problematic. Click here for more details.
- aws_cdk/aws_kinesisanalytics_flink_alpha/__init__.py +420 -0
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/__init__.py +2 -2
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/aws-kinesisanalytics-flink-alpha@2.204.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk_aws_kinesisanalytics_flink_alpha-2.203.1a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.204.0a0.dist-info}/METADATA +2 -2
- aws_cdk_aws_kinesisanalytics_flink_alpha-2.204.0a0.dist-info/RECORD +10 -0
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/aws-kinesisanalytics-flink-alpha@2.203.1-alpha.0.jsii.tgz +0 -0
- aws_cdk_aws_kinesisanalytics_flink_alpha-2.203.1a0.dist-info/RECORD +0 -10
- {aws_cdk_aws_kinesisanalytics_flink_alpha-2.203.1a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.204.0a0.dist-info}/LICENSE +0 -0
- {aws_cdk_aws_kinesisanalytics_flink_alpha-2.203.1a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.204.0a0.dist-info}/NOTICE +0 -0
- {aws_cdk_aws_kinesisanalytics_flink_alpha-2.203.1a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.204.0a0.dist-info}/WHEEL +0 -0
- {aws_cdk_aws_kinesisanalytics_flink_alpha-2.203.1a0.dist-info → aws_cdk_aws_kinesisanalytics_flink_alpha-2.204.0a0.dist-info}/top_level.txt +0 -0
|
@@ -1064,6 +1064,7 @@ class IApplication(
|
|
|
1064
1064
|
account: typing.Optional[builtins.str] = None,
|
|
1065
1065
|
color: typing.Optional[builtins.str] = None,
|
|
1066
1066
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1067
|
+
id: typing.Optional[builtins.str] = None,
|
|
1067
1068
|
label: typing.Optional[builtins.str] = None,
|
|
1068
1069
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1069
1070
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1071,6 +1072,7 @@ class IApplication(
|
|
|
1071
1072
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1072
1073
|
statistic: typing.Optional[builtins.str] = None,
|
|
1073
1074
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1075
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1074
1076
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1075
1077
|
'''(experimental) Return a CloudWatch metric associated with this Flink application.
|
|
1076
1078
|
|
|
@@ -1078,6 +1080,7 @@ class IApplication(
|
|
|
1078
1080
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1079
1081
|
: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
|
|
1080
1082
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1083
|
+
: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
|
|
1081
1084
|
: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
|
|
1082
1085
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1083
1086
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1085,6 +1088,7 @@ class IApplication(
|
|
|
1085
1088
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1086
1089
|
: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
|
|
1087
1090
|
: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
|
|
1091
|
+
: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
|
|
1088
1092
|
|
|
1089
1093
|
:stability: experimental
|
|
1090
1094
|
'''
|
|
@@ -1097,6 +1101,7 @@ class IApplication(
|
|
|
1097
1101
|
account: typing.Optional[builtins.str] = None,
|
|
1098
1102
|
color: typing.Optional[builtins.str] = None,
|
|
1099
1103
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1104
|
+
id: typing.Optional[builtins.str] = None,
|
|
1100
1105
|
label: typing.Optional[builtins.str] = None,
|
|
1101
1106
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1102
1107
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1104,6 +1109,7 @@ class IApplication(
|
|
|
1104
1109
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1105
1110
|
statistic: typing.Optional[builtins.str] = None,
|
|
1106
1111
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1112
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1107
1113
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1108
1114
|
'''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
|
|
1109
1115
|
|
|
@@ -1114,6 +1120,7 @@ class IApplication(
|
|
|
1114
1120
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1115
1121
|
: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
|
|
1116
1122
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1123
|
+
: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
|
|
1117
1124
|
: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
|
|
1118
1125
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1119
1126
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1121,6 +1128,7 @@ class IApplication(
|
|
|
1121
1128
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1122
1129
|
: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
|
|
1123
1130
|
: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
|
|
1131
|
+
: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
|
|
1124
1132
|
|
|
1125
1133
|
:default: - average over 5 minutes
|
|
1126
1134
|
|
|
@@ -1135,6 +1143,7 @@ class IApplication(
|
|
|
1135
1143
|
account: typing.Optional[builtins.str] = None,
|
|
1136
1144
|
color: typing.Optional[builtins.str] = None,
|
|
1137
1145
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1146
|
+
id: typing.Optional[builtins.str] = None,
|
|
1138
1147
|
label: typing.Optional[builtins.str] = None,
|
|
1139
1148
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1140
1149
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1142,6 +1151,7 @@ class IApplication(
|
|
|
1142
1151
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1143
1152
|
statistic: typing.Optional[builtins.str] = None,
|
|
1144
1153
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1154
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1145
1155
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1146
1156
|
'''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
|
|
1147
1157
|
|
|
@@ -1155,6 +1165,7 @@ class IApplication(
|
|
|
1155
1165
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1156
1166
|
: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
|
|
1157
1167
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1168
|
+
: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
|
|
1158
1169
|
: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
|
|
1159
1170
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1160
1171
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1162,6 +1173,7 @@ class IApplication(
|
|
|
1162
1173
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1163
1174
|
: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
|
|
1164
1175
|
: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
|
|
1176
|
+
: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
|
|
1165
1177
|
|
|
1166
1178
|
:default: - average over 5 minutes
|
|
1167
1179
|
|
|
@@ -1176,6 +1188,7 @@ class IApplication(
|
|
|
1176
1188
|
account: typing.Optional[builtins.str] = None,
|
|
1177
1189
|
color: typing.Optional[builtins.str] = None,
|
|
1178
1190
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1191
|
+
id: typing.Optional[builtins.str] = None,
|
|
1179
1192
|
label: typing.Optional[builtins.str] = None,
|
|
1180
1193
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1181
1194
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1183,6 +1196,7 @@ class IApplication(
|
|
|
1183
1196
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1184
1197
|
statistic: typing.Optional[builtins.str] = None,
|
|
1185
1198
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1199
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1186
1200
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1187
1201
|
'''(experimental) The overall percentage of CPU utilization across task managers.
|
|
1188
1202
|
|
|
@@ -1197,6 +1211,7 @@ class IApplication(
|
|
|
1197
1211
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1198
1212
|
: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
|
|
1199
1213
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1214
|
+
: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
|
|
1200
1215
|
: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
|
|
1201
1216
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1202
1217
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1204,6 +1219,7 @@ class IApplication(
|
|
|
1204
1219
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1205
1220
|
: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
|
|
1206
1221
|
: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
|
|
1222
|
+
: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
|
|
1207
1223
|
|
|
1208
1224
|
:default: - average over 5 minutes
|
|
1209
1225
|
|
|
@@ -1218,6 +1234,7 @@ class IApplication(
|
|
|
1218
1234
|
account: typing.Optional[builtins.str] = None,
|
|
1219
1235
|
color: typing.Optional[builtins.str] = None,
|
|
1220
1236
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1237
|
+
id: typing.Optional[builtins.str] = None,
|
|
1221
1238
|
label: typing.Optional[builtins.str] = None,
|
|
1222
1239
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1223
1240
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1225,6 +1242,7 @@ class IApplication(
|
|
|
1225
1242
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1226
1243
|
statistic: typing.Optional[builtins.str] = None,
|
|
1227
1244
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1245
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1228
1246
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1229
1247
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
1230
1248
|
|
|
@@ -1235,6 +1253,7 @@ class IApplication(
|
|
|
1235
1253
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1236
1254
|
: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
|
|
1237
1255
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1256
|
+
: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
|
|
1238
1257
|
: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
|
|
1239
1258
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1240
1259
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1242,6 +1261,7 @@ class IApplication(
|
|
|
1242
1261
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1243
1262
|
: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
|
|
1244
1263
|
: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
|
|
1264
|
+
: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
|
|
1245
1265
|
|
|
1246
1266
|
:default: - maximum over 5 minutes
|
|
1247
1267
|
|
|
@@ -1256,6 +1276,7 @@ class IApplication(
|
|
|
1256
1276
|
account: typing.Optional[builtins.str] = None,
|
|
1257
1277
|
color: typing.Optional[builtins.str] = None,
|
|
1258
1278
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1279
|
+
id: typing.Optional[builtins.str] = None,
|
|
1259
1280
|
label: typing.Optional[builtins.str] = None,
|
|
1260
1281
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1261
1282
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1263,6 +1284,7 @@ class IApplication(
|
|
|
1263
1284
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1264
1285
|
statistic: typing.Optional[builtins.str] = None,
|
|
1265
1286
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1287
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1266
1288
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1267
1289
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
1268
1290
|
|
|
@@ -1273,6 +1295,7 @@ class IApplication(
|
|
|
1273
1295
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1274
1296
|
: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
|
|
1275
1297
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1298
|
+
: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
|
|
1276
1299
|
: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
|
|
1277
1300
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1278
1301
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1280,6 +1303,7 @@ class IApplication(
|
|
|
1280
1303
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1281
1304
|
: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
|
|
1282
1305
|
: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
|
|
1306
|
+
: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
|
|
1283
1307
|
|
|
1284
1308
|
:default: - maximum over 5 minutes
|
|
1285
1309
|
|
|
@@ -1294,6 +1318,7 @@ class IApplication(
|
|
|
1294
1318
|
account: typing.Optional[builtins.str] = None,
|
|
1295
1319
|
color: typing.Optional[builtins.str] = None,
|
|
1296
1320
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1321
|
+
id: typing.Optional[builtins.str] = None,
|
|
1297
1322
|
label: typing.Optional[builtins.str] = None,
|
|
1298
1323
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1299
1324
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1301,6 +1326,7 @@ class IApplication(
|
|
|
1301
1326
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1302
1327
|
statistic: typing.Optional[builtins.str] = None,
|
|
1303
1328
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1329
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1304
1330
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1305
1331
|
'''(experimental) The time elapsed during an outage for failing/recovering jobs.
|
|
1306
1332
|
|
|
@@ -1311,6 +1337,7 @@ class IApplication(
|
|
|
1311
1337
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1312
1338
|
: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
|
|
1313
1339
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1340
|
+
: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
|
|
1314
1341
|
: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
|
|
1315
1342
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1316
1343
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1318,6 +1345,7 @@ class IApplication(
|
|
|
1318
1345
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1319
1346
|
: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
|
|
1320
1347
|
: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
|
|
1348
|
+
: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
|
|
1321
1349
|
|
|
1322
1350
|
:default: - average over 5 minutes
|
|
1323
1351
|
|
|
@@ -1332,6 +1360,7 @@ class IApplication(
|
|
|
1332
1360
|
account: typing.Optional[builtins.str] = None,
|
|
1333
1361
|
color: typing.Optional[builtins.str] = None,
|
|
1334
1362
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1363
|
+
id: typing.Optional[builtins.str] = None,
|
|
1335
1364
|
label: typing.Optional[builtins.str] = None,
|
|
1336
1365
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1337
1366
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1339,6 +1368,7 @@ class IApplication(
|
|
|
1339
1368
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1340
1369
|
statistic: typing.Optional[builtins.str] = None,
|
|
1341
1370
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1371
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1342
1372
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1343
1373
|
'''(experimental) The total number of times this job has fully restarted since it was submitted.
|
|
1344
1374
|
|
|
@@ -1351,6 +1381,7 @@ class IApplication(
|
|
|
1351
1381
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1352
1382
|
: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
|
|
1353
1383
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1384
|
+
: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
|
|
1354
1385
|
: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
|
|
1355
1386
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1356
1387
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1358,6 +1389,7 @@ class IApplication(
|
|
|
1358
1389
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1359
1390
|
: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
|
|
1360
1391
|
: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
|
|
1392
|
+
: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
|
|
1361
1393
|
|
|
1362
1394
|
:default: - sum over 5 minutes
|
|
1363
1395
|
|
|
@@ -1372,6 +1404,7 @@ class IApplication(
|
|
|
1372
1404
|
account: typing.Optional[builtins.str] = None,
|
|
1373
1405
|
color: typing.Optional[builtins.str] = None,
|
|
1374
1406
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1407
|
+
id: typing.Optional[builtins.str] = None,
|
|
1375
1408
|
label: typing.Optional[builtins.str] = None,
|
|
1376
1409
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1377
1410
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1379,6 +1412,7 @@ class IApplication(
|
|
|
1379
1412
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1380
1413
|
statistic: typing.Optional[builtins.str] = None,
|
|
1381
1414
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1415
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1382
1416
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1383
1417
|
'''(experimental) Overall heap memory utilization across task managers.
|
|
1384
1418
|
|
|
@@ -1393,6 +1427,7 @@ class IApplication(
|
|
|
1393
1427
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1394
1428
|
: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
|
|
1395
1429
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1430
|
+
: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
|
|
1396
1431
|
: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
|
|
1397
1432
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1398
1433
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1400,6 +1435,7 @@ class IApplication(
|
|
|
1400
1435
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1401
1436
|
: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
|
|
1402
1437
|
: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
|
|
1438
|
+
: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
|
|
1403
1439
|
|
|
1404
1440
|
:default: - average over 5 minutes
|
|
1405
1441
|
|
|
@@ -1414,6 +1450,7 @@ class IApplication(
|
|
|
1414
1450
|
account: typing.Optional[builtins.str] = None,
|
|
1415
1451
|
color: typing.Optional[builtins.str] = None,
|
|
1416
1452
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1453
|
+
id: typing.Optional[builtins.str] = None,
|
|
1417
1454
|
label: typing.Optional[builtins.str] = None,
|
|
1418
1455
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1419
1456
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1421,6 +1458,7 @@ class IApplication(
|
|
|
1421
1458
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1422
1459
|
statistic: typing.Optional[builtins.str] = None,
|
|
1423
1460
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1461
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1424
1462
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1425
1463
|
'''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
|
|
1426
1464
|
|
|
@@ -1434,6 +1472,7 @@ class IApplication(
|
|
|
1434
1472
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1435
1473
|
: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
|
|
1436
1474
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1475
|
+
: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
|
|
1437
1476
|
: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
|
|
1438
1477
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1439
1478
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1441,6 +1480,7 @@ class IApplication(
|
|
|
1441
1480
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1442
1481
|
: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
|
|
1443
1482
|
: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
|
|
1483
|
+
: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
|
|
1444
1484
|
|
|
1445
1485
|
:default: - average over 5 minutes
|
|
1446
1486
|
|
|
@@ -1455,6 +1495,7 @@ class IApplication(
|
|
|
1455
1495
|
account: typing.Optional[builtins.str] = None,
|
|
1456
1496
|
color: typing.Optional[builtins.str] = None,
|
|
1457
1497
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1498
|
+
id: typing.Optional[builtins.str] = None,
|
|
1458
1499
|
label: typing.Optional[builtins.str] = None,
|
|
1459
1500
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1460
1501
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1462,6 +1503,7 @@ class IApplication(
|
|
|
1462
1503
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1463
1504
|
statistic: typing.Optional[builtins.str] = None,
|
|
1464
1505
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1506
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1465
1507
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1466
1508
|
'''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
|
|
1467
1509
|
|
|
@@ -1475,6 +1517,7 @@ class IApplication(
|
|
|
1475
1517
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1476
1518
|
: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
|
|
1477
1519
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1520
|
+
: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
|
|
1478
1521
|
: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
|
|
1479
1522
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1480
1523
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1482,6 +1525,7 @@ class IApplication(
|
|
|
1482
1525
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1483
1526
|
: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
|
|
1484
1527
|
: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
|
|
1528
|
+
: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
|
|
1485
1529
|
|
|
1486
1530
|
:default: - average over 5 minutes
|
|
1487
1531
|
|
|
@@ -1496,6 +1540,7 @@ class IApplication(
|
|
|
1496
1540
|
account: typing.Optional[builtins.str] = None,
|
|
1497
1541
|
color: typing.Optional[builtins.str] = None,
|
|
1498
1542
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1543
|
+
id: typing.Optional[builtins.str] = None,
|
|
1499
1544
|
label: typing.Optional[builtins.str] = None,
|
|
1500
1545
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1501
1546
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1503,6 +1548,7 @@ class IApplication(
|
|
|
1503
1548
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1504
1549
|
statistic: typing.Optional[builtins.str] = None,
|
|
1505
1550
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1551
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1506
1552
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1507
1553
|
'''(experimental) The time it took to complete the last checkpoint.
|
|
1508
1554
|
|
|
@@ -1513,6 +1559,7 @@ class IApplication(
|
|
|
1513
1559
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1514
1560
|
: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
|
|
1515
1561
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1562
|
+
: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
|
|
1516
1563
|
: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
|
|
1517
1564
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1518
1565
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1520,6 +1567,7 @@ class IApplication(
|
|
|
1520
1567
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1521
1568
|
: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
|
|
1522
1569
|
: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
|
|
1570
|
+
: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
|
|
1523
1571
|
|
|
1524
1572
|
:default: - maximum over 5 minutes
|
|
1525
1573
|
|
|
@@ -1534,6 +1582,7 @@ class IApplication(
|
|
|
1534
1582
|
account: typing.Optional[builtins.str] = None,
|
|
1535
1583
|
color: typing.Optional[builtins.str] = None,
|
|
1536
1584
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1585
|
+
id: typing.Optional[builtins.str] = None,
|
|
1537
1586
|
label: typing.Optional[builtins.str] = None,
|
|
1538
1587
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1539
1588
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1541,6 +1590,7 @@ class IApplication(
|
|
|
1541
1590
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1542
1591
|
statistic: typing.Optional[builtins.str] = None,
|
|
1543
1592
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1593
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1544
1594
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1545
1595
|
'''(experimental) The total size of the last checkpoint.
|
|
1546
1596
|
|
|
@@ -1551,6 +1601,7 @@ class IApplication(
|
|
|
1551
1601
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1552
1602
|
: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
|
|
1553
1603
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1604
|
+
: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
|
|
1554
1605
|
: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
|
|
1555
1606
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1556
1607
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1558,6 +1609,7 @@ class IApplication(
|
|
|
1558
1609
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1559
1610
|
: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
|
|
1560
1611
|
: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
|
|
1612
|
+
: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
|
|
1561
1613
|
|
|
1562
1614
|
:default: - maximum over 5 minutes
|
|
1563
1615
|
|
|
@@ -1572,6 +1624,7 @@ class IApplication(
|
|
|
1572
1624
|
account: typing.Optional[builtins.str] = None,
|
|
1573
1625
|
color: typing.Optional[builtins.str] = None,
|
|
1574
1626
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1627
|
+
id: typing.Optional[builtins.str] = None,
|
|
1575
1628
|
label: typing.Optional[builtins.str] = None,
|
|
1576
1629
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1577
1630
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1579,6 +1632,7 @@ class IApplication(
|
|
|
1579
1632
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1580
1633
|
statistic: typing.Optional[builtins.str] = None,
|
|
1581
1634
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1635
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1582
1636
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1583
1637
|
'''(experimental) The total amount of managed memory.
|
|
1584
1638
|
|
|
@@ -1589,6 +1643,7 @@ class IApplication(
|
|
|
1589
1643
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1590
1644
|
: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
|
|
1591
1645
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1646
|
+
: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
|
|
1592
1647
|
: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
|
|
1593
1648
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1594
1649
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1596,6 +1651,7 @@ class IApplication(
|
|
|
1596
1651
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1597
1652
|
: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
|
|
1598
1653
|
: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
|
|
1654
|
+
: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
|
|
1599
1655
|
|
|
1600
1656
|
:default: - average over 5 minutes
|
|
1601
1657
|
|
|
@@ -1610,6 +1666,7 @@ class IApplication(
|
|
|
1610
1666
|
account: typing.Optional[builtins.str] = None,
|
|
1611
1667
|
color: typing.Optional[builtins.str] = None,
|
|
1612
1668
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1669
|
+
id: typing.Optional[builtins.str] = None,
|
|
1613
1670
|
label: typing.Optional[builtins.str] = None,
|
|
1614
1671
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1615
1672
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1617,6 +1674,7 @@ class IApplication(
|
|
|
1617
1674
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1618
1675
|
statistic: typing.Optional[builtins.str] = None,
|
|
1619
1676
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1677
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1620
1678
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1621
1679
|
'''(experimental) The amount of managed memory currently used.
|
|
1622
1680
|
|
|
@@ -1627,6 +1685,7 @@ class IApplication(
|
|
|
1627
1685
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1628
1686
|
: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
|
|
1629
1687
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1688
|
+
: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
|
|
1630
1689
|
: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
|
|
1631
1690
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1632
1691
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1634,6 +1693,7 @@ class IApplication(
|
|
|
1634
1693
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1635
1694
|
: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
|
|
1636
1695
|
: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
|
|
1696
|
+
: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
|
|
1637
1697
|
|
|
1638
1698
|
:default: - average over 5 minutes
|
|
1639
1699
|
|
|
@@ -1648,6 +1708,7 @@ class IApplication(
|
|
|
1648
1708
|
account: typing.Optional[builtins.str] = None,
|
|
1649
1709
|
color: typing.Optional[builtins.str] = None,
|
|
1650
1710
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1711
|
+
id: typing.Optional[builtins.str] = None,
|
|
1651
1712
|
label: typing.Optional[builtins.str] = None,
|
|
1652
1713
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1653
1714
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1655,6 +1716,7 @@ class IApplication(
|
|
|
1655
1716
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1656
1717
|
statistic: typing.Optional[builtins.str] = None,
|
|
1657
1718
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1719
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1658
1720
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1659
1721
|
'''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
|
|
1660
1722
|
|
|
@@ -1665,6 +1727,7 @@ class IApplication(
|
|
|
1665
1727
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1666
1728
|
: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
|
|
1667
1729
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1730
|
+
: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
|
|
1668
1731
|
: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
|
|
1669
1732
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1670
1733
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1672,6 +1735,7 @@ class IApplication(
|
|
|
1672
1735
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1673
1736
|
: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
|
|
1674
1737
|
: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
|
|
1738
|
+
: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
|
|
1675
1739
|
|
|
1676
1740
|
:default: - average over 5 minutes
|
|
1677
1741
|
|
|
@@ -1686,6 +1750,7 @@ class IApplication(
|
|
|
1686
1750
|
account: typing.Optional[builtins.str] = None,
|
|
1687
1751
|
color: typing.Optional[builtins.str] = None,
|
|
1688
1752
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1753
|
+
id: typing.Optional[builtins.str] = None,
|
|
1689
1754
|
label: typing.Optional[builtins.str] = None,
|
|
1690
1755
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1691
1756
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1693,6 +1758,7 @@ class IApplication(
|
|
|
1693
1758
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1694
1759
|
statistic: typing.Optional[builtins.str] = None,
|
|
1695
1760
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1761
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1696
1762
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1697
1763
|
'''(experimental) The number of times checkpointing has failed.
|
|
1698
1764
|
|
|
@@ -1703,6 +1769,7 @@ class IApplication(
|
|
|
1703
1769
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1704
1770
|
: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
|
|
1705
1771
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1772
|
+
: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
|
|
1706
1773
|
: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
|
|
1707
1774
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1708
1775
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1710,6 +1777,7 @@ class IApplication(
|
|
|
1710
1777
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1711
1778
|
: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
|
|
1712
1779
|
: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
|
|
1780
|
+
: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
|
|
1713
1781
|
|
|
1714
1782
|
:default: - sum over 5 minutes
|
|
1715
1783
|
|
|
@@ -1724,6 +1792,7 @@ class IApplication(
|
|
|
1724
1792
|
account: typing.Optional[builtins.str] = None,
|
|
1725
1793
|
color: typing.Optional[builtins.str] = None,
|
|
1726
1794
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1795
|
+
id: typing.Optional[builtins.str] = None,
|
|
1727
1796
|
label: typing.Optional[builtins.str] = None,
|
|
1728
1797
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1729
1798
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1731,6 +1800,7 @@ class IApplication(
|
|
|
1731
1800
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1732
1801
|
statistic: typing.Optional[builtins.str] = None,
|
|
1733
1802
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1803
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1734
1804
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1735
1805
|
'''(experimental) The number of records this operator or task has dropped due to arriving late.
|
|
1736
1806
|
|
|
@@ -1741,6 +1811,7 @@ class IApplication(
|
|
|
1741
1811
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1742
1812
|
: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
|
|
1743
1813
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1814
|
+
: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
|
|
1744
1815
|
: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
|
|
1745
1816
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1746
1817
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1748,6 +1819,7 @@ class IApplication(
|
|
|
1748
1819
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1749
1820
|
: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
|
|
1750
1821
|
: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
|
|
1822
|
+
: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
|
|
1751
1823
|
|
|
1752
1824
|
:default: - sum over 5 minutes
|
|
1753
1825
|
|
|
@@ -1762,6 +1834,7 @@ class IApplication(
|
|
|
1762
1834
|
account: typing.Optional[builtins.str] = None,
|
|
1763
1835
|
color: typing.Optional[builtins.str] = None,
|
|
1764
1836
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1837
|
+
id: typing.Optional[builtins.str] = None,
|
|
1765
1838
|
label: typing.Optional[builtins.str] = None,
|
|
1766
1839
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1767
1840
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1769,6 +1842,7 @@ class IApplication(
|
|
|
1769
1842
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1770
1843
|
statistic: typing.Optional[builtins.str] = None,
|
|
1771
1844
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1845
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1772
1846
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1773
1847
|
'''(experimental) The total number of records this application, operator, or task has received.
|
|
1774
1848
|
|
|
@@ -1779,6 +1853,7 @@ class IApplication(
|
|
|
1779
1853
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1780
1854
|
: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
|
|
1781
1855
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1856
|
+
: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
|
|
1782
1857
|
: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
|
|
1783
1858
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1784
1859
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1786,6 +1861,7 @@ class IApplication(
|
|
|
1786
1861
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1787
1862
|
: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
|
|
1788
1863
|
: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
|
|
1864
|
+
: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
|
|
1789
1865
|
|
|
1790
1866
|
:default: - average over 5 minutes
|
|
1791
1867
|
|
|
@@ -1800,6 +1876,7 @@ class IApplication(
|
|
|
1800
1876
|
account: typing.Optional[builtins.str] = None,
|
|
1801
1877
|
color: typing.Optional[builtins.str] = None,
|
|
1802
1878
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1879
|
+
id: typing.Optional[builtins.str] = None,
|
|
1803
1880
|
label: typing.Optional[builtins.str] = None,
|
|
1804
1881
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1805
1882
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1807,6 +1884,7 @@ class IApplication(
|
|
|
1807
1884
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1808
1885
|
statistic: typing.Optional[builtins.str] = None,
|
|
1809
1886
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1887
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1810
1888
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1811
1889
|
'''(experimental) The total number of records this application, operator or task has received per second.
|
|
1812
1890
|
|
|
@@ -1817,6 +1895,7 @@ class IApplication(
|
|
|
1817
1895
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1818
1896
|
: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
|
|
1819
1897
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1898
|
+
: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
|
|
1820
1899
|
: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
|
|
1821
1900
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1822
1901
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1824,6 +1903,7 @@ class IApplication(
|
|
|
1824
1903
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1825
1904
|
: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
|
|
1826
1905
|
: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
|
|
1906
|
+
: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
|
|
1827
1907
|
|
|
1828
1908
|
:default: - average over 5 minutes
|
|
1829
1909
|
|
|
@@ -1838,6 +1918,7 @@ class IApplication(
|
|
|
1838
1918
|
account: typing.Optional[builtins.str] = None,
|
|
1839
1919
|
color: typing.Optional[builtins.str] = None,
|
|
1840
1920
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1921
|
+
id: typing.Optional[builtins.str] = None,
|
|
1841
1922
|
label: typing.Optional[builtins.str] = None,
|
|
1842
1923
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1843
1924
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1845,6 +1926,7 @@ class IApplication(
|
|
|
1845
1926
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1846
1927
|
statistic: typing.Optional[builtins.str] = None,
|
|
1847
1928
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1929
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1848
1930
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1849
1931
|
'''(experimental) The total number of records this application, operator or task has emitted.
|
|
1850
1932
|
|
|
@@ -1855,6 +1937,7 @@ class IApplication(
|
|
|
1855
1937
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1856
1938
|
: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
|
|
1857
1939
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1940
|
+
: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
|
|
1858
1941
|
: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
|
|
1859
1942
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1860
1943
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1862,6 +1945,7 @@ class IApplication(
|
|
|
1862
1945
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1863
1946
|
: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
|
|
1864
1947
|
: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
|
|
1948
|
+
: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
|
|
1865
1949
|
|
|
1866
1950
|
:default: - average over 5 minutes
|
|
1867
1951
|
|
|
@@ -1876,6 +1960,7 @@ class IApplication(
|
|
|
1876
1960
|
account: typing.Optional[builtins.str] = None,
|
|
1877
1961
|
color: typing.Optional[builtins.str] = None,
|
|
1878
1962
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1963
|
+
id: typing.Optional[builtins.str] = None,
|
|
1879
1964
|
label: typing.Optional[builtins.str] = None,
|
|
1880
1965
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1881
1966
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1883,6 +1968,7 @@ class IApplication(
|
|
|
1883
1968
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1884
1969
|
statistic: typing.Optional[builtins.str] = None,
|
|
1885
1970
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1971
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1886
1972
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1887
1973
|
'''(experimental) The total number of records this application, operator or task has emitted per second.
|
|
1888
1974
|
|
|
@@ -1893,6 +1979,7 @@ class IApplication(
|
|
|
1893
1979
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1894
1980
|
: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
|
|
1895
1981
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
1982
|
+
: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
|
|
1896
1983
|
: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
|
|
1897
1984
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1898
1985
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1900,6 +1987,7 @@ class IApplication(
|
|
|
1900
1987
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1901
1988
|
: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
|
|
1902
1989
|
: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
|
|
1990
|
+
: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
|
|
1903
1991
|
|
|
1904
1992
|
:default: - average over 5 minutes
|
|
1905
1993
|
|
|
@@ -1914,6 +2002,7 @@ class IApplication(
|
|
|
1914
2002
|
account: typing.Optional[builtins.str] = None,
|
|
1915
2003
|
color: typing.Optional[builtins.str] = None,
|
|
1916
2004
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2005
|
+
id: typing.Optional[builtins.str] = None,
|
|
1917
2006
|
label: typing.Optional[builtins.str] = None,
|
|
1918
2007
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1919
2008
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1921,6 +2010,7 @@ class IApplication(
|
|
|
1921
2010
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1922
2011
|
statistic: typing.Optional[builtins.str] = None,
|
|
1923
2012
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2013
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1924
2014
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1925
2015
|
'''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
|
|
1926
2016
|
|
|
@@ -1931,6 +2021,7 @@ class IApplication(
|
|
|
1931
2021
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1932
2022
|
: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
|
|
1933
2023
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2024
|
+
: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
|
|
1934
2025
|
: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
|
|
1935
2026
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1936
2027
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1938,6 +2029,7 @@ class IApplication(
|
|
|
1938
2029
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1939
2030
|
: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
|
|
1940
2031
|
: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
|
|
2032
|
+
: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
|
|
1941
2033
|
|
|
1942
2034
|
:default: - sum over 5 minutes
|
|
1943
2035
|
|
|
@@ -1952,6 +2044,7 @@ class IApplication(
|
|
|
1952
2044
|
account: typing.Optional[builtins.str] = None,
|
|
1953
2045
|
color: typing.Optional[builtins.str] = None,
|
|
1954
2046
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2047
|
+
id: typing.Optional[builtins.str] = None,
|
|
1955
2048
|
label: typing.Optional[builtins.str] = None,
|
|
1956
2049
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1957
2050
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1959,6 +2052,7 @@ class IApplication(
|
|
|
1959
2052
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1960
2053
|
statistic: typing.Optional[builtins.str] = None,
|
|
1961
2054
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2055
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
1962
2056
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
1963
2057
|
'''(experimental) The total time spent performing old garbage collection operations.
|
|
1964
2058
|
|
|
@@ -1969,6 +2063,7 @@ class IApplication(
|
|
|
1969
2063
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
1970
2064
|
: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
|
|
1971
2065
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2066
|
+
: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
|
|
1972
2067
|
: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
|
|
1973
2068
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1974
2069
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -1976,6 +2071,7 @@ class IApplication(
|
|
|
1976
2071
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1977
2072
|
: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
|
|
1978
2073
|
: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
|
|
2074
|
+
: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
|
|
1979
2075
|
|
|
1980
2076
|
:default: - sum over 5 minutes
|
|
1981
2077
|
|
|
@@ -1990,6 +2086,7 @@ class IApplication(
|
|
|
1990
2086
|
account: typing.Optional[builtins.str] = None,
|
|
1991
2087
|
color: typing.Optional[builtins.str] = None,
|
|
1992
2088
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2089
|
+
id: typing.Optional[builtins.str] = None,
|
|
1993
2090
|
label: typing.Optional[builtins.str] = None,
|
|
1994
2091
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1995
2092
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -1997,6 +2094,7 @@ class IApplication(
|
|
|
1997
2094
|
stack_region: typing.Optional[builtins.str] = None,
|
|
1998
2095
|
statistic: typing.Optional[builtins.str] = None,
|
|
1999
2096
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2097
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2000
2098
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2001
2099
|
'''(experimental) The total number of live threads used by the application.
|
|
2002
2100
|
|
|
@@ -2007,6 +2105,7 @@ class IApplication(
|
|
|
2007
2105
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2008
2106
|
: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
|
|
2009
2107
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2108
|
+
: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
|
|
2010
2109
|
: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
|
|
2011
2110
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2012
2111
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2014,6 +2113,7 @@ class IApplication(
|
|
|
2014
2113
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2015
2114
|
: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
|
|
2016
2115
|
: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
|
|
2116
|
+
: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
|
|
2017
2117
|
|
|
2018
2118
|
:default: - average over 5 minutes
|
|
2019
2119
|
|
|
@@ -2028,6 +2128,7 @@ class IApplication(
|
|
|
2028
2128
|
account: typing.Optional[builtins.str] = None,
|
|
2029
2129
|
color: typing.Optional[builtins.str] = None,
|
|
2030
2130
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2131
|
+
id: typing.Optional[builtins.str] = None,
|
|
2031
2132
|
label: typing.Optional[builtins.str] = None,
|
|
2032
2133
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2033
2134
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2035,6 +2136,7 @@ class IApplication(
|
|
|
2035
2136
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2036
2137
|
statistic: typing.Optional[builtins.str] = None,
|
|
2037
2138
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2139
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2038
2140
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2039
2141
|
'''(experimental) The time that the job has been running without interruption.
|
|
2040
2142
|
|
|
@@ -2045,6 +2147,7 @@ class IApplication(
|
|
|
2045
2147
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2046
2148
|
: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
|
|
2047
2149
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2150
|
+
: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
|
|
2048
2151
|
: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
|
|
2049
2152
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2050
2153
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2052,6 +2155,7 @@ class IApplication(
|
|
|
2052
2155
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2053
2156
|
: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
|
|
2054
2157
|
: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
|
|
2158
|
+
: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
|
|
2055
2159
|
|
|
2056
2160
|
:default: - sample count over 5 minutes
|
|
2057
2161
|
|
|
@@ -2125,6 +2229,7 @@ class _IApplicationProxy(
|
|
|
2125
2229
|
account: typing.Optional[builtins.str] = None,
|
|
2126
2230
|
color: typing.Optional[builtins.str] = None,
|
|
2127
2231
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2232
|
+
id: typing.Optional[builtins.str] = None,
|
|
2128
2233
|
label: typing.Optional[builtins.str] = None,
|
|
2129
2234
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2130
2235
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2132,6 +2237,7 @@ class _IApplicationProxy(
|
|
|
2132
2237
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2133
2238
|
statistic: typing.Optional[builtins.str] = None,
|
|
2134
2239
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2240
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2135
2241
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2136
2242
|
'''(experimental) Return a CloudWatch metric associated with this Flink application.
|
|
2137
2243
|
|
|
@@ -2139,6 +2245,7 @@ class _IApplicationProxy(
|
|
|
2139
2245
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2140
2246
|
: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
|
|
2141
2247
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2248
|
+
: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
|
|
2142
2249
|
: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
|
|
2143
2250
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2144
2251
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2146,6 +2253,7 @@ class _IApplicationProxy(
|
|
|
2146
2253
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2147
2254
|
: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
|
|
2148
2255
|
: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
|
|
2256
|
+
: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
|
|
2149
2257
|
|
|
2150
2258
|
:stability: experimental
|
|
2151
2259
|
'''
|
|
@@ -2156,6 +2264,7 @@ class _IApplicationProxy(
|
|
|
2156
2264
|
account=account,
|
|
2157
2265
|
color=color,
|
|
2158
2266
|
dimensions_map=dimensions_map,
|
|
2267
|
+
id=id,
|
|
2159
2268
|
label=label,
|
|
2160
2269
|
period=period,
|
|
2161
2270
|
region=region,
|
|
@@ -2163,6 +2272,7 @@ class _IApplicationProxy(
|
|
|
2163
2272
|
stack_region=stack_region,
|
|
2164
2273
|
statistic=statistic,
|
|
2165
2274
|
unit=unit,
|
|
2275
|
+
visible=visible,
|
|
2166
2276
|
)
|
|
2167
2277
|
|
|
2168
2278
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -2174,6 +2284,7 @@ class _IApplicationProxy(
|
|
|
2174
2284
|
account: typing.Optional[builtins.str] = None,
|
|
2175
2285
|
color: typing.Optional[builtins.str] = None,
|
|
2176
2286
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2287
|
+
id: typing.Optional[builtins.str] = None,
|
|
2177
2288
|
label: typing.Optional[builtins.str] = None,
|
|
2178
2289
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2179
2290
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2181,6 +2292,7 @@ class _IApplicationProxy(
|
|
|
2181
2292
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2182
2293
|
statistic: typing.Optional[builtins.str] = None,
|
|
2183
2294
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2295
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2184
2296
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2185
2297
|
'''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
|
|
2186
2298
|
|
|
@@ -2191,6 +2303,7 @@ class _IApplicationProxy(
|
|
|
2191
2303
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2192
2304
|
: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
|
|
2193
2305
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2306
|
+
: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
|
|
2194
2307
|
: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
|
|
2195
2308
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2196
2309
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2198,6 +2311,7 @@ class _IApplicationProxy(
|
|
|
2198
2311
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2199
2312
|
: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
|
|
2200
2313
|
: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
|
|
2314
|
+
: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
|
|
2201
2315
|
|
|
2202
2316
|
:default: - average over 5 minutes
|
|
2203
2317
|
|
|
@@ -2207,6 +2321,7 @@ class _IApplicationProxy(
|
|
|
2207
2321
|
account=account,
|
|
2208
2322
|
color=color,
|
|
2209
2323
|
dimensions_map=dimensions_map,
|
|
2324
|
+
id=id,
|
|
2210
2325
|
label=label,
|
|
2211
2326
|
period=period,
|
|
2212
2327
|
region=region,
|
|
@@ -2214,6 +2329,7 @@ class _IApplicationProxy(
|
|
|
2214
2329
|
stack_region=stack_region,
|
|
2215
2330
|
statistic=statistic,
|
|
2216
2331
|
unit=unit,
|
|
2332
|
+
visible=visible,
|
|
2217
2333
|
)
|
|
2218
2334
|
|
|
2219
2335
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBackPressuredTimeMsPerSecond", [props]))
|
|
@@ -2225,6 +2341,7 @@ class _IApplicationProxy(
|
|
|
2225
2341
|
account: typing.Optional[builtins.str] = None,
|
|
2226
2342
|
color: typing.Optional[builtins.str] = None,
|
|
2227
2343
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2344
|
+
id: typing.Optional[builtins.str] = None,
|
|
2228
2345
|
label: typing.Optional[builtins.str] = None,
|
|
2229
2346
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2230
2347
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2232,6 +2349,7 @@ class _IApplicationProxy(
|
|
|
2232
2349
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2233
2350
|
statistic: typing.Optional[builtins.str] = None,
|
|
2234
2351
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2352
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2235
2353
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2236
2354
|
'''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
|
|
2237
2355
|
|
|
@@ -2245,6 +2363,7 @@ class _IApplicationProxy(
|
|
|
2245
2363
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2246
2364
|
: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
|
|
2247
2365
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2366
|
+
: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
|
|
2248
2367
|
: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
|
|
2249
2368
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2250
2369
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2252,6 +2371,7 @@ class _IApplicationProxy(
|
|
|
2252
2371
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2253
2372
|
: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
|
|
2254
2373
|
: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
|
|
2374
|
+
: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
|
|
2255
2375
|
|
|
2256
2376
|
:default: - average over 5 minutes
|
|
2257
2377
|
|
|
@@ -2261,6 +2381,7 @@ class _IApplicationProxy(
|
|
|
2261
2381
|
account=account,
|
|
2262
2382
|
color=color,
|
|
2263
2383
|
dimensions_map=dimensions_map,
|
|
2384
|
+
id=id,
|
|
2264
2385
|
label=label,
|
|
2265
2386
|
period=period,
|
|
2266
2387
|
region=region,
|
|
@@ -2268,6 +2389,7 @@ class _IApplicationProxy(
|
|
|
2268
2389
|
stack_region=stack_region,
|
|
2269
2390
|
statistic=statistic,
|
|
2270
2391
|
unit=unit,
|
|
2392
|
+
visible=visible,
|
|
2271
2393
|
)
|
|
2272
2394
|
|
|
2273
2395
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBusyTimePerMsPerSecond", [props]))
|
|
@@ -2279,6 +2401,7 @@ class _IApplicationProxy(
|
|
|
2279
2401
|
account: typing.Optional[builtins.str] = None,
|
|
2280
2402
|
color: typing.Optional[builtins.str] = None,
|
|
2281
2403
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2404
|
+
id: typing.Optional[builtins.str] = None,
|
|
2282
2405
|
label: typing.Optional[builtins.str] = None,
|
|
2283
2406
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2284
2407
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2286,6 +2409,7 @@ class _IApplicationProxy(
|
|
|
2286
2409
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2287
2410
|
statistic: typing.Optional[builtins.str] = None,
|
|
2288
2411
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2412
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2289
2413
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2290
2414
|
'''(experimental) The overall percentage of CPU utilization across task managers.
|
|
2291
2415
|
|
|
@@ -2300,6 +2424,7 @@ class _IApplicationProxy(
|
|
|
2300
2424
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2301
2425
|
: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
|
|
2302
2426
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2427
|
+
: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
|
|
2303
2428
|
: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
|
|
2304
2429
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2305
2430
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2307,6 +2432,7 @@ class _IApplicationProxy(
|
|
|
2307
2432
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2308
2433
|
: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
|
|
2309
2434
|
: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
|
|
2435
|
+
: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
|
|
2310
2436
|
|
|
2311
2437
|
:default: - average over 5 minutes
|
|
2312
2438
|
|
|
@@ -2316,6 +2442,7 @@ class _IApplicationProxy(
|
|
|
2316
2442
|
account=account,
|
|
2317
2443
|
color=color,
|
|
2318
2444
|
dimensions_map=dimensions_map,
|
|
2445
|
+
id=id,
|
|
2319
2446
|
label=label,
|
|
2320
2447
|
period=period,
|
|
2321
2448
|
region=region,
|
|
@@ -2323,6 +2450,7 @@ class _IApplicationProxy(
|
|
|
2323
2450
|
stack_region=stack_region,
|
|
2324
2451
|
statistic=statistic,
|
|
2325
2452
|
unit=unit,
|
|
2453
|
+
visible=visible,
|
|
2326
2454
|
)
|
|
2327
2455
|
|
|
2328
2456
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCpuUtilization", [props]))
|
|
@@ -2334,6 +2462,7 @@ class _IApplicationProxy(
|
|
|
2334
2462
|
account: typing.Optional[builtins.str] = None,
|
|
2335
2463
|
color: typing.Optional[builtins.str] = None,
|
|
2336
2464
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2465
|
+
id: typing.Optional[builtins.str] = None,
|
|
2337
2466
|
label: typing.Optional[builtins.str] = None,
|
|
2338
2467
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2339
2468
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2341,6 +2470,7 @@ class _IApplicationProxy(
|
|
|
2341
2470
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2342
2471
|
statistic: typing.Optional[builtins.str] = None,
|
|
2343
2472
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2473
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2344
2474
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2345
2475
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
2346
2476
|
|
|
@@ -2351,6 +2481,7 @@ class _IApplicationProxy(
|
|
|
2351
2481
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2352
2482
|
: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
|
|
2353
2483
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2484
|
+
: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
|
|
2354
2485
|
: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
|
|
2355
2486
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2356
2487
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2358,6 +2489,7 @@ class _IApplicationProxy(
|
|
|
2358
2489
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2359
2490
|
: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
|
|
2360
2491
|
: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
|
|
2492
|
+
: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
|
|
2361
2493
|
|
|
2362
2494
|
:default: - maximum over 5 minutes
|
|
2363
2495
|
|
|
@@ -2367,6 +2499,7 @@ class _IApplicationProxy(
|
|
|
2367
2499
|
account=account,
|
|
2368
2500
|
color=color,
|
|
2369
2501
|
dimensions_map=dimensions_map,
|
|
2502
|
+
id=id,
|
|
2370
2503
|
label=label,
|
|
2371
2504
|
period=period,
|
|
2372
2505
|
region=region,
|
|
@@ -2374,6 +2507,7 @@ class _IApplicationProxy(
|
|
|
2374
2507
|
stack_region=stack_region,
|
|
2375
2508
|
statistic=statistic,
|
|
2376
2509
|
unit=unit,
|
|
2510
|
+
visible=visible,
|
|
2377
2511
|
)
|
|
2378
2512
|
|
|
2379
2513
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentInputWatermark", [props]))
|
|
@@ -2385,6 +2519,7 @@ class _IApplicationProxy(
|
|
|
2385
2519
|
account: typing.Optional[builtins.str] = None,
|
|
2386
2520
|
color: typing.Optional[builtins.str] = None,
|
|
2387
2521
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2522
|
+
id: typing.Optional[builtins.str] = None,
|
|
2388
2523
|
label: typing.Optional[builtins.str] = None,
|
|
2389
2524
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2390
2525
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2392,6 +2527,7 @@ class _IApplicationProxy(
|
|
|
2392
2527
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2393
2528
|
statistic: typing.Optional[builtins.str] = None,
|
|
2394
2529
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2530
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2395
2531
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2396
2532
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
2397
2533
|
|
|
@@ -2402,6 +2538,7 @@ class _IApplicationProxy(
|
|
|
2402
2538
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2403
2539
|
: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
|
|
2404
2540
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2541
|
+
: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
|
|
2405
2542
|
: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
|
|
2406
2543
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2407
2544
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2409,6 +2546,7 @@ class _IApplicationProxy(
|
|
|
2409
2546
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2410
2547
|
: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
|
|
2411
2548
|
: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
|
|
2549
|
+
: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
|
|
2412
2550
|
|
|
2413
2551
|
:default: - maximum over 5 minutes
|
|
2414
2552
|
|
|
@@ -2418,6 +2556,7 @@ class _IApplicationProxy(
|
|
|
2418
2556
|
account=account,
|
|
2419
2557
|
color=color,
|
|
2420
2558
|
dimensions_map=dimensions_map,
|
|
2559
|
+
id=id,
|
|
2421
2560
|
label=label,
|
|
2422
2561
|
period=period,
|
|
2423
2562
|
region=region,
|
|
@@ -2425,6 +2564,7 @@ class _IApplicationProxy(
|
|
|
2425
2564
|
stack_region=stack_region,
|
|
2426
2565
|
statistic=statistic,
|
|
2427
2566
|
unit=unit,
|
|
2567
|
+
visible=visible,
|
|
2428
2568
|
)
|
|
2429
2569
|
|
|
2430
2570
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentOutputWatermark", [props]))
|
|
@@ -2436,6 +2576,7 @@ class _IApplicationProxy(
|
|
|
2436
2576
|
account: typing.Optional[builtins.str] = None,
|
|
2437
2577
|
color: typing.Optional[builtins.str] = None,
|
|
2438
2578
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2579
|
+
id: typing.Optional[builtins.str] = None,
|
|
2439
2580
|
label: typing.Optional[builtins.str] = None,
|
|
2440
2581
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2441
2582
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2443,6 +2584,7 @@ class _IApplicationProxy(
|
|
|
2443
2584
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2444
2585
|
statistic: typing.Optional[builtins.str] = None,
|
|
2445
2586
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2587
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2446
2588
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2447
2589
|
'''(experimental) The time elapsed during an outage for failing/recovering jobs.
|
|
2448
2590
|
|
|
@@ -2453,6 +2595,7 @@ class _IApplicationProxy(
|
|
|
2453
2595
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2454
2596
|
: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
|
|
2455
2597
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2598
|
+
: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
|
|
2456
2599
|
: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
|
|
2457
2600
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2458
2601
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2460,6 +2603,7 @@ class _IApplicationProxy(
|
|
|
2460
2603
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2461
2604
|
: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
|
|
2462
2605
|
: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
|
|
2606
|
+
: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
|
|
2463
2607
|
|
|
2464
2608
|
:default: - average over 5 minutes
|
|
2465
2609
|
|
|
@@ -2469,6 +2613,7 @@ class _IApplicationProxy(
|
|
|
2469
2613
|
account=account,
|
|
2470
2614
|
color=color,
|
|
2471
2615
|
dimensions_map=dimensions_map,
|
|
2616
|
+
id=id,
|
|
2472
2617
|
label=label,
|
|
2473
2618
|
period=period,
|
|
2474
2619
|
region=region,
|
|
@@ -2476,6 +2621,7 @@ class _IApplicationProxy(
|
|
|
2476
2621
|
stack_region=stack_region,
|
|
2477
2622
|
statistic=statistic,
|
|
2478
2623
|
unit=unit,
|
|
2624
|
+
visible=visible,
|
|
2479
2625
|
)
|
|
2480
2626
|
|
|
2481
2627
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricDowntime", [props]))
|
|
@@ -2487,6 +2633,7 @@ class _IApplicationProxy(
|
|
|
2487
2633
|
account: typing.Optional[builtins.str] = None,
|
|
2488
2634
|
color: typing.Optional[builtins.str] = None,
|
|
2489
2635
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2636
|
+
id: typing.Optional[builtins.str] = None,
|
|
2490
2637
|
label: typing.Optional[builtins.str] = None,
|
|
2491
2638
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2492
2639
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2494,6 +2641,7 @@ class _IApplicationProxy(
|
|
|
2494
2641
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2495
2642
|
statistic: typing.Optional[builtins.str] = None,
|
|
2496
2643
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2644
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2497
2645
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2498
2646
|
'''(experimental) The total number of times this job has fully restarted since it was submitted.
|
|
2499
2647
|
|
|
@@ -2506,6 +2654,7 @@ class _IApplicationProxy(
|
|
|
2506
2654
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2507
2655
|
: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
|
|
2508
2656
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2657
|
+
: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
|
|
2509
2658
|
: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
|
|
2510
2659
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2511
2660
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2513,6 +2662,7 @@ class _IApplicationProxy(
|
|
|
2513
2662
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2514
2663
|
: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
|
|
2515
2664
|
: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
|
|
2665
|
+
: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
|
|
2516
2666
|
|
|
2517
2667
|
:default: - sum over 5 minutes
|
|
2518
2668
|
|
|
@@ -2522,6 +2672,7 @@ class _IApplicationProxy(
|
|
|
2522
2672
|
account=account,
|
|
2523
2673
|
color=color,
|
|
2524
2674
|
dimensions_map=dimensions_map,
|
|
2675
|
+
id=id,
|
|
2525
2676
|
label=label,
|
|
2526
2677
|
period=period,
|
|
2527
2678
|
region=region,
|
|
@@ -2529,6 +2680,7 @@ class _IApplicationProxy(
|
|
|
2529
2680
|
stack_region=stack_region,
|
|
2530
2681
|
statistic=statistic,
|
|
2531
2682
|
unit=unit,
|
|
2683
|
+
visible=visible,
|
|
2532
2684
|
)
|
|
2533
2685
|
|
|
2534
2686
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricFullRestarts", [props]))
|
|
@@ -2540,6 +2692,7 @@ class _IApplicationProxy(
|
|
|
2540
2692
|
account: typing.Optional[builtins.str] = None,
|
|
2541
2693
|
color: typing.Optional[builtins.str] = None,
|
|
2542
2694
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2695
|
+
id: typing.Optional[builtins.str] = None,
|
|
2543
2696
|
label: typing.Optional[builtins.str] = None,
|
|
2544
2697
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2545
2698
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2547,6 +2700,7 @@ class _IApplicationProxy(
|
|
|
2547
2700
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2548
2701
|
statistic: typing.Optional[builtins.str] = None,
|
|
2549
2702
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2703
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2550
2704
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2551
2705
|
'''(experimental) Overall heap memory utilization across task managers.
|
|
2552
2706
|
|
|
@@ -2561,6 +2715,7 @@ class _IApplicationProxy(
|
|
|
2561
2715
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2562
2716
|
: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
|
|
2563
2717
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2718
|
+
: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
|
|
2564
2719
|
: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
|
|
2565
2720
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2566
2721
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2568,6 +2723,7 @@ class _IApplicationProxy(
|
|
|
2568
2723
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2569
2724
|
: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
|
|
2570
2725
|
: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
|
|
2726
|
+
: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
|
|
2571
2727
|
|
|
2572
2728
|
:default: - average over 5 minutes
|
|
2573
2729
|
|
|
@@ -2577,6 +2733,7 @@ class _IApplicationProxy(
|
|
|
2577
2733
|
account=account,
|
|
2578
2734
|
color=color,
|
|
2579
2735
|
dimensions_map=dimensions_map,
|
|
2736
|
+
id=id,
|
|
2580
2737
|
label=label,
|
|
2581
2738
|
period=period,
|
|
2582
2739
|
region=region,
|
|
@@ -2584,6 +2741,7 @@ class _IApplicationProxy(
|
|
|
2584
2741
|
stack_region=stack_region,
|
|
2585
2742
|
statistic=statistic,
|
|
2586
2743
|
unit=unit,
|
|
2744
|
+
visible=visible,
|
|
2587
2745
|
)
|
|
2588
2746
|
|
|
2589
2747
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricHeapMemoryUtilization", [props]))
|
|
@@ -2595,6 +2753,7 @@ class _IApplicationProxy(
|
|
|
2595
2753
|
account: typing.Optional[builtins.str] = None,
|
|
2596
2754
|
color: typing.Optional[builtins.str] = None,
|
|
2597
2755
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2756
|
+
id: typing.Optional[builtins.str] = None,
|
|
2598
2757
|
label: typing.Optional[builtins.str] = None,
|
|
2599
2758
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2600
2759
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2602,6 +2761,7 @@ class _IApplicationProxy(
|
|
|
2602
2761
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2603
2762
|
statistic: typing.Optional[builtins.str] = None,
|
|
2604
2763
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2764
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2605
2765
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2606
2766
|
'''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
|
|
2607
2767
|
|
|
@@ -2615,6 +2775,7 @@ class _IApplicationProxy(
|
|
|
2615
2775
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2616
2776
|
: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
|
|
2617
2777
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2778
|
+
: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
|
|
2618
2779
|
: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
|
|
2619
2780
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2620
2781
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2622,6 +2783,7 @@ class _IApplicationProxy(
|
|
|
2622
2783
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2623
2784
|
: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
|
|
2624
2785
|
: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
|
|
2786
|
+
: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
|
|
2625
2787
|
|
|
2626
2788
|
:default: - average over 5 minutes
|
|
2627
2789
|
|
|
@@ -2631,6 +2793,7 @@ class _IApplicationProxy(
|
|
|
2631
2793
|
account=account,
|
|
2632
2794
|
color=color,
|
|
2633
2795
|
dimensions_map=dimensions_map,
|
|
2796
|
+
id=id,
|
|
2634
2797
|
label=label,
|
|
2635
2798
|
period=period,
|
|
2636
2799
|
region=region,
|
|
@@ -2638,6 +2801,7 @@ class _IApplicationProxy(
|
|
|
2638
2801
|
stack_region=stack_region,
|
|
2639
2802
|
statistic=statistic,
|
|
2640
2803
|
unit=unit,
|
|
2804
|
+
visible=visible,
|
|
2641
2805
|
)
|
|
2642
2806
|
|
|
2643
2807
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricIdleTimeMsPerSecond", [props]))
|
|
@@ -2649,6 +2813,7 @@ class _IApplicationProxy(
|
|
|
2649
2813
|
account: typing.Optional[builtins.str] = None,
|
|
2650
2814
|
color: typing.Optional[builtins.str] = None,
|
|
2651
2815
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2816
|
+
id: typing.Optional[builtins.str] = None,
|
|
2652
2817
|
label: typing.Optional[builtins.str] = None,
|
|
2653
2818
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2654
2819
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2656,6 +2821,7 @@ class _IApplicationProxy(
|
|
|
2656
2821
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2657
2822
|
statistic: typing.Optional[builtins.str] = None,
|
|
2658
2823
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2824
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2659
2825
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2660
2826
|
'''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
|
|
2661
2827
|
|
|
@@ -2669,6 +2835,7 @@ class _IApplicationProxy(
|
|
|
2669
2835
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2670
2836
|
: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
|
|
2671
2837
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2838
|
+
: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
|
|
2672
2839
|
: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
|
|
2673
2840
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2674
2841
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2676,6 +2843,7 @@ class _IApplicationProxy(
|
|
|
2676
2843
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2677
2844
|
: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
|
|
2678
2845
|
: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
|
|
2846
|
+
: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
|
|
2679
2847
|
|
|
2680
2848
|
:default: - average over 5 minutes
|
|
2681
2849
|
|
|
@@ -2685,6 +2853,7 @@ class _IApplicationProxy(
|
|
|
2685
2853
|
account=account,
|
|
2686
2854
|
color=color,
|
|
2687
2855
|
dimensions_map=dimensions_map,
|
|
2856
|
+
id=id,
|
|
2688
2857
|
label=label,
|
|
2689
2858
|
period=period,
|
|
2690
2859
|
region=region,
|
|
@@ -2692,6 +2861,7 @@ class _IApplicationProxy(
|
|
|
2692
2861
|
stack_region=stack_region,
|
|
2693
2862
|
statistic=statistic,
|
|
2694
2863
|
unit=unit,
|
|
2864
|
+
visible=visible,
|
|
2695
2865
|
)
|
|
2696
2866
|
|
|
2697
2867
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricKpus", [props]))
|
|
@@ -2703,6 +2873,7 @@ class _IApplicationProxy(
|
|
|
2703
2873
|
account: typing.Optional[builtins.str] = None,
|
|
2704
2874
|
color: typing.Optional[builtins.str] = None,
|
|
2705
2875
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2876
|
+
id: typing.Optional[builtins.str] = None,
|
|
2706
2877
|
label: typing.Optional[builtins.str] = None,
|
|
2707
2878
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2708
2879
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2710,6 +2881,7 @@ class _IApplicationProxy(
|
|
|
2710
2881
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2711
2882
|
statistic: typing.Optional[builtins.str] = None,
|
|
2712
2883
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2884
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2713
2885
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2714
2886
|
'''(experimental) The time it took to complete the last checkpoint.
|
|
2715
2887
|
|
|
@@ -2720,6 +2892,7 @@ class _IApplicationProxy(
|
|
|
2720
2892
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2721
2893
|
: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
|
|
2722
2894
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2895
|
+
: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
|
|
2723
2896
|
: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
|
|
2724
2897
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2725
2898
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2727,6 +2900,7 @@ class _IApplicationProxy(
|
|
|
2727
2900
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2728
2901
|
: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
|
|
2729
2902
|
: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
|
|
2903
|
+
: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
|
|
2730
2904
|
|
|
2731
2905
|
:default: - maximum over 5 minutes
|
|
2732
2906
|
|
|
@@ -2736,6 +2910,7 @@ class _IApplicationProxy(
|
|
|
2736
2910
|
account=account,
|
|
2737
2911
|
color=color,
|
|
2738
2912
|
dimensions_map=dimensions_map,
|
|
2913
|
+
id=id,
|
|
2739
2914
|
label=label,
|
|
2740
2915
|
period=period,
|
|
2741
2916
|
region=region,
|
|
@@ -2743,6 +2918,7 @@ class _IApplicationProxy(
|
|
|
2743
2918
|
stack_region=stack_region,
|
|
2744
2919
|
statistic=statistic,
|
|
2745
2920
|
unit=unit,
|
|
2921
|
+
visible=visible,
|
|
2746
2922
|
)
|
|
2747
2923
|
|
|
2748
2924
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointDuration", [props]))
|
|
@@ -2754,6 +2930,7 @@ class _IApplicationProxy(
|
|
|
2754
2930
|
account: typing.Optional[builtins.str] = None,
|
|
2755
2931
|
color: typing.Optional[builtins.str] = None,
|
|
2756
2932
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2933
|
+
id: typing.Optional[builtins.str] = None,
|
|
2757
2934
|
label: typing.Optional[builtins.str] = None,
|
|
2758
2935
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2759
2936
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2761,6 +2938,7 @@ class _IApplicationProxy(
|
|
|
2761
2938
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2762
2939
|
statistic: typing.Optional[builtins.str] = None,
|
|
2763
2940
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2941
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2764
2942
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2765
2943
|
'''(experimental) The total size of the last checkpoint.
|
|
2766
2944
|
|
|
@@ -2771,6 +2949,7 @@ class _IApplicationProxy(
|
|
|
2771
2949
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2772
2950
|
: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
|
|
2773
2951
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
2952
|
+
: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
|
|
2774
2953
|
: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
|
|
2775
2954
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2776
2955
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2778,6 +2957,7 @@ class _IApplicationProxy(
|
|
|
2778
2957
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2779
2958
|
: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
|
|
2780
2959
|
: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
|
|
2960
|
+
: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
|
|
2781
2961
|
|
|
2782
2962
|
:default: - maximum over 5 minutes
|
|
2783
2963
|
|
|
@@ -2787,6 +2967,7 @@ class _IApplicationProxy(
|
|
|
2787
2967
|
account=account,
|
|
2788
2968
|
color=color,
|
|
2789
2969
|
dimensions_map=dimensions_map,
|
|
2970
|
+
id=id,
|
|
2790
2971
|
label=label,
|
|
2791
2972
|
period=period,
|
|
2792
2973
|
region=region,
|
|
@@ -2794,6 +2975,7 @@ class _IApplicationProxy(
|
|
|
2794
2975
|
stack_region=stack_region,
|
|
2795
2976
|
statistic=statistic,
|
|
2796
2977
|
unit=unit,
|
|
2978
|
+
visible=visible,
|
|
2797
2979
|
)
|
|
2798
2980
|
|
|
2799
2981
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointSize", [props]))
|
|
@@ -2805,6 +2987,7 @@ class _IApplicationProxy(
|
|
|
2805
2987
|
account: typing.Optional[builtins.str] = None,
|
|
2806
2988
|
color: typing.Optional[builtins.str] = None,
|
|
2807
2989
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2990
|
+
id: typing.Optional[builtins.str] = None,
|
|
2808
2991
|
label: typing.Optional[builtins.str] = None,
|
|
2809
2992
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2810
2993
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2812,6 +2995,7 @@ class _IApplicationProxy(
|
|
|
2812
2995
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2813
2996
|
statistic: typing.Optional[builtins.str] = None,
|
|
2814
2997
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2998
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2815
2999
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2816
3000
|
'''(experimental) The total amount of managed memory.
|
|
2817
3001
|
|
|
@@ -2822,6 +3006,7 @@ class _IApplicationProxy(
|
|
|
2822
3006
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2823
3007
|
: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
|
|
2824
3008
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3009
|
+
: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
|
|
2825
3010
|
: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
|
|
2826
3011
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2827
3012
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2829,6 +3014,7 @@ class _IApplicationProxy(
|
|
|
2829
3014
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2830
3015
|
: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
|
|
2831
3016
|
: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
|
|
3017
|
+
: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
|
|
2832
3018
|
|
|
2833
3019
|
:default: - average over 5 minutes
|
|
2834
3020
|
|
|
@@ -2838,6 +3024,7 @@ class _IApplicationProxy(
|
|
|
2838
3024
|
account=account,
|
|
2839
3025
|
color=color,
|
|
2840
3026
|
dimensions_map=dimensions_map,
|
|
3027
|
+
id=id,
|
|
2841
3028
|
label=label,
|
|
2842
3029
|
period=period,
|
|
2843
3030
|
region=region,
|
|
@@ -2845,6 +3032,7 @@ class _IApplicationProxy(
|
|
|
2845
3032
|
stack_region=stack_region,
|
|
2846
3033
|
statistic=statistic,
|
|
2847
3034
|
unit=unit,
|
|
3035
|
+
visible=visible,
|
|
2848
3036
|
)
|
|
2849
3037
|
|
|
2850
3038
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryTotal", [props]))
|
|
@@ -2856,6 +3044,7 @@ class _IApplicationProxy(
|
|
|
2856
3044
|
account: typing.Optional[builtins.str] = None,
|
|
2857
3045
|
color: typing.Optional[builtins.str] = None,
|
|
2858
3046
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3047
|
+
id: typing.Optional[builtins.str] = None,
|
|
2859
3048
|
label: typing.Optional[builtins.str] = None,
|
|
2860
3049
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2861
3050
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2863,6 +3052,7 @@ class _IApplicationProxy(
|
|
|
2863
3052
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2864
3053
|
statistic: typing.Optional[builtins.str] = None,
|
|
2865
3054
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3055
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2866
3056
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2867
3057
|
'''(experimental) The amount of managed memory currently used.
|
|
2868
3058
|
|
|
@@ -2873,6 +3063,7 @@ class _IApplicationProxy(
|
|
|
2873
3063
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2874
3064
|
: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
|
|
2875
3065
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3066
|
+
: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
|
|
2876
3067
|
: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
|
|
2877
3068
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2878
3069
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2880,6 +3071,7 @@ class _IApplicationProxy(
|
|
|
2880
3071
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2881
3072
|
: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
|
|
2882
3073
|
: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
|
|
3074
|
+
: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
|
|
2883
3075
|
|
|
2884
3076
|
:default: - average over 5 minutes
|
|
2885
3077
|
|
|
@@ -2889,6 +3081,7 @@ class _IApplicationProxy(
|
|
|
2889
3081
|
account=account,
|
|
2890
3082
|
color=color,
|
|
2891
3083
|
dimensions_map=dimensions_map,
|
|
3084
|
+
id=id,
|
|
2892
3085
|
label=label,
|
|
2893
3086
|
period=period,
|
|
2894
3087
|
region=region,
|
|
@@ -2896,6 +3089,7 @@ class _IApplicationProxy(
|
|
|
2896
3089
|
stack_region=stack_region,
|
|
2897
3090
|
statistic=statistic,
|
|
2898
3091
|
unit=unit,
|
|
3092
|
+
visible=visible,
|
|
2899
3093
|
)
|
|
2900
3094
|
|
|
2901
3095
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUsed", [props]))
|
|
@@ -2907,6 +3101,7 @@ class _IApplicationProxy(
|
|
|
2907
3101
|
account: typing.Optional[builtins.str] = None,
|
|
2908
3102
|
color: typing.Optional[builtins.str] = None,
|
|
2909
3103
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3104
|
+
id: typing.Optional[builtins.str] = None,
|
|
2910
3105
|
label: typing.Optional[builtins.str] = None,
|
|
2911
3106
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2912
3107
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2914,6 +3109,7 @@ class _IApplicationProxy(
|
|
|
2914
3109
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2915
3110
|
statistic: typing.Optional[builtins.str] = None,
|
|
2916
3111
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3112
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2917
3113
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2918
3114
|
'''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
|
|
2919
3115
|
|
|
@@ -2924,6 +3120,7 @@ class _IApplicationProxy(
|
|
|
2924
3120
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2925
3121
|
: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
|
|
2926
3122
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3123
|
+
: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
|
|
2927
3124
|
: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
|
|
2928
3125
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2929
3126
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2931,6 +3128,7 @@ class _IApplicationProxy(
|
|
|
2931
3128
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2932
3129
|
: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
|
|
2933
3130
|
: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
|
|
3131
|
+
: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
|
|
2934
3132
|
|
|
2935
3133
|
:default: - average over 5 minutes
|
|
2936
3134
|
|
|
@@ -2940,6 +3138,7 @@ class _IApplicationProxy(
|
|
|
2940
3138
|
account=account,
|
|
2941
3139
|
color=color,
|
|
2942
3140
|
dimensions_map=dimensions_map,
|
|
3141
|
+
id=id,
|
|
2943
3142
|
label=label,
|
|
2944
3143
|
period=period,
|
|
2945
3144
|
region=region,
|
|
@@ -2947,6 +3146,7 @@ class _IApplicationProxy(
|
|
|
2947
3146
|
stack_region=stack_region,
|
|
2948
3147
|
statistic=statistic,
|
|
2949
3148
|
unit=unit,
|
|
3149
|
+
visible=visible,
|
|
2950
3150
|
)
|
|
2951
3151
|
|
|
2952
3152
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUtilization", [props]))
|
|
@@ -2958,6 +3158,7 @@ class _IApplicationProxy(
|
|
|
2958
3158
|
account: typing.Optional[builtins.str] = None,
|
|
2959
3159
|
color: typing.Optional[builtins.str] = None,
|
|
2960
3160
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3161
|
+
id: typing.Optional[builtins.str] = None,
|
|
2961
3162
|
label: typing.Optional[builtins.str] = None,
|
|
2962
3163
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2963
3164
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -2965,6 +3166,7 @@ class _IApplicationProxy(
|
|
|
2965
3166
|
stack_region: typing.Optional[builtins.str] = None,
|
|
2966
3167
|
statistic: typing.Optional[builtins.str] = None,
|
|
2967
3168
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3169
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
2968
3170
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
2969
3171
|
'''(experimental) The number of times checkpointing has failed.
|
|
2970
3172
|
|
|
@@ -2975,6 +3177,7 @@ class _IApplicationProxy(
|
|
|
2975
3177
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
2976
3178
|
: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
|
|
2977
3179
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3180
|
+
: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
|
|
2978
3181
|
: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
|
|
2979
3182
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2980
3183
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -2982,6 +3185,7 @@ class _IApplicationProxy(
|
|
|
2982
3185
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2983
3186
|
: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
|
|
2984
3187
|
: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
|
|
3188
|
+
: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
|
|
2985
3189
|
|
|
2986
3190
|
:default: - sum over 5 minutes
|
|
2987
3191
|
|
|
@@ -2991,6 +3195,7 @@ class _IApplicationProxy(
|
|
|
2991
3195
|
account=account,
|
|
2992
3196
|
color=color,
|
|
2993
3197
|
dimensions_map=dimensions_map,
|
|
3198
|
+
id=id,
|
|
2994
3199
|
label=label,
|
|
2995
3200
|
period=period,
|
|
2996
3201
|
region=region,
|
|
@@ -2998,6 +3203,7 @@ class _IApplicationProxy(
|
|
|
2998
3203
|
stack_region=stack_region,
|
|
2999
3204
|
statistic=statistic,
|
|
3000
3205
|
unit=unit,
|
|
3206
|
+
visible=visible,
|
|
3001
3207
|
)
|
|
3002
3208
|
|
|
3003
3209
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumberOfFailedCheckpoints", [props]))
|
|
@@ -3009,6 +3215,7 @@ class _IApplicationProxy(
|
|
|
3009
3215
|
account: typing.Optional[builtins.str] = None,
|
|
3010
3216
|
color: typing.Optional[builtins.str] = None,
|
|
3011
3217
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3218
|
+
id: typing.Optional[builtins.str] = None,
|
|
3012
3219
|
label: typing.Optional[builtins.str] = None,
|
|
3013
3220
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3014
3221
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3016,6 +3223,7 @@ class _IApplicationProxy(
|
|
|
3016
3223
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3017
3224
|
statistic: typing.Optional[builtins.str] = None,
|
|
3018
3225
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3226
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3019
3227
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3020
3228
|
'''(experimental) The number of records this operator or task has dropped due to arriving late.
|
|
3021
3229
|
|
|
@@ -3026,6 +3234,7 @@ class _IApplicationProxy(
|
|
|
3026
3234
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3027
3235
|
: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
|
|
3028
3236
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3237
|
+
: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
|
|
3029
3238
|
: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
|
|
3030
3239
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3031
3240
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3033,6 +3242,7 @@ class _IApplicationProxy(
|
|
|
3033
3242
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3034
3243
|
: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
|
|
3035
3244
|
: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
|
|
3245
|
+
: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
|
|
3036
3246
|
|
|
3037
3247
|
:default: - sum over 5 minutes
|
|
3038
3248
|
|
|
@@ -3042,6 +3252,7 @@ class _IApplicationProxy(
|
|
|
3042
3252
|
account=account,
|
|
3043
3253
|
color=color,
|
|
3044
3254
|
dimensions_map=dimensions_map,
|
|
3255
|
+
id=id,
|
|
3045
3256
|
label=label,
|
|
3046
3257
|
period=period,
|
|
3047
3258
|
region=region,
|
|
@@ -3049,6 +3260,7 @@ class _IApplicationProxy(
|
|
|
3049
3260
|
stack_region=stack_region,
|
|
3050
3261
|
statistic=statistic,
|
|
3051
3262
|
unit=unit,
|
|
3263
|
+
visible=visible,
|
|
3052
3264
|
)
|
|
3053
3265
|
|
|
3054
3266
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumLateRecordsDropped", [props]))
|
|
@@ -3060,6 +3272,7 @@ class _IApplicationProxy(
|
|
|
3060
3272
|
account: typing.Optional[builtins.str] = None,
|
|
3061
3273
|
color: typing.Optional[builtins.str] = None,
|
|
3062
3274
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3275
|
+
id: typing.Optional[builtins.str] = None,
|
|
3063
3276
|
label: typing.Optional[builtins.str] = None,
|
|
3064
3277
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3065
3278
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3067,6 +3280,7 @@ class _IApplicationProxy(
|
|
|
3067
3280
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3068
3281
|
statistic: typing.Optional[builtins.str] = None,
|
|
3069
3282
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3283
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3070
3284
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3071
3285
|
'''(experimental) The total number of records this application, operator, or task has received.
|
|
3072
3286
|
|
|
@@ -3077,6 +3291,7 @@ class _IApplicationProxy(
|
|
|
3077
3291
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3078
3292
|
: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
|
|
3079
3293
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3294
|
+
: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
|
|
3080
3295
|
: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
|
|
3081
3296
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3082
3297
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3084,6 +3299,7 @@ class _IApplicationProxy(
|
|
|
3084
3299
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3085
3300
|
: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
|
|
3086
3301
|
: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
|
|
3302
|
+
: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
|
|
3087
3303
|
|
|
3088
3304
|
:default: - average over 5 minutes
|
|
3089
3305
|
|
|
@@ -3093,6 +3309,7 @@ class _IApplicationProxy(
|
|
|
3093
3309
|
account=account,
|
|
3094
3310
|
color=color,
|
|
3095
3311
|
dimensions_map=dimensions_map,
|
|
3312
|
+
id=id,
|
|
3096
3313
|
label=label,
|
|
3097
3314
|
period=period,
|
|
3098
3315
|
region=region,
|
|
@@ -3100,6 +3317,7 @@ class _IApplicationProxy(
|
|
|
3100
3317
|
stack_region=stack_region,
|
|
3101
3318
|
statistic=statistic,
|
|
3102
3319
|
unit=unit,
|
|
3320
|
+
visible=visible,
|
|
3103
3321
|
)
|
|
3104
3322
|
|
|
3105
3323
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsIn", [props]))
|
|
@@ -3111,6 +3329,7 @@ class _IApplicationProxy(
|
|
|
3111
3329
|
account: typing.Optional[builtins.str] = None,
|
|
3112
3330
|
color: typing.Optional[builtins.str] = None,
|
|
3113
3331
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3332
|
+
id: typing.Optional[builtins.str] = None,
|
|
3114
3333
|
label: typing.Optional[builtins.str] = None,
|
|
3115
3334
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3116
3335
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3118,6 +3337,7 @@ class _IApplicationProxy(
|
|
|
3118
3337
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3119
3338
|
statistic: typing.Optional[builtins.str] = None,
|
|
3120
3339
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3340
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3121
3341
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3122
3342
|
'''(experimental) The total number of records this application, operator or task has received per second.
|
|
3123
3343
|
|
|
@@ -3128,6 +3348,7 @@ class _IApplicationProxy(
|
|
|
3128
3348
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3129
3349
|
: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
|
|
3130
3350
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3351
|
+
: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
|
|
3131
3352
|
: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
|
|
3132
3353
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3133
3354
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3135,6 +3356,7 @@ class _IApplicationProxy(
|
|
|
3135
3356
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3136
3357
|
: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
|
|
3137
3358
|
: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
|
|
3359
|
+
: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
|
|
3138
3360
|
|
|
3139
3361
|
:default: - average over 5 minutes
|
|
3140
3362
|
|
|
@@ -3144,6 +3366,7 @@ class _IApplicationProxy(
|
|
|
3144
3366
|
account=account,
|
|
3145
3367
|
color=color,
|
|
3146
3368
|
dimensions_map=dimensions_map,
|
|
3369
|
+
id=id,
|
|
3147
3370
|
label=label,
|
|
3148
3371
|
period=period,
|
|
3149
3372
|
region=region,
|
|
@@ -3151,6 +3374,7 @@ class _IApplicationProxy(
|
|
|
3151
3374
|
stack_region=stack_region,
|
|
3152
3375
|
statistic=statistic,
|
|
3153
3376
|
unit=unit,
|
|
3377
|
+
visible=visible,
|
|
3154
3378
|
)
|
|
3155
3379
|
|
|
3156
3380
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsInPerSecond", [props]))
|
|
@@ -3162,6 +3386,7 @@ class _IApplicationProxy(
|
|
|
3162
3386
|
account: typing.Optional[builtins.str] = None,
|
|
3163
3387
|
color: typing.Optional[builtins.str] = None,
|
|
3164
3388
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3389
|
+
id: typing.Optional[builtins.str] = None,
|
|
3165
3390
|
label: typing.Optional[builtins.str] = None,
|
|
3166
3391
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3167
3392
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3169,6 +3394,7 @@ class _IApplicationProxy(
|
|
|
3169
3394
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3170
3395
|
statistic: typing.Optional[builtins.str] = None,
|
|
3171
3396
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3397
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3172
3398
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3173
3399
|
'''(experimental) The total number of records this application, operator or task has emitted.
|
|
3174
3400
|
|
|
@@ -3179,6 +3405,7 @@ class _IApplicationProxy(
|
|
|
3179
3405
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3180
3406
|
: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
|
|
3181
3407
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3408
|
+
: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
|
|
3182
3409
|
: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
|
|
3183
3410
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3184
3411
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3186,6 +3413,7 @@ class _IApplicationProxy(
|
|
|
3186
3413
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3187
3414
|
: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
|
|
3188
3415
|
: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
|
|
3416
|
+
: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
|
|
3189
3417
|
|
|
3190
3418
|
:default: - average over 5 minutes
|
|
3191
3419
|
|
|
@@ -3195,6 +3423,7 @@ class _IApplicationProxy(
|
|
|
3195
3423
|
account=account,
|
|
3196
3424
|
color=color,
|
|
3197
3425
|
dimensions_map=dimensions_map,
|
|
3426
|
+
id=id,
|
|
3198
3427
|
label=label,
|
|
3199
3428
|
period=period,
|
|
3200
3429
|
region=region,
|
|
@@ -3202,6 +3431,7 @@ class _IApplicationProxy(
|
|
|
3202
3431
|
stack_region=stack_region,
|
|
3203
3432
|
statistic=statistic,
|
|
3204
3433
|
unit=unit,
|
|
3434
|
+
visible=visible,
|
|
3205
3435
|
)
|
|
3206
3436
|
|
|
3207
3437
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOut", [props]))
|
|
@@ -3213,6 +3443,7 @@ class _IApplicationProxy(
|
|
|
3213
3443
|
account: typing.Optional[builtins.str] = None,
|
|
3214
3444
|
color: typing.Optional[builtins.str] = None,
|
|
3215
3445
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3446
|
+
id: typing.Optional[builtins.str] = None,
|
|
3216
3447
|
label: typing.Optional[builtins.str] = None,
|
|
3217
3448
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3218
3449
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3220,6 +3451,7 @@ class _IApplicationProxy(
|
|
|
3220
3451
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3221
3452
|
statistic: typing.Optional[builtins.str] = None,
|
|
3222
3453
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3454
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3223
3455
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3224
3456
|
'''(experimental) The total number of records this application, operator or task has emitted per second.
|
|
3225
3457
|
|
|
@@ -3230,6 +3462,7 @@ class _IApplicationProxy(
|
|
|
3230
3462
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3231
3463
|
: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
|
|
3232
3464
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3465
|
+
: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
|
|
3233
3466
|
: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
|
|
3234
3467
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3235
3468
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3237,6 +3470,7 @@ class _IApplicationProxy(
|
|
|
3237
3470
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3238
3471
|
: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
|
|
3239
3472
|
: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
|
|
3473
|
+
: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
|
|
3240
3474
|
|
|
3241
3475
|
:default: - average over 5 minutes
|
|
3242
3476
|
|
|
@@ -3246,6 +3480,7 @@ class _IApplicationProxy(
|
|
|
3246
3480
|
account=account,
|
|
3247
3481
|
color=color,
|
|
3248
3482
|
dimensions_map=dimensions_map,
|
|
3483
|
+
id=id,
|
|
3249
3484
|
label=label,
|
|
3250
3485
|
period=period,
|
|
3251
3486
|
region=region,
|
|
@@ -3253,6 +3488,7 @@ class _IApplicationProxy(
|
|
|
3253
3488
|
stack_region=stack_region,
|
|
3254
3489
|
statistic=statistic,
|
|
3255
3490
|
unit=unit,
|
|
3491
|
+
visible=visible,
|
|
3256
3492
|
)
|
|
3257
3493
|
|
|
3258
3494
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOutPerSecond", [props]))
|
|
@@ -3264,6 +3500,7 @@ class _IApplicationProxy(
|
|
|
3264
3500
|
account: typing.Optional[builtins.str] = None,
|
|
3265
3501
|
color: typing.Optional[builtins.str] = None,
|
|
3266
3502
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3503
|
+
id: typing.Optional[builtins.str] = None,
|
|
3267
3504
|
label: typing.Optional[builtins.str] = None,
|
|
3268
3505
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3269
3506
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3271,6 +3508,7 @@ class _IApplicationProxy(
|
|
|
3271
3508
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3272
3509
|
statistic: typing.Optional[builtins.str] = None,
|
|
3273
3510
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3511
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3274
3512
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3275
3513
|
'''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
|
|
3276
3514
|
|
|
@@ -3281,6 +3519,7 @@ class _IApplicationProxy(
|
|
|
3281
3519
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3282
3520
|
: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
|
|
3283
3521
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3522
|
+
: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
|
|
3284
3523
|
: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
|
|
3285
3524
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3286
3525
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3288,6 +3527,7 @@ class _IApplicationProxy(
|
|
|
3288
3527
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3289
3528
|
: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
|
|
3290
3529
|
: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
|
|
3530
|
+
: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
|
|
3291
3531
|
|
|
3292
3532
|
:default: - sum over 5 minutes
|
|
3293
3533
|
|
|
@@ -3297,6 +3537,7 @@ class _IApplicationProxy(
|
|
|
3297
3537
|
account=account,
|
|
3298
3538
|
color=color,
|
|
3299
3539
|
dimensions_map=dimensions_map,
|
|
3540
|
+
id=id,
|
|
3300
3541
|
label=label,
|
|
3301
3542
|
period=period,
|
|
3302
3543
|
region=region,
|
|
@@ -3304,6 +3545,7 @@ class _IApplicationProxy(
|
|
|
3304
3545
|
stack_region=stack_region,
|
|
3305
3546
|
statistic=statistic,
|
|
3306
3547
|
unit=unit,
|
|
3548
|
+
visible=visible,
|
|
3307
3549
|
)
|
|
3308
3550
|
|
|
3309
3551
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCCount", [props]))
|
|
@@ -3315,6 +3557,7 @@ class _IApplicationProxy(
|
|
|
3315
3557
|
account: typing.Optional[builtins.str] = None,
|
|
3316
3558
|
color: typing.Optional[builtins.str] = None,
|
|
3317
3559
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3560
|
+
id: typing.Optional[builtins.str] = None,
|
|
3318
3561
|
label: typing.Optional[builtins.str] = None,
|
|
3319
3562
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3320
3563
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3322,6 +3565,7 @@ class _IApplicationProxy(
|
|
|
3322
3565
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3323
3566
|
statistic: typing.Optional[builtins.str] = None,
|
|
3324
3567
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3568
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3325
3569
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3326
3570
|
'''(experimental) The total time spent performing old garbage collection operations.
|
|
3327
3571
|
|
|
@@ -3332,6 +3576,7 @@ class _IApplicationProxy(
|
|
|
3332
3576
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3333
3577
|
: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
|
|
3334
3578
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3579
|
+
: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
|
|
3335
3580
|
: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
|
|
3336
3581
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3337
3582
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3339,6 +3584,7 @@ class _IApplicationProxy(
|
|
|
3339
3584
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3340
3585
|
: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
|
|
3341
3586
|
: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
|
|
3587
|
+
: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
|
|
3342
3588
|
|
|
3343
3589
|
:default: - sum over 5 minutes
|
|
3344
3590
|
|
|
@@ -3348,6 +3594,7 @@ class _IApplicationProxy(
|
|
|
3348
3594
|
account=account,
|
|
3349
3595
|
color=color,
|
|
3350
3596
|
dimensions_map=dimensions_map,
|
|
3597
|
+
id=id,
|
|
3351
3598
|
label=label,
|
|
3352
3599
|
period=period,
|
|
3353
3600
|
region=region,
|
|
@@ -3355,6 +3602,7 @@ class _IApplicationProxy(
|
|
|
3355
3602
|
stack_region=stack_region,
|
|
3356
3603
|
statistic=statistic,
|
|
3357
3604
|
unit=unit,
|
|
3605
|
+
visible=visible,
|
|
3358
3606
|
)
|
|
3359
3607
|
|
|
3360
3608
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCTime", [props]))
|
|
@@ -3366,6 +3614,7 @@ class _IApplicationProxy(
|
|
|
3366
3614
|
account: typing.Optional[builtins.str] = None,
|
|
3367
3615
|
color: typing.Optional[builtins.str] = None,
|
|
3368
3616
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3617
|
+
id: typing.Optional[builtins.str] = None,
|
|
3369
3618
|
label: typing.Optional[builtins.str] = None,
|
|
3370
3619
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3371
3620
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3373,6 +3622,7 @@ class _IApplicationProxy(
|
|
|
3373
3622
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3374
3623
|
statistic: typing.Optional[builtins.str] = None,
|
|
3375
3624
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3625
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3376
3626
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3377
3627
|
'''(experimental) The total number of live threads used by the application.
|
|
3378
3628
|
|
|
@@ -3383,6 +3633,7 @@ class _IApplicationProxy(
|
|
|
3383
3633
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3384
3634
|
: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
|
|
3385
3635
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3636
|
+
: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
|
|
3386
3637
|
: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
|
|
3387
3638
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3388
3639
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3390,6 +3641,7 @@ class _IApplicationProxy(
|
|
|
3390
3641
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3391
3642
|
: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
|
|
3392
3643
|
: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
|
|
3644
|
+
: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
|
|
3393
3645
|
|
|
3394
3646
|
:default: - average over 5 minutes
|
|
3395
3647
|
|
|
@@ -3399,6 +3651,7 @@ class _IApplicationProxy(
|
|
|
3399
3651
|
account=account,
|
|
3400
3652
|
color=color,
|
|
3401
3653
|
dimensions_map=dimensions_map,
|
|
3654
|
+
id=id,
|
|
3402
3655
|
label=label,
|
|
3403
3656
|
period=period,
|
|
3404
3657
|
region=region,
|
|
@@ -3406,6 +3659,7 @@ class _IApplicationProxy(
|
|
|
3406
3659
|
stack_region=stack_region,
|
|
3407
3660
|
statistic=statistic,
|
|
3408
3661
|
unit=unit,
|
|
3662
|
+
visible=visible,
|
|
3409
3663
|
)
|
|
3410
3664
|
|
|
3411
3665
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricThreadsCount", [props]))
|
|
@@ -3417,6 +3671,7 @@ class _IApplicationProxy(
|
|
|
3417
3671
|
account: typing.Optional[builtins.str] = None,
|
|
3418
3672
|
color: typing.Optional[builtins.str] = None,
|
|
3419
3673
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3674
|
+
id: typing.Optional[builtins.str] = None,
|
|
3420
3675
|
label: typing.Optional[builtins.str] = None,
|
|
3421
3676
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3422
3677
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3424,6 +3679,7 @@ class _IApplicationProxy(
|
|
|
3424
3679
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3425
3680
|
statistic: typing.Optional[builtins.str] = None,
|
|
3426
3681
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3682
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3427
3683
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3428
3684
|
'''(experimental) The time that the job has been running without interruption.
|
|
3429
3685
|
|
|
@@ -3434,6 +3690,7 @@ class _IApplicationProxy(
|
|
|
3434
3690
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3435
3691
|
: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
|
|
3436
3692
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3693
|
+
: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
|
|
3437
3694
|
: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
|
|
3438
3695
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3439
3696
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3441,6 +3698,7 @@ class _IApplicationProxy(
|
|
|
3441
3698
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3442
3699
|
: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
|
|
3443
3700
|
: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
|
|
3701
|
+
: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
|
|
3444
3702
|
|
|
3445
3703
|
:default: - sample count over 5 minutes
|
|
3446
3704
|
|
|
@@ -3450,6 +3708,7 @@ class _IApplicationProxy(
|
|
|
3450
3708
|
account=account,
|
|
3451
3709
|
color=color,
|
|
3452
3710
|
dimensions_map=dimensions_map,
|
|
3711
|
+
id=id,
|
|
3453
3712
|
label=label,
|
|
3454
3713
|
period=period,
|
|
3455
3714
|
region=region,
|
|
@@ -3457,6 +3716,7 @@ class _IApplicationProxy(
|
|
|
3457
3716
|
stack_region=stack_region,
|
|
3458
3717
|
statistic=statistic,
|
|
3459
3718
|
unit=unit,
|
|
3719
|
+
visible=visible,
|
|
3460
3720
|
)
|
|
3461
3721
|
|
|
3462
3722
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricUptime", [props]))
|
|
@@ -3966,6 +4226,7 @@ class Application(
|
|
|
3966
4226
|
account: typing.Optional[builtins.str] = None,
|
|
3967
4227
|
color: typing.Optional[builtins.str] = None,
|
|
3968
4228
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4229
|
+
id: typing.Optional[builtins.str] = None,
|
|
3969
4230
|
label: typing.Optional[builtins.str] = None,
|
|
3970
4231
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3971
4232
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3973,6 +4234,7 @@ class Application(
|
|
|
3973
4234
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3974
4235
|
statistic: typing.Optional[builtins.str] = None,
|
|
3975
4236
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4237
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3976
4238
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
3977
4239
|
'''(experimental) Return a CloudWatch metric associated with this Flink application.
|
|
3978
4240
|
|
|
@@ -3980,6 +4242,7 @@ class Application(
|
|
|
3980
4242
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3981
4243
|
: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
|
|
3982
4244
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4245
|
+
: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
|
|
3983
4246
|
: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
|
|
3984
4247
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3985
4248
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3987,6 +4250,7 @@ class Application(
|
|
|
3987
4250
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3988
4251
|
: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
|
|
3989
4252
|
: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
|
|
4253
|
+
: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
|
|
3990
4254
|
|
|
3991
4255
|
:stability: experimental
|
|
3992
4256
|
'''
|
|
@@ -3997,6 +4261,7 @@ class Application(
|
|
|
3997
4261
|
account=account,
|
|
3998
4262
|
color=color,
|
|
3999
4263
|
dimensions_map=dimensions_map,
|
|
4264
|
+
id=id,
|
|
4000
4265
|
label=label,
|
|
4001
4266
|
period=period,
|
|
4002
4267
|
region=region,
|
|
@@ -4004,6 +4269,7 @@ class Application(
|
|
|
4004
4269
|
stack_region=stack_region,
|
|
4005
4270
|
statistic=statistic,
|
|
4006
4271
|
unit=unit,
|
|
4272
|
+
visible=visible,
|
|
4007
4273
|
)
|
|
4008
4274
|
|
|
4009
4275
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -4015,6 +4281,7 @@ class Application(
|
|
|
4015
4281
|
account: typing.Optional[builtins.str] = None,
|
|
4016
4282
|
color: typing.Optional[builtins.str] = None,
|
|
4017
4283
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4284
|
+
id: typing.Optional[builtins.str] = None,
|
|
4018
4285
|
label: typing.Optional[builtins.str] = None,
|
|
4019
4286
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4020
4287
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4022,6 +4289,7 @@ class Application(
|
|
|
4022
4289
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4023
4290
|
statistic: typing.Optional[builtins.str] = None,
|
|
4024
4291
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4292
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4025
4293
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4026
4294
|
'''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
|
|
4027
4295
|
|
|
@@ -4032,6 +4300,7 @@ class Application(
|
|
|
4032
4300
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4033
4301
|
: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
|
|
4034
4302
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4303
|
+
: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
|
|
4035
4304
|
: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
|
|
4036
4305
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4037
4306
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4039,6 +4308,7 @@ class Application(
|
|
|
4039
4308
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4040
4309
|
: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
|
|
4041
4310
|
: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
|
|
4311
|
+
: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
|
|
4042
4312
|
|
|
4043
4313
|
:default: - average over 5 minutes
|
|
4044
4314
|
|
|
@@ -4048,6 +4318,7 @@ class Application(
|
|
|
4048
4318
|
account=account,
|
|
4049
4319
|
color=color,
|
|
4050
4320
|
dimensions_map=dimensions_map,
|
|
4321
|
+
id=id,
|
|
4051
4322
|
label=label,
|
|
4052
4323
|
period=period,
|
|
4053
4324
|
region=region,
|
|
@@ -4055,6 +4326,7 @@ class Application(
|
|
|
4055
4326
|
stack_region=stack_region,
|
|
4056
4327
|
statistic=statistic,
|
|
4057
4328
|
unit=unit,
|
|
4329
|
+
visible=visible,
|
|
4058
4330
|
)
|
|
4059
4331
|
|
|
4060
4332
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBackPressuredTimeMsPerSecond", [props]))
|
|
@@ -4066,6 +4338,7 @@ class Application(
|
|
|
4066
4338
|
account: typing.Optional[builtins.str] = None,
|
|
4067
4339
|
color: typing.Optional[builtins.str] = None,
|
|
4068
4340
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4341
|
+
id: typing.Optional[builtins.str] = None,
|
|
4069
4342
|
label: typing.Optional[builtins.str] = None,
|
|
4070
4343
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4071
4344
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4073,6 +4346,7 @@ class Application(
|
|
|
4073
4346
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4074
4347
|
statistic: typing.Optional[builtins.str] = None,
|
|
4075
4348
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4349
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4076
4350
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4077
4351
|
'''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
|
|
4078
4352
|
|
|
@@ -4086,6 +4360,7 @@ class Application(
|
|
|
4086
4360
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4087
4361
|
: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
|
|
4088
4362
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4363
|
+
: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
|
|
4089
4364
|
: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
|
|
4090
4365
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4091
4366
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4093,6 +4368,7 @@ class Application(
|
|
|
4093
4368
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4094
4369
|
: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
|
|
4095
4370
|
: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
|
|
4371
|
+
: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
|
|
4096
4372
|
|
|
4097
4373
|
:default: - average over 5 minutes
|
|
4098
4374
|
|
|
@@ -4102,6 +4378,7 @@ class Application(
|
|
|
4102
4378
|
account=account,
|
|
4103
4379
|
color=color,
|
|
4104
4380
|
dimensions_map=dimensions_map,
|
|
4381
|
+
id=id,
|
|
4105
4382
|
label=label,
|
|
4106
4383
|
period=period,
|
|
4107
4384
|
region=region,
|
|
@@ -4109,6 +4386,7 @@ class Application(
|
|
|
4109
4386
|
stack_region=stack_region,
|
|
4110
4387
|
statistic=statistic,
|
|
4111
4388
|
unit=unit,
|
|
4389
|
+
visible=visible,
|
|
4112
4390
|
)
|
|
4113
4391
|
|
|
4114
4392
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBusyTimePerMsPerSecond", [props]))
|
|
@@ -4120,6 +4398,7 @@ class Application(
|
|
|
4120
4398
|
account: typing.Optional[builtins.str] = None,
|
|
4121
4399
|
color: typing.Optional[builtins.str] = None,
|
|
4122
4400
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4401
|
+
id: typing.Optional[builtins.str] = None,
|
|
4123
4402
|
label: typing.Optional[builtins.str] = None,
|
|
4124
4403
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4125
4404
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4127,6 +4406,7 @@ class Application(
|
|
|
4127
4406
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4128
4407
|
statistic: typing.Optional[builtins.str] = None,
|
|
4129
4408
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4409
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4130
4410
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4131
4411
|
'''(experimental) The overall percentage of CPU utilization across task managers.
|
|
4132
4412
|
|
|
@@ -4141,6 +4421,7 @@ class Application(
|
|
|
4141
4421
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4142
4422
|
: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
|
|
4143
4423
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4424
|
+
: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
|
|
4144
4425
|
: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
|
|
4145
4426
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4146
4427
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4148,6 +4429,7 @@ class Application(
|
|
|
4148
4429
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4149
4430
|
: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
|
|
4150
4431
|
: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
|
|
4432
|
+
: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
|
|
4151
4433
|
|
|
4152
4434
|
:default: - average over 5 minutes
|
|
4153
4435
|
|
|
@@ -4157,6 +4439,7 @@ class Application(
|
|
|
4157
4439
|
account=account,
|
|
4158
4440
|
color=color,
|
|
4159
4441
|
dimensions_map=dimensions_map,
|
|
4442
|
+
id=id,
|
|
4160
4443
|
label=label,
|
|
4161
4444
|
period=period,
|
|
4162
4445
|
region=region,
|
|
@@ -4164,6 +4447,7 @@ class Application(
|
|
|
4164
4447
|
stack_region=stack_region,
|
|
4165
4448
|
statistic=statistic,
|
|
4166
4449
|
unit=unit,
|
|
4450
|
+
visible=visible,
|
|
4167
4451
|
)
|
|
4168
4452
|
|
|
4169
4453
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCpuUtilization", [props]))
|
|
@@ -4175,6 +4459,7 @@ class Application(
|
|
|
4175
4459
|
account: typing.Optional[builtins.str] = None,
|
|
4176
4460
|
color: typing.Optional[builtins.str] = None,
|
|
4177
4461
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4462
|
+
id: typing.Optional[builtins.str] = None,
|
|
4178
4463
|
label: typing.Optional[builtins.str] = None,
|
|
4179
4464
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4180
4465
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4182,6 +4467,7 @@ class Application(
|
|
|
4182
4467
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4183
4468
|
statistic: typing.Optional[builtins.str] = None,
|
|
4184
4469
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4470
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4185
4471
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4186
4472
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
4187
4473
|
|
|
@@ -4192,6 +4478,7 @@ class Application(
|
|
|
4192
4478
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4193
4479
|
: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
|
|
4194
4480
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4481
|
+
: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
|
|
4195
4482
|
: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
|
|
4196
4483
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4197
4484
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4199,6 +4486,7 @@ class Application(
|
|
|
4199
4486
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4200
4487
|
: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
|
|
4201
4488
|
: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
|
|
4489
|
+
: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
|
|
4202
4490
|
|
|
4203
4491
|
:default: - maximum over 5 minutes
|
|
4204
4492
|
|
|
@@ -4208,6 +4496,7 @@ class Application(
|
|
|
4208
4496
|
account=account,
|
|
4209
4497
|
color=color,
|
|
4210
4498
|
dimensions_map=dimensions_map,
|
|
4499
|
+
id=id,
|
|
4211
4500
|
label=label,
|
|
4212
4501
|
period=period,
|
|
4213
4502
|
region=region,
|
|
@@ -4215,6 +4504,7 @@ class Application(
|
|
|
4215
4504
|
stack_region=stack_region,
|
|
4216
4505
|
statistic=statistic,
|
|
4217
4506
|
unit=unit,
|
|
4507
|
+
visible=visible,
|
|
4218
4508
|
)
|
|
4219
4509
|
|
|
4220
4510
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentInputWatermark", [props]))
|
|
@@ -4226,6 +4516,7 @@ class Application(
|
|
|
4226
4516
|
account: typing.Optional[builtins.str] = None,
|
|
4227
4517
|
color: typing.Optional[builtins.str] = None,
|
|
4228
4518
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4519
|
+
id: typing.Optional[builtins.str] = None,
|
|
4229
4520
|
label: typing.Optional[builtins.str] = None,
|
|
4230
4521
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4231
4522
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4233,6 +4524,7 @@ class Application(
|
|
|
4233
4524
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4234
4525
|
statistic: typing.Optional[builtins.str] = None,
|
|
4235
4526
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4527
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4236
4528
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4237
4529
|
'''(experimental) The last watermark this application/operator/task/thread has received.
|
|
4238
4530
|
|
|
@@ -4243,6 +4535,7 @@ class Application(
|
|
|
4243
4535
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4244
4536
|
: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
|
|
4245
4537
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4538
|
+
: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
|
|
4246
4539
|
: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
|
|
4247
4540
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4248
4541
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4250,6 +4543,7 @@ class Application(
|
|
|
4250
4543
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4251
4544
|
: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
|
|
4252
4545
|
: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
|
|
4546
|
+
: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
|
|
4253
4547
|
|
|
4254
4548
|
:default: - maximum over 5 minutes
|
|
4255
4549
|
|
|
@@ -4259,6 +4553,7 @@ class Application(
|
|
|
4259
4553
|
account=account,
|
|
4260
4554
|
color=color,
|
|
4261
4555
|
dimensions_map=dimensions_map,
|
|
4556
|
+
id=id,
|
|
4262
4557
|
label=label,
|
|
4263
4558
|
period=period,
|
|
4264
4559
|
region=region,
|
|
@@ -4266,6 +4561,7 @@ class Application(
|
|
|
4266
4561
|
stack_region=stack_region,
|
|
4267
4562
|
statistic=statistic,
|
|
4268
4563
|
unit=unit,
|
|
4564
|
+
visible=visible,
|
|
4269
4565
|
)
|
|
4270
4566
|
|
|
4271
4567
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentOutputWatermark", [props]))
|
|
@@ -4277,6 +4573,7 @@ class Application(
|
|
|
4277
4573
|
account: typing.Optional[builtins.str] = None,
|
|
4278
4574
|
color: typing.Optional[builtins.str] = None,
|
|
4279
4575
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4576
|
+
id: typing.Optional[builtins.str] = None,
|
|
4280
4577
|
label: typing.Optional[builtins.str] = None,
|
|
4281
4578
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4282
4579
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4284,6 +4581,7 @@ class Application(
|
|
|
4284
4581
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4285
4582
|
statistic: typing.Optional[builtins.str] = None,
|
|
4286
4583
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4584
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4287
4585
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4288
4586
|
'''(experimental) The time elapsed during an outage for failing/recovering jobs.
|
|
4289
4587
|
|
|
@@ -4294,6 +4592,7 @@ class Application(
|
|
|
4294
4592
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4295
4593
|
: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
|
|
4296
4594
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4595
|
+
: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
|
|
4297
4596
|
: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
|
|
4298
4597
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4299
4598
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4301,6 +4600,7 @@ class Application(
|
|
|
4301
4600
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4302
4601
|
: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
|
|
4303
4602
|
: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
|
|
4603
|
+
: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
|
|
4304
4604
|
|
|
4305
4605
|
:default: - average over 5 minutes
|
|
4306
4606
|
|
|
@@ -4310,6 +4610,7 @@ class Application(
|
|
|
4310
4610
|
account=account,
|
|
4311
4611
|
color=color,
|
|
4312
4612
|
dimensions_map=dimensions_map,
|
|
4613
|
+
id=id,
|
|
4313
4614
|
label=label,
|
|
4314
4615
|
period=period,
|
|
4315
4616
|
region=region,
|
|
@@ -4317,6 +4618,7 @@ class Application(
|
|
|
4317
4618
|
stack_region=stack_region,
|
|
4318
4619
|
statistic=statistic,
|
|
4319
4620
|
unit=unit,
|
|
4621
|
+
visible=visible,
|
|
4320
4622
|
)
|
|
4321
4623
|
|
|
4322
4624
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricDowntime", [props]))
|
|
@@ -4328,6 +4630,7 @@ class Application(
|
|
|
4328
4630
|
account: typing.Optional[builtins.str] = None,
|
|
4329
4631
|
color: typing.Optional[builtins.str] = None,
|
|
4330
4632
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4633
|
+
id: typing.Optional[builtins.str] = None,
|
|
4331
4634
|
label: typing.Optional[builtins.str] = None,
|
|
4332
4635
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4333
4636
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4335,6 +4638,7 @@ class Application(
|
|
|
4335
4638
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4336
4639
|
statistic: typing.Optional[builtins.str] = None,
|
|
4337
4640
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4641
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4338
4642
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4339
4643
|
'''(experimental) The total number of times this job has fully restarted since it was submitted.
|
|
4340
4644
|
|
|
@@ -4347,6 +4651,7 @@ class Application(
|
|
|
4347
4651
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4348
4652
|
: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
|
|
4349
4653
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4654
|
+
: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
|
|
4350
4655
|
: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
|
|
4351
4656
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4352
4657
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4354,6 +4659,7 @@ class Application(
|
|
|
4354
4659
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4355
4660
|
: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
|
|
4356
4661
|
: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
|
|
4662
|
+
: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
|
|
4357
4663
|
|
|
4358
4664
|
:default: - sum over 5 minutes
|
|
4359
4665
|
|
|
@@ -4363,6 +4669,7 @@ class Application(
|
|
|
4363
4669
|
account=account,
|
|
4364
4670
|
color=color,
|
|
4365
4671
|
dimensions_map=dimensions_map,
|
|
4672
|
+
id=id,
|
|
4366
4673
|
label=label,
|
|
4367
4674
|
period=period,
|
|
4368
4675
|
region=region,
|
|
@@ -4370,6 +4677,7 @@ class Application(
|
|
|
4370
4677
|
stack_region=stack_region,
|
|
4371
4678
|
statistic=statistic,
|
|
4372
4679
|
unit=unit,
|
|
4680
|
+
visible=visible,
|
|
4373
4681
|
)
|
|
4374
4682
|
|
|
4375
4683
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricFullRestarts", [props]))
|
|
@@ -4381,6 +4689,7 @@ class Application(
|
|
|
4381
4689
|
account: typing.Optional[builtins.str] = None,
|
|
4382
4690
|
color: typing.Optional[builtins.str] = None,
|
|
4383
4691
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4692
|
+
id: typing.Optional[builtins.str] = None,
|
|
4384
4693
|
label: typing.Optional[builtins.str] = None,
|
|
4385
4694
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4386
4695
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4388,6 +4697,7 @@ class Application(
|
|
|
4388
4697
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4389
4698
|
statistic: typing.Optional[builtins.str] = None,
|
|
4390
4699
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4700
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4391
4701
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4392
4702
|
'''(experimental) Overall heap memory utilization across task managers.
|
|
4393
4703
|
|
|
@@ -4402,6 +4712,7 @@ class Application(
|
|
|
4402
4712
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4403
4713
|
: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
|
|
4404
4714
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4715
|
+
: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
|
|
4405
4716
|
: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
|
|
4406
4717
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4407
4718
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4409,6 +4720,7 @@ class Application(
|
|
|
4409
4720
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4410
4721
|
: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
|
|
4411
4722
|
: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
|
|
4723
|
+
: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
|
|
4412
4724
|
|
|
4413
4725
|
:default: - average over 5 minutes
|
|
4414
4726
|
|
|
@@ -4418,6 +4730,7 @@ class Application(
|
|
|
4418
4730
|
account=account,
|
|
4419
4731
|
color=color,
|
|
4420
4732
|
dimensions_map=dimensions_map,
|
|
4733
|
+
id=id,
|
|
4421
4734
|
label=label,
|
|
4422
4735
|
period=period,
|
|
4423
4736
|
region=region,
|
|
@@ -4425,6 +4738,7 @@ class Application(
|
|
|
4425
4738
|
stack_region=stack_region,
|
|
4426
4739
|
statistic=statistic,
|
|
4427
4740
|
unit=unit,
|
|
4741
|
+
visible=visible,
|
|
4428
4742
|
)
|
|
4429
4743
|
|
|
4430
4744
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricHeapMemoryUtilization", [props]))
|
|
@@ -4436,6 +4750,7 @@ class Application(
|
|
|
4436
4750
|
account: typing.Optional[builtins.str] = None,
|
|
4437
4751
|
color: typing.Optional[builtins.str] = None,
|
|
4438
4752
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4753
|
+
id: typing.Optional[builtins.str] = None,
|
|
4439
4754
|
label: typing.Optional[builtins.str] = None,
|
|
4440
4755
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4441
4756
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4443,6 +4758,7 @@ class Application(
|
|
|
4443
4758
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4444
4759
|
statistic: typing.Optional[builtins.str] = None,
|
|
4445
4760
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4761
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4446
4762
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4447
4763
|
'''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
|
|
4448
4764
|
|
|
@@ -4456,6 +4772,7 @@ class Application(
|
|
|
4456
4772
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4457
4773
|
: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
|
|
4458
4774
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4775
|
+
: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
|
|
4459
4776
|
: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
|
|
4460
4777
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4461
4778
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4463,6 +4780,7 @@ class Application(
|
|
|
4463
4780
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4464
4781
|
: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
|
|
4465
4782
|
: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
|
|
4783
|
+
: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
|
|
4466
4784
|
|
|
4467
4785
|
:default: - average over 5 minutes
|
|
4468
4786
|
|
|
@@ -4472,6 +4790,7 @@ class Application(
|
|
|
4472
4790
|
account=account,
|
|
4473
4791
|
color=color,
|
|
4474
4792
|
dimensions_map=dimensions_map,
|
|
4793
|
+
id=id,
|
|
4475
4794
|
label=label,
|
|
4476
4795
|
period=period,
|
|
4477
4796
|
region=region,
|
|
@@ -4479,6 +4798,7 @@ class Application(
|
|
|
4479
4798
|
stack_region=stack_region,
|
|
4480
4799
|
statistic=statistic,
|
|
4481
4800
|
unit=unit,
|
|
4801
|
+
visible=visible,
|
|
4482
4802
|
)
|
|
4483
4803
|
|
|
4484
4804
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricIdleTimeMsPerSecond", [props]))
|
|
@@ -4490,6 +4810,7 @@ class Application(
|
|
|
4490
4810
|
account: typing.Optional[builtins.str] = None,
|
|
4491
4811
|
color: typing.Optional[builtins.str] = None,
|
|
4492
4812
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4813
|
+
id: typing.Optional[builtins.str] = None,
|
|
4493
4814
|
label: typing.Optional[builtins.str] = None,
|
|
4494
4815
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4495
4816
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4497,6 +4818,7 @@ class Application(
|
|
|
4497
4818
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4498
4819
|
statistic: typing.Optional[builtins.str] = None,
|
|
4499
4820
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4821
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4500
4822
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4501
4823
|
'''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
|
|
4502
4824
|
|
|
@@ -4510,6 +4832,7 @@ class Application(
|
|
|
4510
4832
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4511
4833
|
: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
|
|
4512
4834
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4835
|
+
: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
|
|
4513
4836
|
: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
|
|
4514
4837
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4515
4838
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4517,6 +4840,7 @@ class Application(
|
|
|
4517
4840
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4518
4841
|
: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
|
|
4519
4842
|
: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
|
|
4843
|
+
: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
|
|
4520
4844
|
|
|
4521
4845
|
:default: - average over 5 minutes
|
|
4522
4846
|
|
|
@@ -4526,6 +4850,7 @@ class Application(
|
|
|
4526
4850
|
account=account,
|
|
4527
4851
|
color=color,
|
|
4528
4852
|
dimensions_map=dimensions_map,
|
|
4853
|
+
id=id,
|
|
4529
4854
|
label=label,
|
|
4530
4855
|
period=period,
|
|
4531
4856
|
region=region,
|
|
@@ -4533,6 +4858,7 @@ class Application(
|
|
|
4533
4858
|
stack_region=stack_region,
|
|
4534
4859
|
statistic=statistic,
|
|
4535
4860
|
unit=unit,
|
|
4861
|
+
visible=visible,
|
|
4536
4862
|
)
|
|
4537
4863
|
|
|
4538
4864
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricKpus", [props]))
|
|
@@ -4544,6 +4870,7 @@ class Application(
|
|
|
4544
4870
|
account: typing.Optional[builtins.str] = None,
|
|
4545
4871
|
color: typing.Optional[builtins.str] = None,
|
|
4546
4872
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4873
|
+
id: typing.Optional[builtins.str] = None,
|
|
4547
4874
|
label: typing.Optional[builtins.str] = None,
|
|
4548
4875
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4549
4876
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4551,6 +4878,7 @@ class Application(
|
|
|
4551
4878
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4552
4879
|
statistic: typing.Optional[builtins.str] = None,
|
|
4553
4880
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4881
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4554
4882
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4555
4883
|
'''(experimental) The time it took to complete the last checkpoint.
|
|
4556
4884
|
|
|
@@ -4561,6 +4889,7 @@ class Application(
|
|
|
4561
4889
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4562
4890
|
: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
|
|
4563
4891
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4892
|
+
: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
|
|
4564
4893
|
: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
|
|
4565
4894
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4566
4895
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4568,6 +4897,7 @@ class Application(
|
|
|
4568
4897
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4569
4898
|
: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
|
|
4570
4899
|
: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
|
|
4900
|
+
: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
|
|
4571
4901
|
|
|
4572
4902
|
:default: - maximum over 5 minutes
|
|
4573
4903
|
|
|
@@ -4577,6 +4907,7 @@ class Application(
|
|
|
4577
4907
|
account=account,
|
|
4578
4908
|
color=color,
|
|
4579
4909
|
dimensions_map=dimensions_map,
|
|
4910
|
+
id=id,
|
|
4580
4911
|
label=label,
|
|
4581
4912
|
period=period,
|
|
4582
4913
|
region=region,
|
|
@@ -4584,6 +4915,7 @@ class Application(
|
|
|
4584
4915
|
stack_region=stack_region,
|
|
4585
4916
|
statistic=statistic,
|
|
4586
4917
|
unit=unit,
|
|
4918
|
+
visible=visible,
|
|
4587
4919
|
)
|
|
4588
4920
|
|
|
4589
4921
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointDuration", [props]))
|
|
@@ -4595,6 +4927,7 @@ class Application(
|
|
|
4595
4927
|
account: typing.Optional[builtins.str] = None,
|
|
4596
4928
|
color: typing.Optional[builtins.str] = None,
|
|
4597
4929
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4930
|
+
id: typing.Optional[builtins.str] = None,
|
|
4598
4931
|
label: typing.Optional[builtins.str] = None,
|
|
4599
4932
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4600
4933
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4602,6 +4935,7 @@ class Application(
|
|
|
4602
4935
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4603
4936
|
statistic: typing.Optional[builtins.str] = None,
|
|
4604
4937
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4938
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4605
4939
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4606
4940
|
'''(experimental) The total size of the last checkpoint.
|
|
4607
4941
|
|
|
@@ -4612,6 +4946,7 @@ class Application(
|
|
|
4612
4946
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4613
4947
|
: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
|
|
4614
4948
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4949
|
+
: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
|
|
4615
4950
|
: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
|
|
4616
4951
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4617
4952
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4619,6 +4954,7 @@ class Application(
|
|
|
4619
4954
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4620
4955
|
: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
|
|
4621
4956
|
: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
|
|
4957
|
+
: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
|
|
4622
4958
|
|
|
4623
4959
|
:default: - maximum over 5 minutes
|
|
4624
4960
|
|
|
@@ -4628,6 +4964,7 @@ class Application(
|
|
|
4628
4964
|
account=account,
|
|
4629
4965
|
color=color,
|
|
4630
4966
|
dimensions_map=dimensions_map,
|
|
4967
|
+
id=id,
|
|
4631
4968
|
label=label,
|
|
4632
4969
|
period=period,
|
|
4633
4970
|
region=region,
|
|
@@ -4635,6 +4972,7 @@ class Application(
|
|
|
4635
4972
|
stack_region=stack_region,
|
|
4636
4973
|
statistic=statistic,
|
|
4637
4974
|
unit=unit,
|
|
4975
|
+
visible=visible,
|
|
4638
4976
|
)
|
|
4639
4977
|
|
|
4640
4978
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointSize", [props]))
|
|
@@ -4646,6 +4984,7 @@ class Application(
|
|
|
4646
4984
|
account: typing.Optional[builtins.str] = None,
|
|
4647
4985
|
color: typing.Optional[builtins.str] = None,
|
|
4648
4986
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4987
|
+
id: typing.Optional[builtins.str] = None,
|
|
4649
4988
|
label: typing.Optional[builtins.str] = None,
|
|
4650
4989
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4651
4990
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4653,6 +4992,7 @@ class Application(
|
|
|
4653
4992
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4654
4993
|
statistic: typing.Optional[builtins.str] = None,
|
|
4655
4994
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4995
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4656
4996
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4657
4997
|
'''(experimental) The total amount of managed memory.
|
|
4658
4998
|
|
|
@@ -4663,6 +5003,7 @@ class Application(
|
|
|
4663
5003
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4664
5004
|
: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
|
|
4665
5005
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5006
|
+
: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
|
|
4666
5007
|
: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
|
|
4667
5008
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4668
5009
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4670,6 +5011,7 @@ class Application(
|
|
|
4670
5011
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4671
5012
|
: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
|
|
4672
5013
|
: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
|
|
5014
|
+
: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
|
|
4673
5015
|
|
|
4674
5016
|
:default: - average over 5 minutes
|
|
4675
5017
|
|
|
@@ -4679,6 +5021,7 @@ class Application(
|
|
|
4679
5021
|
account=account,
|
|
4680
5022
|
color=color,
|
|
4681
5023
|
dimensions_map=dimensions_map,
|
|
5024
|
+
id=id,
|
|
4682
5025
|
label=label,
|
|
4683
5026
|
period=period,
|
|
4684
5027
|
region=region,
|
|
@@ -4686,6 +5029,7 @@ class Application(
|
|
|
4686
5029
|
stack_region=stack_region,
|
|
4687
5030
|
statistic=statistic,
|
|
4688
5031
|
unit=unit,
|
|
5032
|
+
visible=visible,
|
|
4689
5033
|
)
|
|
4690
5034
|
|
|
4691
5035
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryTotal", [props]))
|
|
@@ -4697,6 +5041,7 @@ class Application(
|
|
|
4697
5041
|
account: typing.Optional[builtins.str] = None,
|
|
4698
5042
|
color: typing.Optional[builtins.str] = None,
|
|
4699
5043
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5044
|
+
id: typing.Optional[builtins.str] = None,
|
|
4700
5045
|
label: typing.Optional[builtins.str] = None,
|
|
4701
5046
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4702
5047
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4704,6 +5049,7 @@ class Application(
|
|
|
4704
5049
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4705
5050
|
statistic: typing.Optional[builtins.str] = None,
|
|
4706
5051
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5052
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4707
5053
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4708
5054
|
'''(experimental) The amount of managed memory currently used.
|
|
4709
5055
|
|
|
@@ -4714,6 +5060,7 @@ class Application(
|
|
|
4714
5060
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4715
5061
|
: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
|
|
4716
5062
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5063
|
+
: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
|
|
4717
5064
|
: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
|
|
4718
5065
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4719
5066
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4721,6 +5068,7 @@ class Application(
|
|
|
4721
5068
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4722
5069
|
: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
|
|
4723
5070
|
: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
|
|
5071
|
+
: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
|
|
4724
5072
|
|
|
4725
5073
|
:default: - average over 5 minutes
|
|
4726
5074
|
|
|
@@ -4730,6 +5078,7 @@ class Application(
|
|
|
4730
5078
|
account=account,
|
|
4731
5079
|
color=color,
|
|
4732
5080
|
dimensions_map=dimensions_map,
|
|
5081
|
+
id=id,
|
|
4733
5082
|
label=label,
|
|
4734
5083
|
period=period,
|
|
4735
5084
|
region=region,
|
|
@@ -4737,6 +5086,7 @@ class Application(
|
|
|
4737
5086
|
stack_region=stack_region,
|
|
4738
5087
|
statistic=statistic,
|
|
4739
5088
|
unit=unit,
|
|
5089
|
+
visible=visible,
|
|
4740
5090
|
)
|
|
4741
5091
|
|
|
4742
5092
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUsed", [props]))
|
|
@@ -4748,6 +5098,7 @@ class Application(
|
|
|
4748
5098
|
account: typing.Optional[builtins.str] = None,
|
|
4749
5099
|
color: typing.Optional[builtins.str] = None,
|
|
4750
5100
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5101
|
+
id: typing.Optional[builtins.str] = None,
|
|
4751
5102
|
label: typing.Optional[builtins.str] = None,
|
|
4752
5103
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4753
5104
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4755,6 +5106,7 @@ class Application(
|
|
|
4755
5106
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4756
5107
|
statistic: typing.Optional[builtins.str] = None,
|
|
4757
5108
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5109
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4758
5110
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4759
5111
|
'''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
|
|
4760
5112
|
|
|
@@ -4765,6 +5117,7 @@ class Application(
|
|
|
4765
5117
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4766
5118
|
: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
|
|
4767
5119
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5120
|
+
: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
|
|
4768
5121
|
: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
|
|
4769
5122
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4770
5123
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4772,6 +5125,7 @@ class Application(
|
|
|
4772
5125
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4773
5126
|
: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
|
|
4774
5127
|
: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
|
|
5128
|
+
: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
|
|
4775
5129
|
|
|
4776
5130
|
:default: - average over 5 minutes
|
|
4777
5131
|
|
|
@@ -4781,6 +5135,7 @@ class Application(
|
|
|
4781
5135
|
account=account,
|
|
4782
5136
|
color=color,
|
|
4783
5137
|
dimensions_map=dimensions_map,
|
|
5138
|
+
id=id,
|
|
4784
5139
|
label=label,
|
|
4785
5140
|
period=period,
|
|
4786
5141
|
region=region,
|
|
@@ -4788,6 +5143,7 @@ class Application(
|
|
|
4788
5143
|
stack_region=stack_region,
|
|
4789
5144
|
statistic=statistic,
|
|
4790
5145
|
unit=unit,
|
|
5146
|
+
visible=visible,
|
|
4791
5147
|
)
|
|
4792
5148
|
|
|
4793
5149
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUtilization", [props]))
|
|
@@ -4799,6 +5155,7 @@ class Application(
|
|
|
4799
5155
|
account: typing.Optional[builtins.str] = None,
|
|
4800
5156
|
color: typing.Optional[builtins.str] = None,
|
|
4801
5157
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5158
|
+
id: typing.Optional[builtins.str] = None,
|
|
4802
5159
|
label: typing.Optional[builtins.str] = None,
|
|
4803
5160
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4804
5161
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4806,6 +5163,7 @@ class Application(
|
|
|
4806
5163
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4807
5164
|
statistic: typing.Optional[builtins.str] = None,
|
|
4808
5165
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5166
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4809
5167
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4810
5168
|
'''(experimental) The number of times checkpointing has failed.
|
|
4811
5169
|
|
|
@@ -4816,6 +5174,7 @@ class Application(
|
|
|
4816
5174
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4817
5175
|
: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
|
|
4818
5176
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5177
|
+
: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
|
|
4819
5178
|
: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
|
|
4820
5179
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4821
5180
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4823,6 +5182,7 @@ class Application(
|
|
|
4823
5182
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4824
5183
|
: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
|
|
4825
5184
|
: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
|
|
5185
|
+
: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
|
|
4826
5186
|
|
|
4827
5187
|
:default: - sum over 5 minutes
|
|
4828
5188
|
|
|
@@ -4832,6 +5192,7 @@ class Application(
|
|
|
4832
5192
|
account=account,
|
|
4833
5193
|
color=color,
|
|
4834
5194
|
dimensions_map=dimensions_map,
|
|
5195
|
+
id=id,
|
|
4835
5196
|
label=label,
|
|
4836
5197
|
period=period,
|
|
4837
5198
|
region=region,
|
|
@@ -4839,6 +5200,7 @@ class Application(
|
|
|
4839
5200
|
stack_region=stack_region,
|
|
4840
5201
|
statistic=statistic,
|
|
4841
5202
|
unit=unit,
|
|
5203
|
+
visible=visible,
|
|
4842
5204
|
)
|
|
4843
5205
|
|
|
4844
5206
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumberOfFailedCheckpoints", [props]))
|
|
@@ -4850,6 +5212,7 @@ class Application(
|
|
|
4850
5212
|
account: typing.Optional[builtins.str] = None,
|
|
4851
5213
|
color: typing.Optional[builtins.str] = None,
|
|
4852
5214
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5215
|
+
id: typing.Optional[builtins.str] = None,
|
|
4853
5216
|
label: typing.Optional[builtins.str] = None,
|
|
4854
5217
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4855
5218
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4857,6 +5220,7 @@ class Application(
|
|
|
4857
5220
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4858
5221
|
statistic: typing.Optional[builtins.str] = None,
|
|
4859
5222
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5223
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4860
5224
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4861
5225
|
'''(experimental) The number of records this operator or task has dropped due to arriving late.
|
|
4862
5226
|
|
|
@@ -4867,6 +5231,7 @@ class Application(
|
|
|
4867
5231
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4868
5232
|
: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
|
|
4869
5233
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5234
|
+
: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
|
|
4870
5235
|
: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
|
|
4871
5236
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4872
5237
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4874,6 +5239,7 @@ class Application(
|
|
|
4874
5239
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4875
5240
|
: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
|
|
4876
5241
|
: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
|
|
5242
|
+
: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
|
|
4877
5243
|
|
|
4878
5244
|
:default: - sum over 5 minutes
|
|
4879
5245
|
|
|
@@ -4883,6 +5249,7 @@ class Application(
|
|
|
4883
5249
|
account=account,
|
|
4884
5250
|
color=color,
|
|
4885
5251
|
dimensions_map=dimensions_map,
|
|
5252
|
+
id=id,
|
|
4886
5253
|
label=label,
|
|
4887
5254
|
period=period,
|
|
4888
5255
|
region=region,
|
|
@@ -4890,6 +5257,7 @@ class Application(
|
|
|
4890
5257
|
stack_region=stack_region,
|
|
4891
5258
|
statistic=statistic,
|
|
4892
5259
|
unit=unit,
|
|
5260
|
+
visible=visible,
|
|
4893
5261
|
)
|
|
4894
5262
|
|
|
4895
5263
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumLateRecordsDropped", [props]))
|
|
@@ -4901,6 +5269,7 @@ class Application(
|
|
|
4901
5269
|
account: typing.Optional[builtins.str] = None,
|
|
4902
5270
|
color: typing.Optional[builtins.str] = None,
|
|
4903
5271
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5272
|
+
id: typing.Optional[builtins.str] = None,
|
|
4904
5273
|
label: typing.Optional[builtins.str] = None,
|
|
4905
5274
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4906
5275
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4908,6 +5277,7 @@ class Application(
|
|
|
4908
5277
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4909
5278
|
statistic: typing.Optional[builtins.str] = None,
|
|
4910
5279
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5280
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4911
5281
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4912
5282
|
'''(experimental) The total number of records this application, operator, or task has received.
|
|
4913
5283
|
|
|
@@ -4918,6 +5288,7 @@ class Application(
|
|
|
4918
5288
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4919
5289
|
: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
|
|
4920
5290
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5291
|
+
: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
|
|
4921
5292
|
: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
|
|
4922
5293
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4923
5294
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4925,6 +5296,7 @@ class Application(
|
|
|
4925
5296
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4926
5297
|
: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
|
|
4927
5298
|
: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
|
|
5299
|
+
: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
|
|
4928
5300
|
|
|
4929
5301
|
:default: - average over 5 minutes
|
|
4930
5302
|
|
|
@@ -4934,6 +5306,7 @@ class Application(
|
|
|
4934
5306
|
account=account,
|
|
4935
5307
|
color=color,
|
|
4936
5308
|
dimensions_map=dimensions_map,
|
|
5309
|
+
id=id,
|
|
4937
5310
|
label=label,
|
|
4938
5311
|
period=period,
|
|
4939
5312
|
region=region,
|
|
@@ -4941,6 +5314,7 @@ class Application(
|
|
|
4941
5314
|
stack_region=stack_region,
|
|
4942
5315
|
statistic=statistic,
|
|
4943
5316
|
unit=unit,
|
|
5317
|
+
visible=visible,
|
|
4944
5318
|
)
|
|
4945
5319
|
|
|
4946
5320
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsIn", [props]))
|
|
@@ -4952,6 +5326,7 @@ class Application(
|
|
|
4952
5326
|
account: typing.Optional[builtins.str] = None,
|
|
4953
5327
|
color: typing.Optional[builtins.str] = None,
|
|
4954
5328
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5329
|
+
id: typing.Optional[builtins.str] = None,
|
|
4955
5330
|
label: typing.Optional[builtins.str] = None,
|
|
4956
5331
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4957
5332
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4959,6 +5334,7 @@ class Application(
|
|
|
4959
5334
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4960
5335
|
statistic: typing.Optional[builtins.str] = None,
|
|
4961
5336
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5337
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4962
5338
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
4963
5339
|
'''(experimental) The total number of records this application, operator or task has received per second.
|
|
4964
5340
|
|
|
@@ -4969,6 +5345,7 @@ class Application(
|
|
|
4969
5345
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4970
5346
|
: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
|
|
4971
5347
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5348
|
+
: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
|
|
4972
5349
|
: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
|
|
4973
5350
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4974
5351
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4976,6 +5353,7 @@ class Application(
|
|
|
4976
5353
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4977
5354
|
: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
|
|
4978
5355
|
: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
|
|
5356
|
+
: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
|
|
4979
5357
|
|
|
4980
5358
|
:default: - average over 5 minutes
|
|
4981
5359
|
|
|
@@ -4985,6 +5363,7 @@ class Application(
|
|
|
4985
5363
|
account=account,
|
|
4986
5364
|
color=color,
|
|
4987
5365
|
dimensions_map=dimensions_map,
|
|
5366
|
+
id=id,
|
|
4988
5367
|
label=label,
|
|
4989
5368
|
period=period,
|
|
4990
5369
|
region=region,
|
|
@@ -4992,6 +5371,7 @@ class Application(
|
|
|
4992
5371
|
stack_region=stack_region,
|
|
4993
5372
|
statistic=statistic,
|
|
4994
5373
|
unit=unit,
|
|
5374
|
+
visible=visible,
|
|
4995
5375
|
)
|
|
4996
5376
|
|
|
4997
5377
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsInPerSecond", [props]))
|
|
@@ -5003,6 +5383,7 @@ class Application(
|
|
|
5003
5383
|
account: typing.Optional[builtins.str] = None,
|
|
5004
5384
|
color: typing.Optional[builtins.str] = None,
|
|
5005
5385
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5386
|
+
id: typing.Optional[builtins.str] = None,
|
|
5006
5387
|
label: typing.Optional[builtins.str] = None,
|
|
5007
5388
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5008
5389
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5010,6 +5391,7 @@ class Application(
|
|
|
5010
5391
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5011
5392
|
statistic: typing.Optional[builtins.str] = None,
|
|
5012
5393
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5394
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5013
5395
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5014
5396
|
'''(experimental) The total number of records this application, operator or task has emitted.
|
|
5015
5397
|
|
|
@@ -5020,6 +5402,7 @@ class Application(
|
|
|
5020
5402
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5021
5403
|
: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
|
|
5022
5404
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5405
|
+
: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
|
|
5023
5406
|
: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
|
|
5024
5407
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5025
5408
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5027,6 +5410,7 @@ class Application(
|
|
|
5027
5410
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5028
5411
|
: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
|
|
5029
5412
|
: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
|
|
5413
|
+
: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
|
|
5030
5414
|
|
|
5031
5415
|
:default: - average over 5 minutes
|
|
5032
5416
|
|
|
@@ -5036,6 +5420,7 @@ class Application(
|
|
|
5036
5420
|
account=account,
|
|
5037
5421
|
color=color,
|
|
5038
5422
|
dimensions_map=dimensions_map,
|
|
5423
|
+
id=id,
|
|
5039
5424
|
label=label,
|
|
5040
5425
|
period=period,
|
|
5041
5426
|
region=region,
|
|
@@ -5043,6 +5428,7 @@ class Application(
|
|
|
5043
5428
|
stack_region=stack_region,
|
|
5044
5429
|
statistic=statistic,
|
|
5045
5430
|
unit=unit,
|
|
5431
|
+
visible=visible,
|
|
5046
5432
|
)
|
|
5047
5433
|
|
|
5048
5434
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOut", [props]))
|
|
@@ -5054,6 +5440,7 @@ class Application(
|
|
|
5054
5440
|
account: typing.Optional[builtins.str] = None,
|
|
5055
5441
|
color: typing.Optional[builtins.str] = None,
|
|
5056
5442
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5443
|
+
id: typing.Optional[builtins.str] = None,
|
|
5057
5444
|
label: typing.Optional[builtins.str] = None,
|
|
5058
5445
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5059
5446
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5061,6 +5448,7 @@ class Application(
|
|
|
5061
5448
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5062
5449
|
statistic: typing.Optional[builtins.str] = None,
|
|
5063
5450
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5451
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5064
5452
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5065
5453
|
'''(experimental) The total number of records this application, operator or task has emitted per second.
|
|
5066
5454
|
|
|
@@ -5071,6 +5459,7 @@ class Application(
|
|
|
5071
5459
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5072
5460
|
: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
|
|
5073
5461
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5462
|
+
: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
|
|
5074
5463
|
: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
|
|
5075
5464
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5076
5465
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5078,6 +5467,7 @@ class Application(
|
|
|
5078
5467
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5079
5468
|
: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
|
|
5080
5469
|
: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
|
|
5470
|
+
: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
|
|
5081
5471
|
|
|
5082
5472
|
:default: - average over 5 minutes
|
|
5083
5473
|
|
|
@@ -5087,6 +5477,7 @@ class Application(
|
|
|
5087
5477
|
account=account,
|
|
5088
5478
|
color=color,
|
|
5089
5479
|
dimensions_map=dimensions_map,
|
|
5480
|
+
id=id,
|
|
5090
5481
|
label=label,
|
|
5091
5482
|
period=period,
|
|
5092
5483
|
region=region,
|
|
@@ -5094,6 +5485,7 @@ class Application(
|
|
|
5094
5485
|
stack_region=stack_region,
|
|
5095
5486
|
statistic=statistic,
|
|
5096
5487
|
unit=unit,
|
|
5488
|
+
visible=visible,
|
|
5097
5489
|
)
|
|
5098
5490
|
|
|
5099
5491
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOutPerSecond", [props]))
|
|
@@ -5105,6 +5497,7 @@ class Application(
|
|
|
5105
5497
|
account: typing.Optional[builtins.str] = None,
|
|
5106
5498
|
color: typing.Optional[builtins.str] = None,
|
|
5107
5499
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5500
|
+
id: typing.Optional[builtins.str] = None,
|
|
5108
5501
|
label: typing.Optional[builtins.str] = None,
|
|
5109
5502
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5110
5503
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5112,6 +5505,7 @@ class Application(
|
|
|
5112
5505
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5113
5506
|
statistic: typing.Optional[builtins.str] = None,
|
|
5114
5507
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5508
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5115
5509
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5116
5510
|
'''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
|
|
5117
5511
|
|
|
@@ -5122,6 +5516,7 @@ class Application(
|
|
|
5122
5516
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5123
5517
|
: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
|
|
5124
5518
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5519
|
+
: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
|
|
5125
5520
|
: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
|
|
5126
5521
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5127
5522
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5129,6 +5524,7 @@ class Application(
|
|
|
5129
5524
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5130
5525
|
: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
|
|
5131
5526
|
: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
|
|
5527
|
+
: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
|
|
5132
5528
|
|
|
5133
5529
|
:default: - sum over 5 minutes
|
|
5134
5530
|
|
|
@@ -5138,6 +5534,7 @@ class Application(
|
|
|
5138
5534
|
account=account,
|
|
5139
5535
|
color=color,
|
|
5140
5536
|
dimensions_map=dimensions_map,
|
|
5537
|
+
id=id,
|
|
5141
5538
|
label=label,
|
|
5142
5539
|
period=period,
|
|
5143
5540
|
region=region,
|
|
@@ -5145,6 +5542,7 @@ class Application(
|
|
|
5145
5542
|
stack_region=stack_region,
|
|
5146
5543
|
statistic=statistic,
|
|
5147
5544
|
unit=unit,
|
|
5545
|
+
visible=visible,
|
|
5148
5546
|
)
|
|
5149
5547
|
|
|
5150
5548
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCCount", [props]))
|
|
@@ -5156,6 +5554,7 @@ class Application(
|
|
|
5156
5554
|
account: typing.Optional[builtins.str] = None,
|
|
5157
5555
|
color: typing.Optional[builtins.str] = None,
|
|
5158
5556
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5557
|
+
id: typing.Optional[builtins.str] = None,
|
|
5159
5558
|
label: typing.Optional[builtins.str] = None,
|
|
5160
5559
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5161
5560
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5163,6 +5562,7 @@ class Application(
|
|
|
5163
5562
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5164
5563
|
statistic: typing.Optional[builtins.str] = None,
|
|
5165
5564
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5565
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5166
5566
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5167
5567
|
'''(experimental) The total time spent performing old garbage collection operations.
|
|
5168
5568
|
|
|
@@ -5173,6 +5573,7 @@ class Application(
|
|
|
5173
5573
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5174
5574
|
: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
|
|
5175
5575
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5576
|
+
: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
|
|
5176
5577
|
: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
|
|
5177
5578
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5178
5579
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5180,6 +5581,7 @@ class Application(
|
|
|
5180
5581
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5181
5582
|
: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
|
|
5182
5583
|
: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
|
|
5584
|
+
: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
|
|
5183
5585
|
|
|
5184
5586
|
:default: - sum over 5 minutes
|
|
5185
5587
|
|
|
@@ -5189,6 +5591,7 @@ class Application(
|
|
|
5189
5591
|
account=account,
|
|
5190
5592
|
color=color,
|
|
5191
5593
|
dimensions_map=dimensions_map,
|
|
5594
|
+
id=id,
|
|
5192
5595
|
label=label,
|
|
5193
5596
|
period=period,
|
|
5194
5597
|
region=region,
|
|
@@ -5196,6 +5599,7 @@ class Application(
|
|
|
5196
5599
|
stack_region=stack_region,
|
|
5197
5600
|
statistic=statistic,
|
|
5198
5601
|
unit=unit,
|
|
5602
|
+
visible=visible,
|
|
5199
5603
|
)
|
|
5200
5604
|
|
|
5201
5605
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCTime", [props]))
|
|
@@ -5207,6 +5611,7 @@ class Application(
|
|
|
5207
5611
|
account: typing.Optional[builtins.str] = None,
|
|
5208
5612
|
color: typing.Optional[builtins.str] = None,
|
|
5209
5613
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5614
|
+
id: typing.Optional[builtins.str] = None,
|
|
5210
5615
|
label: typing.Optional[builtins.str] = None,
|
|
5211
5616
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5212
5617
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5214,6 +5619,7 @@ class Application(
|
|
|
5214
5619
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5215
5620
|
statistic: typing.Optional[builtins.str] = None,
|
|
5216
5621
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5622
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5217
5623
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5218
5624
|
'''(experimental) The total number of live threads used by the application.
|
|
5219
5625
|
|
|
@@ -5224,6 +5630,7 @@ class Application(
|
|
|
5224
5630
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5225
5631
|
: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
|
|
5226
5632
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5633
|
+
: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
|
|
5227
5634
|
: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
|
|
5228
5635
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5229
5636
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5231,6 +5638,7 @@ class Application(
|
|
|
5231
5638
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5232
5639
|
: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
|
|
5233
5640
|
: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
|
|
5641
|
+
: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
|
|
5234
5642
|
|
|
5235
5643
|
:default: - average over 5 minutes
|
|
5236
5644
|
|
|
@@ -5240,6 +5648,7 @@ class Application(
|
|
|
5240
5648
|
account=account,
|
|
5241
5649
|
color=color,
|
|
5242
5650
|
dimensions_map=dimensions_map,
|
|
5651
|
+
id=id,
|
|
5243
5652
|
label=label,
|
|
5244
5653
|
period=period,
|
|
5245
5654
|
region=region,
|
|
@@ -5247,6 +5656,7 @@ class Application(
|
|
|
5247
5656
|
stack_region=stack_region,
|
|
5248
5657
|
statistic=statistic,
|
|
5249
5658
|
unit=unit,
|
|
5659
|
+
visible=visible,
|
|
5250
5660
|
)
|
|
5251
5661
|
|
|
5252
5662
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricThreadsCount", [props]))
|
|
@@ -5258,6 +5668,7 @@ class Application(
|
|
|
5258
5668
|
account: typing.Optional[builtins.str] = None,
|
|
5259
5669
|
color: typing.Optional[builtins.str] = None,
|
|
5260
5670
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5671
|
+
id: typing.Optional[builtins.str] = None,
|
|
5261
5672
|
label: typing.Optional[builtins.str] = None,
|
|
5262
5673
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5263
5674
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5265,6 +5676,7 @@ class Application(
|
|
|
5265
5676
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5266
5677
|
statistic: typing.Optional[builtins.str] = None,
|
|
5267
5678
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5679
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5268
5680
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
5269
5681
|
'''(experimental) The time that the job has been running without interruption.
|
|
5270
5682
|
|
|
@@ -5275,6 +5687,7 @@ class Application(
|
|
|
5275
5687
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5276
5688
|
: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
|
|
5277
5689
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5690
|
+
: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
|
|
5278
5691
|
: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
|
|
5279
5692
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5280
5693
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5282,6 +5695,7 @@ class Application(
|
|
|
5282
5695
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5283
5696
|
: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
|
|
5284
5697
|
: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
|
|
5698
|
+
: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
|
|
5285
5699
|
|
|
5286
5700
|
:default: - average over 5 minutes
|
|
5287
5701
|
|
|
@@ -5291,6 +5705,7 @@ class Application(
|
|
|
5291
5705
|
account=account,
|
|
5292
5706
|
color=color,
|
|
5293
5707
|
dimensions_map=dimensions_map,
|
|
5708
|
+
id=id,
|
|
5294
5709
|
label=label,
|
|
5295
5710
|
period=period,
|
|
5296
5711
|
region=region,
|
|
@@ -5298,6 +5713,7 @@ class Application(
|
|
|
5298
5713
|
stack_region=stack_region,
|
|
5299
5714
|
statistic=statistic,
|
|
5300
5715
|
unit=unit,
|
|
5716
|
+
visible=visible,
|
|
5301
5717
|
)
|
|
5302
5718
|
|
|
5303
5719
|
return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricUptime", [props]))
|
|
@@ -5456,6 +5872,7 @@ def _typecheckingstub__097540094b7582e7d789cf6a116b80ddef50d6da32ceb164de5da9561
|
|
|
5456
5872
|
account: typing.Optional[builtins.str] = None,
|
|
5457
5873
|
color: typing.Optional[builtins.str] = None,
|
|
5458
5874
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5875
|
+
id: typing.Optional[builtins.str] = None,
|
|
5459
5876
|
label: typing.Optional[builtins.str] = None,
|
|
5460
5877
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5461
5878
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5463,6 +5880,7 @@ def _typecheckingstub__097540094b7582e7d789cf6a116b80ddef50d6da32ceb164de5da9561
|
|
|
5463
5880
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5464
5881
|
statistic: typing.Optional[builtins.str] = None,
|
|
5465
5882
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5883
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5466
5884
|
) -> None:
|
|
5467
5885
|
"""Type checking stubs"""
|
|
5468
5886
|
pass
|
|
@@ -5538,6 +5956,7 @@ def _typecheckingstub__bd7be1e816d1e378b989c42da53244077b88147554f5269f162bf7af5
|
|
|
5538
5956
|
account: typing.Optional[builtins.str] = None,
|
|
5539
5957
|
color: typing.Optional[builtins.str] = None,
|
|
5540
5958
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5959
|
+
id: typing.Optional[builtins.str] = None,
|
|
5541
5960
|
label: typing.Optional[builtins.str] = None,
|
|
5542
5961
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5543
5962
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5545,6 +5964,7 @@ def _typecheckingstub__bd7be1e816d1e378b989c42da53244077b88147554f5269f162bf7af5
|
|
|
5545
5964
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5546
5965
|
statistic: typing.Optional[builtins.str] = None,
|
|
5547
5966
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5967
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5548
5968
|
) -> None:
|
|
5549
5969
|
"""Type checking stubs"""
|
|
5550
5970
|
pass
|