@cdklabs/multi-az-observability 0.0.1-alpha.4 → 0.0.1-alpha.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +2237 -769
- package/API.md +5141 -1591
- package/README.md +63 -54
- package/cdk.json +1 -1
- package/lib/alarmsandrules/AvailabilityAndLatencyAlarmsAndRules.d.ts +14 -12
- package/lib/alarmsandrules/AvailabilityAndLatencyAlarmsAndRules.js +50 -49
- package/lib/alarmsandrules/BaseOperationRegionalAlarmsAndRules.js +2 -2
- package/lib/alarmsandrules/BaseOperationZonalAlarmsAndRules.d.ts +6 -15
- package/lib/alarmsandrules/BaseOperationZonalAlarmsAndRules.js +2 -10
- package/lib/alarmsandrules/CanaryOperationZonalAlarmsAndRules.d.ts +11 -3
- package/lib/alarmsandrules/CanaryOperationZonalAlarmsAndRules.js +24 -13
- package/lib/alarmsandrules/IBaseOperationZonalAlarmsAndRules.d.ts +0 -8
- package/lib/alarmsandrules/IBaseOperationZonalAlarmsAndRules.js +1 -1
- package/lib/alarmsandrules/IOperationAlarmsAndRules.d.ts +20 -27
- package/lib/alarmsandrules/IOperationAlarmsAndRules.js +1 -1
- package/lib/alarmsandrules/IServerSideOperationRegionalAlarmsAndRules.js +1 -1
- package/lib/alarmsandrules/IServiceAlarmsAndRules.d.ts +19 -15
- package/lib/alarmsandrules/IServiceAlarmsAndRules.js +1 -1
- package/lib/alarmsandrules/OperationAlarmsAndRules.d.ts +15 -22
- package/lib/alarmsandrules/OperationAlarmsAndRules.js +52 -72
- package/lib/alarmsandrules/ServerSideOperationRegionalAlarmsAndRules.d.ts +5 -5
- package/lib/alarmsandrules/ServerSideOperationRegionalAlarmsAndRules.js +2 -3
- package/lib/alarmsandrules/ServerSideOperationZonalAlarmsAndRules.d.ts +21 -13
- package/lib/alarmsandrules/ServerSideOperationZonalAlarmsAndRules.js +43 -29
- package/lib/alarmsandrules/ServiceAlarmsAndRules.d.ts +19 -15
- package/lib/alarmsandrules/ServiceAlarmsAndRules.js +34 -136
- package/lib/alarmsandrules/props/BaseOperationRegionalAlarmsAndRulesProps.d.ts +4 -3
- package/lib/alarmsandrules/props/BaseOperationRegionalAlarmsAndRulesProps.js +1 -1
- package/lib/alarmsandrules/props/BaseOperationZonalAlarmsAndRulesProps.d.ts +6 -44
- package/lib/alarmsandrules/props/BaseOperationZonalAlarmsAndRulesProps.js +1 -1
- package/lib/alarmsandrules/props/OperationAlarmsAndRulesProps.d.ts +28 -7
- package/lib/alarmsandrules/props/OperationAlarmsAndRulesProps.js +1 -1
- package/lib/azmapper/AvailabilityZoneMapper.js +8 -9
- package/lib/basic_observability/BasicServiceDashboard.d.ts +0 -3
- package/lib/basic_observability/BasicServiceDashboard.js +24 -112
- package/lib/basic_observability/BasicServiceMultiAZObservability.d.ts +8 -9
- package/lib/basic_observability/BasicServiceMultiAZObservability.js +98 -312
- package/lib/basic_observability/props/ApplicationLoadBalancerDetectionProps.d.ts +51 -0
- package/lib/basic_observability/props/ApplicationLoadBalancerDetectionProps.js +3 -0
- package/lib/basic_observability/props/BasicServiceDashboardProps.d.ts +27 -13
- package/lib/basic_observability/props/BasicServiceDashboardProps.js +1 -1
- package/lib/basic_observability/props/BasicServiceMultiAZObservabilityProps.d.ts +10 -38
- package/lib/basic_observability/props/BasicServiceMultiAZObservabilityProps.js +1 -1
- package/lib/basic_observability/props/NatGatewayDetectionProps.d.ts +31 -0
- package/lib/basic_observability/props/NatGatewayDetectionProps.js +3 -0
- package/lib/canaries/CanaryFunction.js +14 -13
- package/lib/canaries/CanaryTest.js +4 -4
- package/lib/canaries/src/canary.zip +0 -0
- package/lib/dashboards/ContributorInsightsWidget.d.ts +1 -1
- package/lib/dashboards/ContributorInsightsWidget.js +13 -17
- package/lib/dashboards/OperationAvailabilityAndLatencyDashboard.d.ts +2 -6
- package/lib/dashboards/OperationAvailabilityAndLatencyDashboard.js +445 -507
- package/lib/dashboards/ServiceAvailabilityAndLatencyDashboard.d.ts +2 -10
- package/lib/dashboards/ServiceAvailabilityAndLatencyDashboard.js +350 -437
- package/lib/dashboards/props/OperationAvailabilityAndLatencyDashboardProps.d.ts +3 -66
- package/lib/dashboards/props/OperationAvailabilityAndLatencyDashboardProps.js +1 -1
- package/lib/dashboards/props/OperationAvailabilityWidgetProps.d.ts +7 -2
- package/lib/dashboards/props/OperationAvailabilityWidgetProps.js +1 -1
- package/lib/dashboards/props/OperationLatencyWidgetProps.d.ts +7 -2
- package/lib/dashboards/props/OperationLatencyWidgetProps.js +1 -1
- package/lib/dashboards/props/ServiceAvailabilityAndLatencyDashboardProps.d.ts +8 -8
- package/lib/dashboards/props/ServiceAvailabilityAndLatencyDashboardProps.js +1 -1
- package/lib/index.d.ts +54 -24
- package/lib/index.js +36 -17
- package/lib/metrics/ApplicationLoadBalancerMetrics.d.ts +77 -3
- package/lib/metrics/ApplicationLoadBalancerMetrics.js +813 -32
- package/lib/metrics/AvailabilityAndLatencyMetrics.d.ts +23 -0
- package/lib/metrics/AvailabilityAndLatencyMetrics.js +120 -26
- package/lib/metrics/NatGatewayMetrics.d.ts +113 -0
- package/lib/metrics/NatGatewayMetrics.js +357 -0
- package/lib/metrics/RegionalAvailabilityMetrics.js +4 -5
- package/lib/metrics/RegionalLatencyMetrics.d.ts +1 -1
- package/lib/metrics/RegionalLatencyMetrics.js +27 -20
- package/lib/metrics/ZonalAvailabilityMetrics.d.ts +2 -8
- package/lib/metrics/ZonalAvailabilityMetrics.js +10 -25
- package/lib/metrics/ZonalLatencyMetrics.d.ts +2 -1
- package/lib/metrics/ZonalLatencyMetrics.js +33 -23
- package/lib/metrics/props/AvailabilityAndLatencyMetricProps.d.ts +4 -0
- package/lib/metrics/props/AvailabilityAndLatencyMetricProps.js +1 -1
- package/lib/metrics/props/LatencyMetricProps.d.ts +6 -0
- package/lib/metrics/props/LatencyMetricProps.js +1 -1
- package/lib/metrics/props/ZonalAvailabilityMetricProps.d.ts +4 -0
- package/lib/metrics/props/ZonalAvailabilityMetricProps.js +1 -1
- package/lib/metrics/props/ZonalLatencyMetricProps.d.ts +4 -0
- package/lib/metrics/props/ZonalLatencyMetricProps.js +1 -1
- package/lib/monitoring/src/monitoring-layer.zip +0 -0
- package/lib/outlier-detection/ApplicationLoadBalancerAvailabilityOutlierAlgorithm.d.ts +10 -0
- package/lib/outlier-detection/ApplicationLoadBalancerAvailabilityOutlierAlgorithm.js +15 -0
- package/lib/outlier-detection/ApplicationLoadBalancerLatencyOutlierAlgorithm.d.ts +18 -0
- package/lib/outlier-detection/ApplicationLoadBalancerLatencyOutlierAlgorithm.js +23 -0
- package/lib/outlier-detection/OutlierDetectionFunction.js +7 -6
- package/lib/outlier-detection/PacketLossOutlierAlgorithm.d.ts +10 -0
- package/lib/outlier-detection/PacketLossOutlierAlgorithm.js +15 -0
- package/lib/outlier-detection/src/outlier-detection.zip +0 -0
- package/lib/outlier-detection/src/scipy-layer.zip +0 -0
- package/lib/services/CanaryMetrics.d.ts +4 -3
- package/lib/services/CanaryMetrics.js +3 -4
- package/lib/services/CanaryTestAvailabilityMetricsOverride.d.ts +21 -0
- package/lib/services/CanaryTestAvailabilityMetricsOverride.js +23 -0
- package/lib/services/CanaryTestLatencyMetricsOverride.d.ts +15 -0
- package/lib/services/CanaryTestLatencyMetricsOverride.js +20 -0
- package/lib/services/CanaryTestMetricsOverride.d.ts +1 -13
- package/lib/services/CanaryTestMetricsOverride.js +2 -4
- package/lib/services/ContributorInsightRuleDetails.js +1 -1
- package/lib/services/ICanaryMetrics.d.ts +4 -3
- package/lib/services/ICanaryMetrics.js +1 -1
- package/lib/services/ICanaryTestAvailabilityMetricsOverride.d.ts +23 -0
- package/lib/services/ICanaryTestAvailabilityMetricsOverride.js +3 -0
- package/lib/services/ICanaryTestLatencyMetricsOverride.d.ts +13 -0
- package/lib/services/ICanaryTestLatencyMetricsOverride.js +3 -0
- package/lib/services/ICanaryTestMetricsOverride.d.ts +0 -12
- package/lib/services/ICanaryTestMetricsOverride.js +1 -1
- package/lib/services/IInstrumentedServiceMultiAZObservability.d.ts +13 -3
- package/lib/services/IInstrumentedServiceMultiAZObservability.js +1 -1
- package/lib/services/IOperation.d.ts +8 -6
- package/lib/services/IOperation.js +1 -1
- package/lib/services/IOperationAvailabilityMetricDetails.d.ts +18 -0
- package/lib/services/IOperationAvailabilityMetricDetails.js +3 -0
- package/lib/services/IOperationLatencyMetricDetails.d.ts +12 -0
- package/lib/services/IOperationLatencyMetricDetails.js +3 -0
- package/lib/services/IOperationMetricDetails.d.ts +0 -12
- package/lib/services/IOperationMetricDetails.js +1 -1
- package/lib/services/IService.d.ts +4 -3
- package/lib/services/IService.js +1 -1
- package/lib/services/IServiceAvailabilityMetricDetails.d.ts +18 -0
- package/lib/services/IServiceAvailabilityMetricDetails.js +3 -0
- package/lib/services/IServiceLatencyMetricDetails.d.ts +12 -0
- package/lib/services/IServiceLatencyMetricDetails.js +3 -0
- package/lib/services/IServiceMetricDetails.d.ts +0 -12
- package/lib/services/IServiceMetricDetails.js +1 -1
- package/lib/services/InstrumentedServiceMultiAZObservability.d.ts +15 -3
- package/lib/services/InstrumentedServiceMultiAZObservability.js +197 -208
- package/lib/services/Operation.d.ts +8 -6
- package/lib/services/Operation.js +2 -2
- package/lib/services/OperationAvailabilityMetricDetails.d.ts +22 -0
- package/lib/services/OperationAvailabilityMetricDetails.js +24 -0
- package/lib/services/OperationLatencyMetricDetails.d.ts +16 -0
- package/lib/services/OperationLatencyMetricDetails.js +21 -0
- package/lib/services/OperationMetricDetails.d.ts +1 -13
- package/lib/services/OperationMetricDetails.js +2 -8
- package/lib/services/Service.d.ts +4 -3
- package/lib/services/Service.js +2 -2
- package/lib/services/ServiceAvailabilityMetricDetails.d.ts +21 -0
- package/lib/services/ServiceAvailabilityMetricDetails.js +20 -0
- package/lib/services/ServiceLatencyMetricDetails.d.ts +15 -0
- package/lib/services/ServiceLatencyMetricDetails.js +19 -0
- package/lib/services/ServiceMetricDetails.d.ts +1 -13
- package/lib/services/ServiceMetricDetails.js +2 -4
- package/lib/services/props/CanaryMetricProps.d.ts +4 -3
- package/lib/services/props/CanaryMetricProps.js +1 -1
- package/lib/services/props/CanaryTestAvailabilityMetricsOverrideProps.d.ts +22 -0
- package/lib/services/props/CanaryTestAvailabilityMetricsOverrideProps.js +3 -0
- package/lib/services/props/CanaryTestLatencyMetricsOverrideProps.d.ts +14 -0
- package/lib/services/props/CanaryTestLatencyMetricsOverrideProps.js +3 -0
- package/lib/services/props/CanaryTestMetricsOverrideProps.d.ts +0 -16
- package/lib/services/props/CanaryTestMetricsOverrideProps.js +1 -1
- package/lib/services/props/InstrumentedServiceMultiAZObservabilityProps.d.ts +1 -1
- package/lib/services/props/InstrumentedServiceMultiAZObservabilityProps.js +1 -1
- package/lib/services/props/MetricDimensions.js +1 -1
- package/lib/services/props/OperationAvailabilityMetricDetailsProps.d.ts +22 -0
- package/lib/services/props/OperationAvailabilityMetricDetailsProps.js +3 -0
- package/lib/services/props/OperationLatencyMetricDetailsProps.d.ts +14 -0
- package/lib/services/props/OperationLatencyMetricDetailsProps.js +3 -0
- package/lib/services/props/OperationMetricDetailsProps.d.ts +0 -16
- package/lib/services/props/OperationMetricDetailsProps.js +1 -1
- package/lib/services/props/OperationProps.d.ts +4 -3
- package/lib/services/props/OperationProps.js +1 -1
- package/lib/services/props/ServiceAvailabilityMetricDetailsProps.d.ts +18 -0
- package/lib/services/props/ServiceAvailabilityMetricDetailsProps.js +3 -0
- package/lib/services/props/ServiceLatencyMetricDetailsProps.d.ts +12 -0
- package/lib/services/props/ServiceLatencyMetricDetailsProps.js +3 -0
- package/lib/services/props/ServiceMetricDetailsProps.d.ts +0 -12
- package/lib/services/props/ServiceMetricDetailsProps.js +1 -1
- package/lib/services/props/ServiceProps.d.ts +4 -3
- package/lib/services/props/ServiceProps.js +1 -1
- package/lib/utilities/MetricsHelper.d.ts +17 -9
- package/lib/utilities/MetricsHelper.js +34 -10
- package/package.json +10 -10
- package/lib/services/IBasicServiceMultiAZObservability.d.ts +0 -45
- package/lib/services/IBasicServiceMultiAZObservability.js +0 -3
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"aws-cdk-lib": "^2.184.0",
|
|
12
12
|
"constructs": "^10.0.5"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -38,32 +38,6 @@
|
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
|
-
"@aws-cdk/asset-kubectl-v20": {
|
|
42
|
-
"targets": {
|
|
43
|
-
"dotnet": {
|
|
44
|
-
"namespace": "Amazon.CDK.Asset.KubectlV20",
|
|
45
|
-
"packageId": "Amazon.CDK.Asset.KubectlV20"
|
|
46
|
-
},
|
|
47
|
-
"go": {
|
|
48
|
-
"moduleName": "github.com/cdklabs/awscdk-asset-kubectl-go",
|
|
49
|
-
"packageName": "kubectlv20"
|
|
50
|
-
},
|
|
51
|
-
"java": {
|
|
52
|
-
"maven": {
|
|
53
|
-
"artifactId": "cdk-asset-kubectl-v20",
|
|
54
|
-
"groupId": "software.amazon.awscdk"
|
|
55
|
-
},
|
|
56
|
-
"package": "software.amazon.awscdk.cdk.asset.kubectl.v20"
|
|
57
|
-
},
|
|
58
|
-
"js": {
|
|
59
|
-
"npm": "@aws-cdk/asset-kubectl-v20"
|
|
60
|
-
},
|
|
61
|
-
"python": {
|
|
62
|
-
"distName": "aws-cdk.asset-kubectl-v20",
|
|
63
|
-
"module": "aws_cdk.asset_kubectl_v20"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
41
|
"@aws-cdk/asset-node-proxy-agent-v6": {
|
|
68
42
|
"targets": {
|
|
69
43
|
"dotnet": {
|
|
@@ -1644,6 +1618,19 @@
|
|
|
1644
1618
|
}
|
|
1645
1619
|
}
|
|
1646
1620
|
},
|
|
1621
|
+
"aws-cdk-lib.aws_gameliftstreams": {
|
|
1622
|
+
"targets": {
|
|
1623
|
+
"dotnet": {
|
|
1624
|
+
"package": "Amazon.CDK.AWS.GameLiftStreams"
|
|
1625
|
+
},
|
|
1626
|
+
"java": {
|
|
1627
|
+
"package": "software.amazon.awscdk.services.gameliftstreams"
|
|
1628
|
+
},
|
|
1629
|
+
"python": {
|
|
1630
|
+
"module": "aws_cdk.aws_gameliftstreams"
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1647
1634
|
"aws-cdk-lib.aws_globalaccelerator": {
|
|
1648
1635
|
"targets": {
|
|
1649
1636
|
"dotnet": {
|
|
@@ -1852,29 +1839,29 @@
|
|
|
1852
1839
|
}
|
|
1853
1840
|
}
|
|
1854
1841
|
},
|
|
1855
|
-
"aws-cdk-lib.
|
|
1842
|
+
"aws-cdk-lib.aws_invoicing": {
|
|
1856
1843
|
"targets": {
|
|
1857
1844
|
"dotnet": {
|
|
1858
|
-
"
|
|
1845
|
+
"package": "Amazon.CDK.AWS.Invoicing"
|
|
1859
1846
|
},
|
|
1860
1847
|
"java": {
|
|
1861
|
-
"package": "software.amazon.awscdk.services.
|
|
1848
|
+
"package": "software.amazon.awscdk.services.invoicing"
|
|
1862
1849
|
},
|
|
1863
1850
|
"python": {
|
|
1864
|
-
"module": "aws_cdk.
|
|
1851
|
+
"module": "aws_cdk.aws_invoicing"
|
|
1865
1852
|
}
|
|
1866
1853
|
}
|
|
1867
1854
|
},
|
|
1868
|
-
"aws-cdk-lib.
|
|
1855
|
+
"aws-cdk-lib.aws_iot": {
|
|
1869
1856
|
"targets": {
|
|
1870
1857
|
"dotnet": {
|
|
1871
|
-
"namespace": "Amazon.CDK.AWS.
|
|
1858
|
+
"namespace": "Amazon.CDK.AWS.IoT"
|
|
1872
1859
|
},
|
|
1873
1860
|
"java": {
|
|
1874
|
-
"package": "software.amazon.awscdk.services.
|
|
1861
|
+
"package": "software.amazon.awscdk.services.iot"
|
|
1875
1862
|
},
|
|
1876
1863
|
"python": {
|
|
1877
|
-
"module": "aws_cdk.
|
|
1864
|
+
"module": "aws_cdk.aws_iot"
|
|
1878
1865
|
}
|
|
1879
1866
|
}
|
|
1880
1867
|
},
|
|
@@ -2567,6 +2554,32 @@
|
|
|
2567
2554
|
}
|
|
2568
2555
|
}
|
|
2569
2556
|
},
|
|
2557
|
+
"aws-cdk-lib.aws_notifications": {
|
|
2558
|
+
"targets": {
|
|
2559
|
+
"dotnet": {
|
|
2560
|
+
"package": "Amazon.CDK.AWS.Notifications"
|
|
2561
|
+
},
|
|
2562
|
+
"java": {
|
|
2563
|
+
"package": "software.amazon.awscdk.services.notifications"
|
|
2564
|
+
},
|
|
2565
|
+
"python": {
|
|
2566
|
+
"module": "aws_cdk.aws_notifications"
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2570
|
+
"aws-cdk-lib.aws_notificationscontacts": {
|
|
2571
|
+
"targets": {
|
|
2572
|
+
"dotnet": {
|
|
2573
|
+
"package": "Amazon.CDK.AWS.NotificationsContacts"
|
|
2574
|
+
},
|
|
2575
|
+
"java": {
|
|
2576
|
+
"package": "software.amazon.awscdk.services.notificationscontacts"
|
|
2577
|
+
},
|
|
2578
|
+
"python": {
|
|
2579
|
+
"module": "aws_cdk.aws_notificationscontacts"
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
},
|
|
2570
2583
|
"aws-cdk-lib.aws_oam": {
|
|
2571
2584
|
"targets": {
|
|
2572
2585
|
"dotnet": {
|
|
@@ -2723,6 +2736,19 @@
|
|
|
2723
2736
|
}
|
|
2724
2737
|
}
|
|
2725
2738
|
},
|
|
2739
|
+
"aws-cdk-lib.aws_pcs": {
|
|
2740
|
+
"targets": {
|
|
2741
|
+
"dotnet": {
|
|
2742
|
+
"package": "Amazon.CDK.AWS.PCS"
|
|
2743
|
+
},
|
|
2744
|
+
"java": {
|
|
2745
|
+
"package": "software.amazon.awscdk.services.pcs"
|
|
2746
|
+
},
|
|
2747
|
+
"python": {
|
|
2748
|
+
"module": "aws_cdk.aws_pcs"
|
|
2749
|
+
}
|
|
2750
|
+
}
|
|
2751
|
+
},
|
|
2726
2752
|
"aws-cdk-lib.aws_personalize": {
|
|
2727
2753
|
"targets": {
|
|
2728
2754
|
"dotnet": {
|
|
@@ -3178,6 +3204,19 @@
|
|
|
3178
3204
|
}
|
|
3179
3205
|
}
|
|
3180
3206
|
},
|
|
3207
|
+
"aws-cdk-lib.aws_s3tables": {
|
|
3208
|
+
"targets": {
|
|
3209
|
+
"dotnet": {
|
|
3210
|
+
"package": "Amazon.CDK.AWS.S3Tables"
|
|
3211
|
+
},
|
|
3212
|
+
"java": {
|
|
3213
|
+
"package": "software.amazon.awscdk.services.s3tables"
|
|
3214
|
+
},
|
|
3215
|
+
"python": {
|
|
3216
|
+
"module": "aws_cdk.aws_s3tables"
|
|
3217
|
+
}
|
|
3218
|
+
}
|
|
3219
|
+
},
|
|
3181
3220
|
"aws-cdk-lib.aws_sagemaker": {
|
|
3182
3221
|
"targets": {
|
|
3183
3222
|
"dotnet": {
|
|
@@ -3764,19 +3803,6 @@
|
|
|
3764
3803
|
}
|
|
3765
3804
|
}
|
|
3766
3805
|
},
|
|
3767
|
-
"aws-cdk-lib.lambda_layer_kubectl": {
|
|
3768
|
-
"targets": {
|
|
3769
|
-
"dotnet": {
|
|
3770
|
-
"namespace": "Amazon.CDK.LambdaLayer.Kubectl"
|
|
3771
|
-
},
|
|
3772
|
-
"java": {
|
|
3773
|
-
"package": "software.amazon.awscdk.lambdalayer.kubectl"
|
|
3774
|
-
},
|
|
3775
|
-
"python": {
|
|
3776
|
-
"module": "aws_cdk.lambda_layer_kubectl"
|
|
3777
|
-
}
|
|
3778
|
-
}
|
|
3779
|
-
},
|
|
3780
3806
|
"aws-cdk-lib.lambda_layer_node_proxy_agent": {
|
|
3781
3807
|
"targets": {
|
|
3782
3808
|
"dotnet": {
|
|
@@ -3887,7 +3913,7 @@
|
|
|
3887
3913
|
"stability": "experimental"
|
|
3888
3914
|
},
|
|
3889
3915
|
"homepage": "https://github.com/cdklabs/cdk-multi-az-observability",
|
|
3890
|
-
"jsiiVersion": "5.5.
|
|
3916
|
+
"jsiiVersion": "5.5.26 (build adcbaf3)",
|
|
3891
3917
|
"keywords": [
|
|
3892
3918
|
"aws-cdk",
|
|
3893
3919
|
"cdk",
|
|
@@ -3908,7 +3934,7 @@
|
|
|
3908
3934
|
},
|
|
3909
3935
|
"name": "@cdklabs/multi-az-observability",
|
|
3910
3936
|
"readme": {
|
|
3911
|
-
"markdown": "# multi-az-observability\nThis is a CDK construct for multi-AZ observability to help detect single-AZ impairments. This is currently an `alpha` version, but is being used in the AWS [Advanced Multi-AZ Resilience Patterns](https://catalog.workshops.aws/multi-az-gray-failures/en-US) workshop.\n\nThere is a lot of available information to think through and combine to provide signals about single-AZ impact. To simplify the setup and use reasonable defaults, this construct (available in TypeScript, Go, Python, and .NET [Java coming soon]) sets up the necessary observability. To use the CDK construct, you first define your service like this:\n\n```csharp\nvar wildRydesService = new Service(new ServiceProps(){\n ServiceName = \"WildRydes\",\n BaseUrl = \"http://www.example.com\",\n FaultCountThreshold = 25,\n AvailabilityZoneNames = vpc.AvailabilityZones,\n Period = Duration.Seconds(60),\n LoadBalancer = loadBalancer,\n DefaultAvailabilityMetricDetails = new ServiceMetricDetails(new ServiceMetricDetailsProps() {\n AlarmStatistic = \"Sum\",\n DatapointsToAlarm = 3,\n EvaluationPeriods = 5,\n FaultAlarmThreshold = 1,\n FaultMetricNames = new string[] { \"Fault\", \"Error\" },\n GraphedFaultStatistics = new string[] { \"Sum\" },\n GraphedSuccessStatistics = new string[] { \"Sum\" },\n MetricNamespace = metricsNamespace,\n Period = Duration.Seconds(60),\n SuccessAlarmThreshold = 99,\n SuccessMetricNames = new string[] {\"Success\"},\n Unit = Unit.COUNT,\n }),\n DefaultLatencyMetricDetails = new ServiceMetricDetails(new ServiceMetricDetailsProps(){\n AlarmStatistic = \"p99\",\n DatapointsToAlarm = 3,\n EvaluationPeriods = 5,\n FaultAlarmThreshold = 1,\n FaultMetricNames = new string[] { \"FaultLatency\" },\n GraphedFaultStatistics = new string[] { \"p50\" },\n GraphedSuccessStatistics = new string[] { \"p50\", \"p99\", \"tm50\", \"tm99\" },\n MetricNamespace = metricsNamespace,\n Period = Duration.Seconds(60),\n SuccessAlarmThreshold = 100,\n SuccessMetricNames = new string[] {\"SuccessLatency\"},\n Unit = Unit.MILLISECONDS,\n }),\n DefaultContributorInsightRuleDetails = new ContributorInsightRuleDetails(new ContributorInsightRuleDetailsProps() {\n AvailabilityZoneIdJsonPath = azIdJsonPath,\n FaultMetricJsonPath = faultMetricJsonPath,\n InstanceIdJsonPath = instanceIdJsonPath,\n LogGroups = serverLogGroups,\n OperationNameJsonPath = operationNameJsonPath,\n SuccessLatencyMetricJsonPath = successLatencyMetricJsonPath\n }),\n CanaryTestProps = new AddCanaryTestProps() {\n RequestCount = 10,\n LoadBalancer = loadBalancer,\n Schedule = \"rate(1 minute)\",\n NetworkConfiguration = new NetworkConfigurationProps() {\n Vpc = vpc,\n SubnetSelection = new SubnetSelection() { SubnetType = SubnetType.PRIVATE_ISOLATED }\n }\n }\n});\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Signin\",\n Path = \"/signin\",\n Service = wildRydesService,\n Critical = true,\n HttpMethods = new string[] { \"GET\" },\n ServerSideAvailabilityMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Signin\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Signin\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Signin\",\n SuccessAlarmThreshold = 150,\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Signin\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestMetricsOverride(new CanaryTestMetricsOverrideProps() {\n SuccessAlarmThreshold = 250\n })\n}));\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Pay\",\n Path = \"/pay\",\n Service = wildRydesService,\n HttpMethods = new string[] { \"GET\" },\n Critical = true,\n ServerSideAvailabilityMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Pay\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Pay\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Pay\",\n SuccessAlarmThreshold = 200,\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Pay\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestMetricsOverride(new CanaryTestMetricsOverrideProps() {\n SuccessAlarmThreshold = 300\n })\n}));\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Ride\",\n Path = \"/ride\",\n Service = wildRydesService,\n HttpMethods = new string[] { \"GET\" },\n Critical = true,\n ServerSideAvailabilityMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Ride\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Ride\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Ride\",\n SuccessAlarmThreshold = 350,\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Ride\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestMetricsOverride(new CanaryTestMetricsOverrideProps() {\n SuccessAlarmThreshold = 550\n })\n}));\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Home\",\n Path = \"/home\",\n Service = wildRydesService,\n HttpMethods = new string[] { \"GET\" },\n Critical = true,\n ServerSideAvailabilityMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Home\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Ride\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationMetricDetails(new OperationMetricDetailsProps() {\n OperationName = \"Home\",\n SuccessAlarmThreshold = 100,\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Ride\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestMetricsOverride(new CanaryTestMetricsOverrideProps() {\n SuccessAlarmThreshold = 200\n })\n}));\n```\n\nThen you provide that service definition to the CDK construct.\n\n```csharp\nInstrumentedServiceMultiAZObservability multiAvailabilityZoneObservability = new InstrumentedServiceMultiAZObservability(this, \"MultiAZObservability\", new InstrumentedServiceMultiAZObservabilityProps() {\n Service = wildRydesService,\n CreateDashboards = true,\n Interval = Duration.Minutes(60), // The interval for the dashboard\n OutlierDetectionAlgorithm = OutlierDetectionAlgorithm.STATIC\n});\n```\n\nYou define some characteristics of the service, default values for metrics and alarms, and then add operations as well as any overrides for default values that you need. The construct can also automatically create synthetic canaries that test each operation with a very simple HTTP check, or you can configure your own synthetics and just tell the construct about the metric details and optionally log files. This creates metrics, alarms, and dashboards that can be used to detect single-AZ impact.\n\nIf you don't have service specific logs and custom metrics with per-AZ dimensions, you can still use the construct to evaluate ALB and NAT Gateway metrics to find single AZ faults.\n\n```csharp\nBasicServiceMultiAZObservability multiAvailabilityZoneObservability = new BasicServiceMultiAZObservability(this, \"MultiAZObservability\", new BasicServiceMultiAZObservabilityProps() {\n ApplicationLoadBalancers = new IApplicationLoadBalancer[] { loadBalancer },\n NatGateways = new Dictionary<string, CfnNatGateway>() {\n { \"us-east-1a\", natGateway1},\n { \"us-east-1b\", natGateway2},\n { \"us-east-1c\", natGateway3},\n },\n CreateDashboard = true,\n OutlierDetectionAlgorithm = OutlierDetectionAlgorithm.STATIC,\n FaultCountPercentageThreshold = 1.0, // The fault rate to alarm on for errors seen from the ALBs in the same AZ\n PacketLossImpactPercentageThreshold = 0.01, // The percentage of packet loss to alarm on for the NAT Gateways in the same AZ\n ServiceName = \"WildRydes\",\n Period = Duration.Seconds(60), // The period for metric evaluation\n Interval = Duration.Minutes(60) // The interval for the dashboards\n EvaluationPeriods = 5,\n DatapointsToAlarm = 3\n});\n```\n\nIf you provide a load balancer, the construct assumes it is deployed in each AZ of the VPC the load balancer is associated with and will look for HTTP metrics using those AZs as dimensions.\n\nBoth options support running workloads on EC2, ECS, Lambda, and EKS.\n"
|
|
3937
|
+
"markdown": "  \n\n# multi-az-observability\nThis is a CDK construct for multi-AZ observability to help detect single-AZ impairments. This is currently an `alpha` version, but is being used in the AWS [Advanced Multi-AZ Resilience Patterns](https://catalog.workshops.aws/multi-az-gray-failures/en-US) workshop.\n\nThere is a lot of available information to think through and combine to provide signals about single-AZ impact. To simplify the setup and use reasonable defaults, this construct (available in [TypeScript](https://www.npmjs.com/package/@cdklabs/multi-az-observability), [Go](https://github.com/cdklabs/cdk-multi-az-observability-go), [Python](https://pypi.org/project/cdklabs.multi-az-observability/), [.NET](https://www.nuget.org/packages/Cdklabs.MultiAZObservability), and [Java](https://central.sonatype.com/artifact/io.github.cdklabs/cdk-multi-az-observability)) sets up the necessary observability. To use the CDK construct, you first define your service like this:\n\n```csharp\nvar wildRydesService = new Service(new ServiceProps(){\n ServiceName = \"WildRydes\",\n BaseUrl = \"http://www.example.com\",\n FaultCountThreshold = 25,\n AvailabilityZoneNames = vpc.AvailabilityZones,\n Period = Duration.Seconds(60),\n LoadBalancer = loadBalancer,\n DefaultAvailabilityMetricDetails = new ServiceAvailabilityMetricDetails(new ServiceAvailabilityMetricDetailsProps() {\n AlarmStatistic = \"Sum\",\n DatapointsToAlarm = 2,\n EvaluationPeriods = 3,\n FaultAlarmThreshold = 1,\n FaultMetricNames = new string[] { \"Fault\", \"Failure\" },\n GraphedFaultStatistics = new string[] { \"Sum\" },\n GraphedSuccessStatistics = new string[] { \"Sum\" },\n MetricNamespace = metricsNamespace,\n Period = Duration.Seconds(60),\n SuccessAlarmThreshold = 99,\n SuccessMetricNames = new string[] {\"Success\"},\n Unit = Unit.COUNT,\n }),\n DefaultLatencyMetricDetails = new ServiceLatencyMetricDetails(new ServiceLatencyMetricDetailsProps(){\n AlarmStatistic = \"p99\",\n DatapointsToAlarm = 2,\n EvaluationPeriods = 3,\n FaultMetricNames = new string[] { \"FaultLatency\" },\n GraphedFaultStatistics = new string[] { \"p50\" },\n GraphedSuccessStatistics = new string[] { \"p50\", \"p99\", \"tm50\", \"tm99\" },\n MetricNamespace = metricsNamespace,\n Period = Duration.Seconds(60),\n SuccessAlarmThreshold = Duration.Millis(100),\n SuccessMetricNames = new string[] {\"SuccessLatency\"},\n Unit = Unit.MILLISECONDS,\n }),\n DefaultContributorInsightRuleDetails = new ContributorInsightRuleDetails(new ContributorInsightRuleDetailsProps() {\n AvailabilityZoneIdJsonPath = azIdJsonPath,\n FaultMetricJsonPath = faultMetricJsonPath,\n InstanceIdJsonPath = instanceIdJsonPath,\n LogGroups = serverLogGroups,\n OperationNameJsonPath = operationNameJsonPath,\n SuccessLatencyMetricJsonPath = successLatencyMetricJsonPath\n }),\n CanaryTestProps = new AddCanaryTestProps() {\n RequestCount = 60,\n RegionalRequestCount = 60,\n LoadBalancer = loadBalancer,\n Schedule = \"rate(1 minute)\",\n Timeout = Duration.Seconds(3),\n NetworkConfiguration = new NetworkConfigurationProps() {\n Vpc = vpc,\n SubnetSelection = new SubnetSelection() { SubnetType = SubnetType.PRIVATE_ISOLATED }\n }\n }\n}\n\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Signin\",\n Path = \"/signin\",\n Service = wildRydesService,\n Critical = true,\n HttpMethods = new string[] { \"GET\" },\n ServerSideAvailabilityMetricDetails = new OperationAvailabilityMetricDetails(new OperationAvailabilityMetricDetailsProps() {\n OperationName = \"Signin\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Signin\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationLatencyMetricDetails(new OperationLatencyMetricDetailsProps() {\n OperationName = \"Signin\",\n SuccessAlarmThreshold = Duration.Millis(150),\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Signin\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestLatencyMetricsOverride(new CanaryTestLatencyMetricsOverrideProps() {\n SuccessAlarmThreshold = Duration.Millis(500)\n })\n})\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Pay\",\n Path = \"/pay\",\n Service = wildRydesService,\n HttpMethods = new string[] { \"GET\" },\n Critical = true,\n ServerSideAvailabilityMetricDetails = new OperationAvailabilityMetricDetails(new OperationAvailabilityMetricDetailsProps() {\n OperationName = \"Pay\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Pay\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationLatencyMetricDetails(new OperationLatencyMetricDetailsProps() {\n OperationName = \"Pay\",\n SuccessAlarmThreshold = Duration.Millis(200),\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Pay\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestLatencyMetricsOverride(new CanaryTestLatencyMetricsOverrideProps() {\n SuccessAlarmThreshold = Duration.Millis(500)\n })\n})\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Ride\",\n Path = \"/ride\",\n Service = wildRydesService,\n HttpMethods = new string[] { \"GET\" },\n Critical = true,\n ServerSideAvailabilityMetricDetails = new OperationAvailabilityMetricDetails(new OperationAvailabilityMetricDetailsProps() {\n OperationName = \"Ride\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Ride\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationLatencyMetricDetails(new OperationLatencyMetricDetailsProps() {\n OperationName = \"Ride\",\n SuccessAlarmThreshold = Duration.Millis(350),\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Ride\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestLatencyMetricsOverride(new CanaryTestLatencyMetricsOverrideProps() {\n SuccessAlarmThreshold = Duration.Millis(650)\n })\n})\nwildRydesService.AddOperation(new Operation(new OperationProps() {\n OperationName = \"Home\",\n Path = \"/home\",\n Service = wildRydesService,\n HttpMethods = new string[] { \"GET\" },\n Critical = true,\n ServerSideAvailabilityMetricDetails = new OperationAvailabilityMetricDetails(new OperationAvailabilityMetricDetailsProps() {\n OperationName = \"Home\",\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Home\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultAvailabilityMetricDetails),\n ServerSideLatencyMetricDetails = new OperationLatencyMetricDetails(new OperationLatencyMetricDetailsProps() {\n OperationName = \"Home\",\n SuccessAlarmThreshold = Duration.Millis(100),\n MetricDimensions = new MetricDimensions(new Dictionary<string, string> {{ \"Operation\", \"Home\"}}, \"AZ-ID\", \"Region\")\n }, wildRydesService.DefaultLatencyMetricDetails),\n CanaryTestLatencyMetricsOverride = new CanaryTestLatencyMetricsOverride(new CanaryTestLatencyMetricsOverrideProps() {\n SuccessAlarmThreshold = Duration.Millis(500)\n })\n}));\n```\n\nThen you provide that service definition to the CDK construct.\n\n```csharp\nInstrumentedServiceMultiAZObservability multiAvailabilityZoneObservability = new InstrumentedServiceMultiAZObservability(this, \"MultiAZObservability\", new InstrumentedServiceMultiAZObservabilityProps() {\n Service = wildRydesService,\n CreateDashboards = true,\n Interval = Duration.Minutes(60), // The interval for the dashboard\n OutlierDetectionAlgorithm = OutlierDetectionAlgorithm.STATIC\n});\n```\n\nYou define some characteristics of the service, default values for metrics and alarms, and then add operations as well as any overrides for default values that you need. The construct can also automatically create synthetic canaries that test each operation with a very simple HTTP check, or you can configure your own synthetics and just tell the construct about the metric details and optionally log files. This creates metrics, alarms, and dashboards that can be used to detect single-AZ impact. You can access these alarms from the `multiAvailabilityZoneObservability` object and use them in your CDK project to start automation, send SNS notifications, or incorporate in your own dashboards.\n\nIf you don't have service specific logs and custom metrics with per-AZ dimensions, you can still use the construct to evaluate ALB and/or NAT Gateway metrics to find single AZ impairments.\n\n```csharp\nBasicServiceMultiAZObservability multiAZObservability = new BasicServiceMultiAZObservability(this, \"basic-service-\", new BasicServiceMultiAZObservabilityProps() {\n ApplicationLoadBalancerProps = new ApplicationLoadBalancerDetectionProps() {\n ApplicationLoadBalancers = [ myALB ],\n LatencyStatistic = Stats.Percentile(99),\n FaultCountPercentThreshold = 1,\n LatencyThreshold = Duration.Millis(500)\n },\n NatGatewayProps = new NatGatewayDetectionProps() {\n PacketLossPercentThreshold = 0.01,\n NatGateways = {\n { \"us-east-1a\", [ natGateway1 ] },\n { \"us-east-1b\", [ natGateway2 ] },\n { \"us-east-1c\", [ natGateway3 ] }\n },\n },\n CreateDashboard = true,\n DatapointsToAlarm = 2,\n EvaluationPeriods = 3,\n ServiceName = \"WildRydes\",\n Period = Duration.Seconds(60),\n Interval = Duration.Minutes(60),\n});\n```\n\nIf you provide a load balancer, the construct assumes it is deployed in each AZ of the VPC the load balancer is associated with and will look for HTTP metrics using those AZs as dimensions.\n\nBoth options support running workloads on EC2, ECS, Lambda, and EKS."
|
|
3912
3938
|
},
|
|
3913
3939
|
"repository": {
|
|
3914
3940
|
"type": "git",
|
|
@@ -4142,6 +4168,223 @@
|
|
|
4142
4168
|
],
|
|
4143
4169
|
"symbolId": "src/canaries/props/AddCanaryTestProps:AddCanaryTestProps"
|
|
4144
4170
|
},
|
|
4171
|
+
"@cdklabs/multi-az-observability.ApplicationLoadBalancerAvailabilityOutlierAlgorithm": {
|
|
4172
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
4173
|
+
"docs": {
|
|
4174
|
+
"stability": "experimental",
|
|
4175
|
+
"summary": "The options for calculating if an ALB is an outlier for availability."
|
|
4176
|
+
},
|
|
4177
|
+
"fqn": "@cdklabs/multi-az-observability.ApplicationLoadBalancerAvailabilityOutlierAlgorithm",
|
|
4178
|
+
"kind": "enum",
|
|
4179
|
+
"locationInModule": {
|
|
4180
|
+
"filename": "src/outlier-detection/ApplicationLoadBalancerAvailabilityOutlierAlgorithm.ts",
|
|
4181
|
+
"line": 4
|
|
4182
|
+
},
|
|
4183
|
+
"members": [
|
|
4184
|
+
{
|
|
4185
|
+
"docs": {
|
|
4186
|
+
"stability": "experimental",
|
|
4187
|
+
"summary": "This will take the availability threshold and calculate if one AZ is responsible for that percentage of errors."
|
|
4188
|
+
},
|
|
4189
|
+
"name": "STATIC"
|
|
4190
|
+
}
|
|
4191
|
+
],
|
|
4192
|
+
"name": "ApplicationLoadBalancerAvailabilityOutlierAlgorithm",
|
|
4193
|
+
"symbolId": "src/outlier-detection/ApplicationLoadBalancerAvailabilityOutlierAlgorithm:ApplicationLoadBalancerAvailabilityOutlierAlgorithm"
|
|
4194
|
+
},
|
|
4195
|
+
"@cdklabs/multi-az-observability.ApplicationLoadBalancerDetectionProps": {
|
|
4196
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
4197
|
+
"datatype": true,
|
|
4198
|
+
"docs": {
|
|
4199
|
+
"stability": "experimental",
|
|
4200
|
+
"summary": "The properties for performing zonal impact detection with ALB(s)."
|
|
4201
|
+
},
|
|
4202
|
+
"fqn": "@cdklabs/multi-az-observability.ApplicationLoadBalancerDetectionProps",
|
|
4203
|
+
"kind": "interface",
|
|
4204
|
+
"locationInModule": {
|
|
4205
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4206
|
+
"line": 9
|
|
4207
|
+
},
|
|
4208
|
+
"name": "ApplicationLoadBalancerDetectionProps",
|
|
4209
|
+
"properties": [
|
|
4210
|
+
{
|
|
4211
|
+
"abstract": true,
|
|
4212
|
+
"docs": {
|
|
4213
|
+
"stability": "experimental",
|
|
4214
|
+
"summary": "The application load balancers to collect metrics from."
|
|
4215
|
+
},
|
|
4216
|
+
"immutable": true,
|
|
4217
|
+
"locationInModule": {
|
|
4218
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4219
|
+
"line": 14
|
|
4220
|
+
},
|
|
4221
|
+
"name": "applicationLoadBalancers",
|
|
4222
|
+
"type": {
|
|
4223
|
+
"collection": {
|
|
4224
|
+
"elementtype": {
|
|
4225
|
+
"fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancer"
|
|
4226
|
+
},
|
|
4227
|
+
"kind": "array"
|
|
4228
|
+
}
|
|
4229
|
+
}
|
|
4230
|
+
},
|
|
4231
|
+
{
|
|
4232
|
+
"abstract": true,
|
|
4233
|
+
"docs": {
|
|
4234
|
+
"remarks": "This should align with your availability goal. For example\n1% or 5%, provided as 1 or 5.",
|
|
4235
|
+
"stability": "experimental",
|
|
4236
|
+
"summary": "The percentage of faults for a single ALB to consider an AZ to be unhealthy, a number between 0 and 100."
|
|
4237
|
+
},
|
|
4238
|
+
"immutable": true,
|
|
4239
|
+
"locationInModule": {
|
|
4240
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4241
|
+
"line": 21
|
|
4242
|
+
},
|
|
4243
|
+
"name": "faultCountPercentThreshold",
|
|
4244
|
+
"type": {
|
|
4245
|
+
"primitive": "number"
|
|
4246
|
+
}
|
|
4247
|
+
},
|
|
4248
|
+
{
|
|
4249
|
+
"abstract": true,
|
|
4250
|
+
"docs": {
|
|
4251
|
+
"stability": "experimental",
|
|
4252
|
+
"summary": "The statistic used to measure target response latency, like p99, which can be specified using Stats.percentile(99) or \"p99\"."
|
|
4253
|
+
},
|
|
4254
|
+
"immutable": true,
|
|
4255
|
+
"locationInModule": {
|
|
4256
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4257
|
+
"line": 33
|
|
4258
|
+
},
|
|
4259
|
+
"name": "latencyStatistic",
|
|
4260
|
+
"type": {
|
|
4261
|
+
"primitive": "string"
|
|
4262
|
+
}
|
|
4263
|
+
},
|
|
4264
|
+
{
|
|
4265
|
+
"abstract": true,
|
|
4266
|
+
"docs": {
|
|
4267
|
+
"stability": "experimental",
|
|
4268
|
+
"summary": "The threshold in milliseconds for ALB targets whose responses are slower than this value at the specified percentile statistic."
|
|
4269
|
+
},
|
|
4270
|
+
"immutable": true,
|
|
4271
|
+
"locationInModule": {
|
|
4272
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4273
|
+
"line": 27
|
|
4274
|
+
},
|
|
4275
|
+
"name": "latencyThreshold",
|
|
4276
|
+
"type": {
|
|
4277
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
4278
|
+
}
|
|
4279
|
+
},
|
|
4280
|
+
{
|
|
4281
|
+
"abstract": true,
|
|
4282
|
+
"docs": {
|
|
4283
|
+
"default": "STATIC",
|
|
4284
|
+
"stability": "experimental",
|
|
4285
|
+
"summary": "The method used to determine if an AZ is an outlier for availability for Application Load Balancer metrics."
|
|
4286
|
+
},
|
|
4287
|
+
"immutable": true,
|
|
4288
|
+
"locationInModule": {
|
|
4289
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4290
|
+
"line": 45
|
|
4291
|
+
},
|
|
4292
|
+
"name": "availabilityOutlierAlgorithm",
|
|
4293
|
+
"optional": true,
|
|
4294
|
+
"type": {
|
|
4295
|
+
"fqn": "@cdklabs/multi-az-observability.ApplicationLoadBalancerAvailabilityOutlierAlgorithm"
|
|
4296
|
+
}
|
|
4297
|
+
},
|
|
4298
|
+
{
|
|
4299
|
+
"abstract": true,
|
|
4300
|
+
"docs": {
|
|
4301
|
+
"default": "\"This depends on the algorithm used. STATIC: 66\"",
|
|
4302
|
+
"stability": "experimental",
|
|
4303
|
+
"summary": "The threshold for the outlier detection algorithm."
|
|
4304
|
+
},
|
|
4305
|
+
"immutable": true,
|
|
4306
|
+
"locationInModule": {
|
|
4307
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4308
|
+
"line": 52
|
|
4309
|
+
},
|
|
4310
|
+
"name": "availabilityOutlierThreshold",
|
|
4311
|
+
"optional": true,
|
|
4312
|
+
"type": {
|
|
4313
|
+
"primitive": "number"
|
|
4314
|
+
}
|
|
4315
|
+
},
|
|
4316
|
+
{
|
|
4317
|
+
"abstract": true,
|
|
4318
|
+
"docs": {
|
|
4319
|
+
"default": "Z_SCORE",
|
|
4320
|
+
"stability": "experimental",
|
|
4321
|
+
"summary": "The method used to determine if an AZ is an outlier for latency for Application Load Balancer metrics."
|
|
4322
|
+
},
|
|
4323
|
+
"immutable": true,
|
|
4324
|
+
"locationInModule": {
|
|
4325
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4326
|
+
"line": 39
|
|
4327
|
+
},
|
|
4328
|
+
"name": "latencyOutlierAlgorithm",
|
|
4329
|
+
"optional": true,
|
|
4330
|
+
"type": {
|
|
4331
|
+
"fqn": "@cdklabs/multi-az-observability.ApplicationLoadBalancerLatencyOutlierAlgorithm"
|
|
4332
|
+
}
|
|
4333
|
+
},
|
|
4334
|
+
{
|
|
4335
|
+
"abstract": true,
|
|
4336
|
+
"docs": {
|
|
4337
|
+
"default": "\"This depends on the algorithm used. STATIC: 66. Z_SCORE: 3.\"",
|
|
4338
|
+
"stability": "experimental",
|
|
4339
|
+
"summary": "The threshold for the outlier detection algorithm."
|
|
4340
|
+
},
|
|
4341
|
+
"immutable": true,
|
|
4342
|
+
"locationInModule": {
|
|
4343
|
+
"filename": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps.ts",
|
|
4344
|
+
"line": 59
|
|
4345
|
+
},
|
|
4346
|
+
"name": "latencyOutlierThreshold",
|
|
4347
|
+
"optional": true,
|
|
4348
|
+
"type": {
|
|
4349
|
+
"primitive": "number"
|
|
4350
|
+
}
|
|
4351
|
+
}
|
|
4352
|
+
],
|
|
4353
|
+
"symbolId": "src/basic_observability/props/ApplicationLoadBalancerDetectionProps:ApplicationLoadBalancerDetectionProps"
|
|
4354
|
+
},
|
|
4355
|
+
"@cdklabs/multi-az-observability.ApplicationLoadBalancerLatencyOutlierAlgorithm": {
|
|
4356
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
4357
|
+
"docs": {
|
|
4358
|
+
"stability": "experimental",
|
|
4359
|
+
"summary": "The options for calculating if an AZ is an outlier for latency for ALBs."
|
|
4360
|
+
},
|
|
4361
|
+
"fqn": "@cdklabs/multi-az-observability.ApplicationLoadBalancerLatencyOutlierAlgorithm",
|
|
4362
|
+
"kind": "enum",
|
|
4363
|
+
"locationInModule": {
|
|
4364
|
+
"filename": "src/outlier-detection/ApplicationLoadBalancerLatencyOutlierAlgorithm.ts",
|
|
4365
|
+
"line": 4
|
|
4366
|
+
},
|
|
4367
|
+
"members": [
|
|
4368
|
+
{
|
|
4369
|
+
"docs": {
|
|
4370
|
+
"remarks": "This provides a static comparison\nof the number of high latency requests in one AZ versus the others",
|
|
4371
|
+
"stability": "experimental",
|
|
4372
|
+
"summary": "This will take the latency threshold and count the number of requests per AZ that exceed this threshold and then calculate the percentage of requests exceeding this threshold belong to each AZ."
|
|
4373
|
+
},
|
|
4374
|
+
"name": "STATIC"
|
|
4375
|
+
},
|
|
4376
|
+
{
|
|
4377
|
+
"docs": {
|
|
4378
|
+
"remarks": "It uses\nthe target response time of all requests to calculate the standard deviation and\naverage for all AZs. This is the default.",
|
|
4379
|
+
"stability": "experimental",
|
|
4380
|
+
"summary": "This calculates the z score of latency in one AZ against the other AZs."
|
|
4381
|
+
},
|
|
4382
|
+
"name": "Z_SCORE"
|
|
4383
|
+
}
|
|
4384
|
+
],
|
|
4385
|
+
"name": "ApplicationLoadBalancerLatencyOutlierAlgorithm",
|
|
4386
|
+
"symbolId": "src/outlier-detection/ApplicationLoadBalancerLatencyOutlierAlgorithm:ApplicationLoadBalancerLatencyOutlierAlgorithm"
|
|
4387
|
+
},
|
|
4145
4388
|
"@cdklabs/multi-az-observability.AvailabilityZoneMapper": {
|
|
4146
4389
|
"assembly": "@cdklabs/multi-az-observability",
|
|
4147
4390
|
"base": "constructs.Construct",
|
|
@@ -4197,7 +4440,7 @@
|
|
|
4197
4440
|
},
|
|
4198
4441
|
"locationInModule": {
|
|
4199
4442
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4200
|
-
"line":
|
|
4443
|
+
"line": 249
|
|
4201
4444
|
},
|
|
4202
4445
|
"name": "allAvailabilityZoneIdsAsArray",
|
|
4203
4446
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4216,7 +4459,7 @@
|
|
|
4216
4459
|
},
|
|
4217
4460
|
"locationInModule": {
|
|
4218
4461
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4219
|
-
"line":
|
|
4462
|
+
"line": 240
|
|
4220
4463
|
},
|
|
4221
4464
|
"name": "allAvailabilityZoneIdsAsCommaDelimitedList",
|
|
4222
4465
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4235,7 +4478,7 @@
|
|
|
4235
4478
|
},
|
|
4236
4479
|
"locationInModule": {
|
|
4237
4480
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4238
|
-
"line":
|
|
4481
|
+
"line": 269
|
|
4239
4482
|
},
|
|
4240
4483
|
"name": "allAvailabilityZoneNamesAsCommaDelimitedList",
|
|
4241
4484
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4253,7 +4496,7 @@
|
|
|
4253
4496
|
},
|
|
4254
4497
|
"locationInModule": {
|
|
4255
4498
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4256
|
-
"line":
|
|
4499
|
+
"line": 177
|
|
4257
4500
|
},
|
|
4258
4501
|
"name": "availabilityZoneId",
|
|
4259
4502
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4279,7 +4522,7 @@
|
|
|
4279
4522
|
},
|
|
4280
4523
|
"locationInModule": {
|
|
4281
4524
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4282
|
-
"line":
|
|
4525
|
+
"line": 259
|
|
4283
4526
|
},
|
|
4284
4527
|
"name": "availabilityZoneIdFromAvailabilityZoneLetter",
|
|
4285
4528
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4305,7 +4548,7 @@
|
|
|
4305
4548
|
},
|
|
4306
4549
|
"locationInModule": {
|
|
4307
4550
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4308
|
-
"line":
|
|
4551
|
+
"line": 205
|
|
4309
4552
|
},
|
|
4310
4553
|
"name": "availabilityZoneIdsAsArray",
|
|
4311
4554
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4342,7 +4585,7 @@
|
|
|
4342
4585
|
},
|
|
4343
4586
|
"locationInModule": {
|
|
4344
4587
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4345
|
-
"line":
|
|
4588
|
+
"line": 222
|
|
4346
4589
|
},
|
|
4347
4590
|
"name": "availabilityZoneIdsAsCommaDelimitedList",
|
|
4348
4591
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4373,7 +4616,7 @@
|
|
|
4373
4616
|
},
|
|
4374
4617
|
"locationInModule": {
|
|
4375
4618
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4376
|
-
"line":
|
|
4619
|
+
"line": 186
|
|
4377
4620
|
},
|
|
4378
4621
|
"name": "availabilityZoneName",
|
|
4379
4622
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4399,7 +4642,7 @@
|
|
|
4399
4642
|
},
|
|
4400
4643
|
"locationInModule": {
|
|
4401
4644
|
"filename": "src/azmapper/AvailabilityZoneMapper.ts",
|
|
4402
|
-
"line":
|
|
4645
|
+
"line": 195
|
|
4403
4646
|
},
|
|
4404
4647
|
"name": "regionPrefixForAvailabilityZoneIds",
|
|
4405
4648
|
"overrides": "@cdklabs/multi-az-observability.IAvailabilityZoneMapper",
|
|
@@ -4515,7 +4758,7 @@
|
|
|
4515
4758
|
},
|
|
4516
4759
|
"locationInModule": {
|
|
4517
4760
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4518
|
-
"line":
|
|
4761
|
+
"line": 81
|
|
4519
4762
|
},
|
|
4520
4763
|
"parameters": [
|
|
4521
4764
|
{
|
|
@@ -4544,7 +4787,7 @@
|
|
|
4544
4787
|
"kind": "class",
|
|
4545
4788
|
"locationInModule": {
|
|
4546
4789
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4547
|
-
"line":
|
|
4790
|
+
"line": 34
|
|
4548
4791
|
},
|
|
4549
4792
|
"name": "BasicServiceMultiAZObservability",
|
|
4550
4793
|
"properties": [
|
|
@@ -4555,7 +4798,7 @@
|
|
|
4555
4798
|
},
|
|
4556
4799
|
"locationInModule": {
|
|
4557
4800
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4558
|
-
"line":
|
|
4801
|
+
"line": 69
|
|
4559
4802
|
},
|
|
4560
4803
|
"name": "aggregateZonalIsolatedImpactAlarms",
|
|
4561
4804
|
"overrides": "@cdklabs/multi-az-observability.IBasicServiceMultiAZObservability",
|
|
@@ -4575,7 +4818,7 @@
|
|
|
4575
4818
|
},
|
|
4576
4819
|
"locationInModule": {
|
|
4577
4820
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4578
|
-
"line":
|
|
4821
|
+
"line": 51
|
|
4579
4822
|
},
|
|
4580
4823
|
"name": "serviceName",
|
|
4581
4824
|
"overrides": "@cdklabs/multi-az-observability.IBasicServiceMultiAZObservability",
|
|
@@ -4590,7 +4833,7 @@
|
|
|
4590
4833
|
},
|
|
4591
4834
|
"locationInModule": {
|
|
4592
4835
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4593
|
-
"line":
|
|
4836
|
+
"line": 63
|
|
4594
4837
|
},
|
|
4595
4838
|
"name": "albZonalIsolatedImpactAlarms",
|
|
4596
4839
|
"optional": true,
|
|
@@ -4611,7 +4854,7 @@
|
|
|
4611
4854
|
},
|
|
4612
4855
|
"locationInModule": {
|
|
4613
4856
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4614
|
-
"line":
|
|
4857
|
+
"line": 46
|
|
4615
4858
|
},
|
|
4616
4859
|
"name": "applicationLoadBalancers",
|
|
4617
4860
|
"optional": true,
|
|
@@ -4632,10 +4875,11 @@
|
|
|
4632
4875
|
},
|
|
4633
4876
|
"locationInModule": {
|
|
4634
4877
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4635
|
-
"line":
|
|
4878
|
+
"line": 74
|
|
4636
4879
|
},
|
|
4637
4880
|
"name": "dashboard",
|
|
4638
4881
|
"optional": true,
|
|
4882
|
+
"overrides": "@cdklabs/multi-az-observability.IBasicServiceMultiAZObservability",
|
|
4639
4883
|
"type": {
|
|
4640
4884
|
"fqn": "aws-cdk-lib.aws_cloudwatch.Dashboard"
|
|
4641
4885
|
}
|
|
@@ -4647,7 +4891,7 @@
|
|
|
4647
4891
|
},
|
|
4648
4892
|
"locationInModule": {
|
|
4649
4893
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4650
|
-
"line":
|
|
4894
|
+
"line": 41
|
|
4651
4895
|
},
|
|
4652
4896
|
"name": "natGateways",
|
|
4653
4897
|
"optional": true,
|
|
@@ -4673,7 +4917,7 @@
|
|
|
4673
4917
|
},
|
|
4674
4918
|
"locationInModule": {
|
|
4675
4919
|
"filename": "src/basic_observability/BasicServiceMultiAZObservability.ts",
|
|
4676
|
-
"line":
|
|
4920
|
+
"line": 57
|
|
4677
4921
|
},
|
|
4678
4922
|
"name": "natGWZonalIsolatedImpactAlarms",
|
|
4679
4923
|
"optional": true,
|
|
@@ -4714,7 +4958,7 @@
|
|
|
4714
4958
|
"immutable": true,
|
|
4715
4959
|
"locationInModule": {
|
|
4716
4960
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4717
|
-
"line":
|
|
4961
|
+
"line": 93
|
|
4718
4962
|
},
|
|
4719
4963
|
"name": "datapointsToAlarm",
|
|
4720
4964
|
"type": {
|
|
@@ -4730,62 +4974,13 @@
|
|
|
4730
4974
|
"immutable": true,
|
|
4731
4975
|
"locationInModule": {
|
|
4732
4976
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4733
|
-
"line":
|
|
4977
|
+
"line": 88
|
|
4734
4978
|
},
|
|
4735
4979
|
"name": "evaluationPeriods",
|
|
4736
4980
|
"type": {
|
|
4737
4981
|
"primitive": "number"
|
|
4738
4982
|
}
|
|
4739
4983
|
},
|
|
4740
|
-
{
|
|
4741
|
-
"abstract": true,
|
|
4742
|
-
"docs": {
|
|
4743
|
-
"remarks": "For example\n1% or 5%, specify as 1 or 5.",
|
|
4744
|
-
"stability": "experimental",
|
|
4745
|
-
"summary": "The percentage of faults for a single ALB to consider an AZ to be unhealthy, this should align with your availability goal."
|
|
4746
|
-
},
|
|
4747
|
-
"immutable": true,
|
|
4748
|
-
"locationInModule": {
|
|
4749
|
-
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4750
|
-
"line": 49
|
|
4751
|
-
},
|
|
4752
|
-
"name": "faultCountPercentageThreshold",
|
|
4753
|
-
"type": {
|
|
4754
|
-
"primitive": "number"
|
|
4755
|
-
}
|
|
4756
|
-
},
|
|
4757
|
-
{
|
|
4758
|
-
"abstract": true,
|
|
4759
|
-
"docs": {
|
|
4760
|
-
"stability": "experimental",
|
|
4761
|
-
"summary": "The statistic used to measure target response latency, like p99, which can be specified using Stats.percentile(99) or \"p99\"."
|
|
4762
|
-
},
|
|
4763
|
-
"immutable": true,
|
|
4764
|
-
"locationInModule": {
|
|
4765
|
-
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4766
|
-
"line": 61
|
|
4767
|
-
},
|
|
4768
|
-
"name": "latencyStatistic",
|
|
4769
|
-
"type": {
|
|
4770
|
-
"primitive": "string"
|
|
4771
|
-
}
|
|
4772
|
-
},
|
|
4773
|
-
{
|
|
4774
|
-
"abstract": true,
|
|
4775
|
-
"docs": {
|
|
4776
|
-
"stability": "experimental",
|
|
4777
|
-
"summary": "The threshold in seconds for ALB targets whose responses are slower than this value at the specified percentile statistic."
|
|
4778
|
-
},
|
|
4779
|
-
"immutable": true,
|
|
4780
|
-
"locationInModule": {
|
|
4781
|
-
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4782
|
-
"line": 55
|
|
4783
|
-
},
|
|
4784
|
-
"name": "latencyThreshold",
|
|
4785
|
-
"type": {
|
|
4786
|
-
"primitive": "number"
|
|
4787
|
-
}
|
|
4788
|
-
},
|
|
4789
4984
|
{
|
|
4790
4985
|
"abstract": true,
|
|
4791
4986
|
"docs": {
|
|
@@ -4795,7 +4990,7 @@
|
|
|
4795
4990
|
"immutable": true,
|
|
4796
4991
|
"locationInModule": {
|
|
4797
4992
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4798
|
-
"line":
|
|
4993
|
+
"line": 31
|
|
4799
4994
|
},
|
|
4800
4995
|
"name": "serviceName",
|
|
4801
4996
|
"type": {
|
|
@@ -4805,25 +5000,20 @@
|
|
|
4805
5000
|
{
|
|
4806
5001
|
"abstract": true,
|
|
4807
5002
|
"docs": {
|
|
4808
|
-
"default": "\"No
|
|
4809
|
-
"remarks": "
|
|
5003
|
+
"default": "\"No ALBs will be used to calculate impact.\"",
|
|
5004
|
+
"remarks": "You must specify this\nand/or natGatewayProps.",
|
|
4810
5005
|
"stability": "experimental",
|
|
4811
|
-
"summary": "
|
|
5006
|
+
"summary": "Properties for ALBs to detect single AZ impact."
|
|
4812
5007
|
},
|
|
4813
5008
|
"immutable": true,
|
|
4814
5009
|
"locationInModule": {
|
|
4815
5010
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4816
|
-
"line":
|
|
5011
|
+
"line": 26
|
|
4817
5012
|
},
|
|
4818
|
-
"name": "
|
|
5013
|
+
"name": "applicationLoadBalancerProps",
|
|
4819
5014
|
"optional": true,
|
|
4820
5015
|
"type": {
|
|
4821
|
-
"
|
|
4822
|
-
"elementtype": {
|
|
4823
|
-
"fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancer"
|
|
4824
|
-
},
|
|
4825
|
-
"kind": "array"
|
|
4826
|
-
}
|
|
5016
|
+
"fqn": "@cdklabs/multi-az-observability.ApplicationLoadBalancerDetectionProps"
|
|
4827
5017
|
}
|
|
4828
5018
|
},
|
|
4829
5019
|
{
|
|
@@ -4837,7 +5027,7 @@
|
|
|
4837
5027
|
"immutable": true,
|
|
4838
5028
|
"locationInModule": {
|
|
4839
5029
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4840
|
-
"line":
|
|
5030
|
+
"line": 67
|
|
4841
5031
|
},
|
|
4842
5032
|
"name": "assetsBucketParameterName",
|
|
4843
5033
|
"optional": true,
|
|
@@ -4856,7 +5046,7 @@
|
|
|
4856
5046
|
"immutable": true,
|
|
4857
5047
|
"locationInModule": {
|
|
4858
5048
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4859
|
-
"line":
|
|
5049
|
+
"line": 83
|
|
4860
5050
|
},
|
|
4861
5051
|
"name": "assetsBucketPrefixParameterName",
|
|
4862
5052
|
"optional": true,
|
|
@@ -4874,7 +5064,7 @@
|
|
|
4874
5064
|
"immutable": true,
|
|
4875
5065
|
"locationInModule": {
|
|
4876
5066
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4877
|
-
"line":
|
|
5067
|
+
"line": 45
|
|
4878
5068
|
},
|
|
4879
5069
|
"name": "createDashboard",
|
|
4880
5070
|
"optional": true,
|
|
@@ -4892,7 +5082,7 @@
|
|
|
4892
5082
|
"immutable": true,
|
|
4893
5083
|
"locationInModule": {
|
|
4894
5084
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4895
|
-
"line":
|
|
5085
|
+
"line": 52
|
|
4896
5086
|
},
|
|
4897
5087
|
"name": "interval",
|
|
4898
5088
|
"optional": true,
|
|
@@ -4903,48 +5093,20 @@
|
|
|
4903
5093
|
{
|
|
4904
5094
|
"abstract": true,
|
|
4905
5095
|
"docs": {
|
|
4906
|
-
"default": "\"No
|
|
4907
|
-
"remarks": "
|
|
4908
|
-
"stability": "experimental",
|
|
4909
|
-
"summary": "(Optional) A map of Availability Zone name to the NAT Gateways in that AZ."
|
|
4910
|
-
},
|
|
4911
|
-
"immutable": true,
|
|
4912
|
-
"locationInModule": {
|
|
4913
|
-
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4914
|
-
"line": 20
|
|
4915
|
-
},
|
|
4916
|
-
"name": "natGateways",
|
|
4917
|
-
"optional": true,
|
|
4918
|
-
"type": {
|
|
4919
|
-
"collection": {
|
|
4920
|
-
"elementtype": {
|
|
4921
|
-
"collection": {
|
|
4922
|
-
"elementtype": {
|
|
4923
|
-
"fqn": "aws-cdk-lib.aws_ec2.CfnNatGateway"
|
|
4924
|
-
},
|
|
4925
|
-
"kind": "array"
|
|
4926
|
-
}
|
|
4927
|
-
},
|
|
4928
|
-
"kind": "map"
|
|
4929
|
-
}
|
|
4930
|
-
}
|
|
4931
|
-
},
|
|
4932
|
-
{
|
|
4933
|
-
"abstract": true,
|
|
4934
|
-
"docs": {
|
|
4935
|
-
"default": "\"0.01 (as in 0.01%)\"",
|
|
5096
|
+
"default": "\"No NAT Gateways will be used to calculate impact.\"",
|
|
5097
|
+
"remarks": "You must specify\nthis and/or applicationLoadBalancerProps.",
|
|
4936
5098
|
"stability": "experimental",
|
|
4937
|
-
"summary": "
|
|
5099
|
+
"summary": "Properties for NAT Gateways to detect single AZ impact."
|
|
4938
5100
|
},
|
|
4939
5101
|
"immutable": true,
|
|
4940
5102
|
"locationInModule": {
|
|
4941
5103
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4942
|
-
"line":
|
|
5104
|
+
"line": 18
|
|
4943
5105
|
},
|
|
4944
|
-
"name": "
|
|
5106
|
+
"name": "natGatewayProps",
|
|
4945
5107
|
"optional": true,
|
|
4946
5108
|
"type": {
|
|
4947
|
-
"
|
|
5109
|
+
"fqn": "@cdklabs/multi-az-observability.NatGatewayDetectionProps"
|
|
4948
5110
|
}
|
|
4949
5111
|
},
|
|
4950
5112
|
{
|
|
@@ -4957,7 +5119,7 @@
|
|
|
4957
5119
|
"immutable": true,
|
|
4958
5120
|
"locationInModule": {
|
|
4959
5121
|
"filename": "src/basic_observability/props/BasicServiceMultiAZObservabilityProps.ts",
|
|
4960
|
-
"line":
|
|
5122
|
+
"line": 38
|
|
4961
5123
|
},
|
|
4962
5124
|
"name": "period",
|
|
4963
5125
|
"optional": true,
|
|
@@ -4979,7 +5141,7 @@
|
|
|
4979
5141
|
"kind": "interface",
|
|
4980
5142
|
"locationInModule": {
|
|
4981
5143
|
"filename": "src/services/props/CanaryMetricProps.ts",
|
|
4982
|
-
"line":
|
|
5144
|
+
"line": 9
|
|
4983
5145
|
},
|
|
4984
5146
|
"name": "CanaryMetricProps",
|
|
4985
5147
|
"properties": [
|
|
@@ -4992,11 +5154,11 @@
|
|
|
4992
5154
|
"immutable": true,
|
|
4993
5155
|
"locationInModule": {
|
|
4994
5156
|
"filename": "src/services/props/CanaryMetricProps.ts",
|
|
4995
|
-
"line":
|
|
5157
|
+
"line": 13
|
|
4996
5158
|
},
|
|
4997
5159
|
"name": "canaryAvailabilityMetricDetails",
|
|
4998
5160
|
"type": {
|
|
4999
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5161
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
5000
5162
|
}
|
|
5001
5163
|
},
|
|
5002
5164
|
{
|
|
@@ -5008,11 +5170,11 @@
|
|
|
5008
5170
|
"immutable": true,
|
|
5009
5171
|
"locationInModule": {
|
|
5010
5172
|
"filename": "src/services/props/CanaryMetricProps.ts",
|
|
5011
|
-
"line":
|
|
5173
|
+
"line": 18
|
|
5012
5174
|
},
|
|
5013
5175
|
"name": "canaryLatencyMetricDetails",
|
|
5014
5176
|
"type": {
|
|
5015
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5177
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
5016
5178
|
}
|
|
5017
5179
|
}
|
|
5018
5180
|
],
|
|
@@ -5031,7 +5193,7 @@
|
|
|
5031
5193
|
},
|
|
5032
5194
|
"locationInModule": {
|
|
5033
5195
|
"filename": "src/services/CanaryMetrics.ts",
|
|
5034
|
-
"line":
|
|
5196
|
+
"line": 22
|
|
5035
5197
|
},
|
|
5036
5198
|
"parameters": [
|
|
5037
5199
|
{
|
|
@@ -5048,7 +5210,7 @@
|
|
|
5048
5210
|
"kind": "class",
|
|
5049
5211
|
"locationInModule": {
|
|
5050
5212
|
"filename": "src/services/CanaryMetrics.ts",
|
|
5051
|
-
"line":
|
|
5213
|
+
"line": 11
|
|
5052
5214
|
},
|
|
5053
5215
|
"name": "CanaryMetrics",
|
|
5054
5216
|
"properties": [
|
|
@@ -5060,12 +5222,12 @@
|
|
|
5060
5222
|
"immutable": true,
|
|
5061
5223
|
"locationInModule": {
|
|
5062
5224
|
"filename": "src/services/CanaryMetrics.ts",
|
|
5063
|
-
"line":
|
|
5225
|
+
"line": 15
|
|
5064
5226
|
},
|
|
5065
5227
|
"name": "canaryAvailabilityMetricDetails",
|
|
5066
5228
|
"overrides": "@cdklabs/multi-az-observability.ICanaryMetrics",
|
|
5067
5229
|
"type": {
|
|
5068
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5230
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
5069
5231
|
}
|
|
5070
5232
|
},
|
|
5071
5233
|
{
|
|
@@ -5076,81 +5238,61 @@
|
|
|
5076
5238
|
"immutable": true,
|
|
5077
5239
|
"locationInModule": {
|
|
5078
5240
|
"filename": "src/services/CanaryMetrics.ts",
|
|
5079
|
-
"line":
|
|
5241
|
+
"line": 20
|
|
5080
5242
|
},
|
|
5081
5243
|
"name": "canaryLatencyMetricDetails",
|
|
5082
5244
|
"overrides": "@cdklabs/multi-az-observability.ICanaryMetrics",
|
|
5083
5245
|
"type": {
|
|
5084
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5246
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
5085
5247
|
}
|
|
5086
5248
|
}
|
|
5087
5249
|
],
|
|
5088
5250
|
"symbolId": "src/services/CanaryMetrics:CanaryMetrics"
|
|
5089
5251
|
},
|
|
5090
|
-
"@cdklabs/multi-az-observability.
|
|
5252
|
+
"@cdklabs/multi-az-observability.CanaryTestAvailabilityMetricsOverride": {
|
|
5091
5253
|
"assembly": "@cdklabs/multi-az-observability",
|
|
5254
|
+
"base": "@cdklabs/multi-az-observability.CanaryTestMetricsOverride",
|
|
5092
5255
|
"docs": {
|
|
5093
5256
|
"stability": "experimental",
|
|
5094
5257
|
"summary": "Provides overrides for the default metric settings used for the automatically created canary tests."
|
|
5095
5258
|
},
|
|
5096
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5259
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestAvailabilityMetricsOverride",
|
|
5097
5260
|
"initializer": {
|
|
5098
5261
|
"docs": {
|
|
5099
5262
|
"stability": "experimental"
|
|
5100
5263
|
},
|
|
5101
5264
|
"locationInModule": {
|
|
5102
|
-
"filename": "src/services/
|
|
5103
|
-
"line":
|
|
5265
|
+
"filename": "src/services/CanaryTestAvailabilityMetricsOverride.ts",
|
|
5266
|
+
"line": 25
|
|
5104
5267
|
},
|
|
5105
5268
|
"parameters": [
|
|
5106
5269
|
{
|
|
5107
5270
|
"name": "props",
|
|
5108
5271
|
"type": {
|
|
5109
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5272
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestAvailabilityMetricsOverrideProps"
|
|
5110
5273
|
}
|
|
5111
5274
|
}
|
|
5112
5275
|
]
|
|
5113
5276
|
},
|
|
5114
|
-
"interfaces": [
|
|
5115
|
-
"@cdklabs/multi-az-observability.ICanaryTestMetricsOverride"
|
|
5116
|
-
],
|
|
5117
5277
|
"kind": "class",
|
|
5118
5278
|
"locationInModule": {
|
|
5119
|
-
"filename": "src/services/
|
|
5120
|
-
"line":
|
|
5279
|
+
"filename": "src/services/CanaryTestAvailabilityMetricsOverride.ts",
|
|
5280
|
+
"line": 10
|
|
5121
5281
|
},
|
|
5122
|
-
"name": "
|
|
5282
|
+
"name": "CanaryTestAvailabilityMetricsOverride",
|
|
5123
5283
|
"properties": [
|
|
5124
5284
|
{
|
|
5125
5285
|
"docs": {
|
|
5126
5286
|
"stability": "experimental",
|
|
5127
|
-
"summary": "The
|
|
5128
|
-
},
|
|
5129
|
-
"immutable": true,
|
|
5130
|
-
"locationInModule": {
|
|
5131
|
-
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5132
|
-
"line": 16
|
|
5133
|
-
},
|
|
5134
|
-
"name": "alarmStatistic",
|
|
5135
|
-
"optional": true,
|
|
5136
|
-
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5137
|
-
"type": {
|
|
5138
|
-
"primitive": "string"
|
|
5139
|
-
}
|
|
5140
|
-
},
|
|
5141
|
-
{
|
|
5142
|
-
"docs": {
|
|
5143
|
-
"stability": "experimental",
|
|
5144
|
-
"summary": "The number of datapoints to alarm on for latency and availability alarms."
|
|
5287
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
5145
5288
|
},
|
|
5146
5289
|
"immutable": true,
|
|
5147
5290
|
"locationInModule": {
|
|
5148
|
-
"filename": "src/services/
|
|
5149
|
-
"line":
|
|
5291
|
+
"filename": "src/services/CanaryTestAvailabilityMetricsOverride.ts",
|
|
5292
|
+
"line": 23
|
|
5150
5293
|
},
|
|
5151
|
-
"name": "
|
|
5294
|
+
"name": "faultAlarmThreshold",
|
|
5152
5295
|
"optional": true,
|
|
5153
|
-
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5154
5296
|
"type": {
|
|
5155
5297
|
"primitive": "number"
|
|
5156
5298
|
}
|
|
@@ -5158,159 +5300,306 @@
|
|
|
5158
5300
|
{
|
|
5159
5301
|
"docs": {
|
|
5160
5302
|
"stability": "experimental",
|
|
5161
|
-
"summary": "The
|
|
5303
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
5162
5304
|
},
|
|
5163
5305
|
"immutable": true,
|
|
5164
5306
|
"locationInModule": {
|
|
5165
|
-
"filename": "src/services/
|
|
5166
|
-
"line":
|
|
5307
|
+
"filename": "src/services/CanaryTestAvailabilityMetricsOverride.ts",
|
|
5308
|
+
"line": 16
|
|
5167
5309
|
},
|
|
5168
|
-
"name": "
|
|
5310
|
+
"name": "successAlarmThreshold",
|
|
5169
5311
|
"optional": true,
|
|
5170
|
-
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5171
5312
|
"type": {
|
|
5172
5313
|
"primitive": "number"
|
|
5173
5314
|
}
|
|
5174
|
-
}
|
|
5315
|
+
}
|
|
5316
|
+
],
|
|
5317
|
+
"symbolId": "src/services/CanaryTestAvailabilityMetricsOverride:CanaryTestAvailabilityMetricsOverride"
|
|
5318
|
+
},
|
|
5319
|
+
"@cdklabs/multi-az-observability.CanaryTestAvailabilityMetricsOverrideProps": {
|
|
5320
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
5321
|
+
"datatype": true,
|
|
5322
|
+
"docs": {
|
|
5323
|
+
"stability": "experimental",
|
|
5324
|
+
"summary": "Properties for canary metrics in an operation."
|
|
5325
|
+
},
|
|
5326
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestAvailabilityMetricsOverrideProps",
|
|
5327
|
+
"interfaces": [
|
|
5328
|
+
"@cdklabs/multi-az-observability.CanaryTestMetricsOverrideProps"
|
|
5329
|
+
],
|
|
5330
|
+
"kind": "interface",
|
|
5331
|
+
"locationInModule": {
|
|
5332
|
+
"filename": "src/services/props/CanaryTestAvailabilityMetricsOverrideProps.ts",
|
|
5333
|
+
"line": 8
|
|
5334
|
+
},
|
|
5335
|
+
"name": "CanaryTestAvailabilityMetricsOverrideProps",
|
|
5336
|
+
"properties": [
|
|
5175
5337
|
{
|
|
5338
|
+
"abstract": true,
|
|
5176
5339
|
"docs": {
|
|
5340
|
+
"default": "- This property will use the default defined for the service",
|
|
5177
5341
|
"stability": "experimental",
|
|
5178
5342
|
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
5179
5343
|
},
|
|
5180
5344
|
"immutable": true,
|
|
5181
5345
|
"locationInModule": {
|
|
5182
|
-
"filename": "src/services/
|
|
5183
|
-
"line":
|
|
5346
|
+
"filename": "src/services/props/CanaryTestAvailabilityMetricsOverrideProps.ts",
|
|
5347
|
+
"line": 25
|
|
5184
5348
|
},
|
|
5185
5349
|
"name": "faultAlarmThreshold",
|
|
5186
5350
|
"optional": true,
|
|
5187
|
-
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5188
5351
|
"type": {
|
|
5189
5352
|
"primitive": "number"
|
|
5190
5353
|
}
|
|
5191
5354
|
},
|
|
5192
5355
|
{
|
|
5356
|
+
"abstract": true,
|
|
5193
5357
|
"docs": {
|
|
5358
|
+
"default": "- This property will use the default defined for the service",
|
|
5194
5359
|
"stability": "experimental",
|
|
5195
|
-
"summary": "The
|
|
5360
|
+
"summary": "The threshold for alarms associated with success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
5196
5361
|
},
|
|
5197
5362
|
"immutable": true,
|
|
5198
5363
|
"locationInModule": {
|
|
5199
|
-
"filename": "src/services/
|
|
5200
|
-
"line":
|
|
5364
|
+
"filename": "src/services/props/CanaryTestAvailabilityMetricsOverrideProps.ts",
|
|
5365
|
+
"line": 16
|
|
5201
5366
|
},
|
|
5202
|
-
"name": "
|
|
5367
|
+
"name": "successAlarmThreshold",
|
|
5203
5368
|
"optional": true,
|
|
5204
|
-
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5205
5369
|
"type": {
|
|
5206
|
-
"
|
|
5370
|
+
"primitive": "number"
|
|
5207
5371
|
}
|
|
5372
|
+
}
|
|
5373
|
+
],
|
|
5374
|
+
"symbolId": "src/services/props/CanaryTestAvailabilityMetricsOverrideProps:CanaryTestAvailabilityMetricsOverrideProps"
|
|
5375
|
+
},
|
|
5376
|
+
"@cdklabs/multi-az-observability.CanaryTestLatencyMetricsOverride": {
|
|
5377
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
5378
|
+
"base": "@cdklabs/multi-az-observability.CanaryTestMetricsOverride",
|
|
5379
|
+
"docs": {
|
|
5380
|
+
"stability": "experimental",
|
|
5381
|
+
"summary": "Provides overrides for the default metric settings used for the automatically created canary tests."
|
|
5382
|
+
},
|
|
5383
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestLatencyMetricsOverride",
|
|
5384
|
+
"initializer": {
|
|
5385
|
+
"docs": {
|
|
5386
|
+
"stability": "experimental"
|
|
5208
5387
|
},
|
|
5388
|
+
"locationInModule": {
|
|
5389
|
+
"filename": "src/services/CanaryTestLatencyMetricsOverride.ts",
|
|
5390
|
+
"line": 18
|
|
5391
|
+
},
|
|
5392
|
+
"parameters": [
|
|
5393
|
+
{
|
|
5394
|
+
"name": "props",
|
|
5395
|
+
"type": {
|
|
5396
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestLatencyMetricsOverrideProps"
|
|
5397
|
+
}
|
|
5398
|
+
}
|
|
5399
|
+
]
|
|
5400
|
+
},
|
|
5401
|
+
"kind": "class",
|
|
5402
|
+
"locationInModule": {
|
|
5403
|
+
"filename": "src/services/CanaryTestLatencyMetricsOverride.ts",
|
|
5404
|
+
"line": 11
|
|
5405
|
+
},
|
|
5406
|
+
"name": "CanaryTestLatencyMetricsOverride",
|
|
5407
|
+
"properties": [
|
|
5209
5408
|
{
|
|
5210
5409
|
"docs": {
|
|
5211
5410
|
"stability": "experimental",
|
|
5212
|
-
"summary": "The threshold for alarms associated with success metrics, for example if
|
|
5411
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
5213
5412
|
},
|
|
5214
5413
|
"immutable": true,
|
|
5215
5414
|
"locationInModule": {
|
|
5216
|
-
"filename": "src/services/
|
|
5217
|
-
"line":
|
|
5415
|
+
"filename": "src/services/CanaryTestLatencyMetricsOverride.ts",
|
|
5416
|
+
"line": 16
|
|
5218
5417
|
},
|
|
5219
5418
|
"name": "successAlarmThreshold",
|
|
5220
5419
|
"optional": true,
|
|
5221
|
-
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5222
5420
|
"type": {
|
|
5223
|
-
"
|
|
5421
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
5224
5422
|
}
|
|
5225
5423
|
}
|
|
5226
5424
|
],
|
|
5227
|
-
"symbolId": "src/services/
|
|
5425
|
+
"symbolId": "src/services/CanaryTestLatencyMetricsOverride:CanaryTestLatencyMetricsOverride"
|
|
5228
5426
|
},
|
|
5229
|
-
"@cdklabs/multi-az-observability.
|
|
5427
|
+
"@cdklabs/multi-az-observability.CanaryTestLatencyMetricsOverrideProps": {
|
|
5230
5428
|
"assembly": "@cdklabs/multi-az-observability",
|
|
5231
5429
|
"datatype": true,
|
|
5232
5430
|
"docs": {
|
|
5233
5431
|
"stability": "experimental",
|
|
5234
|
-
"summary": "
|
|
5432
|
+
"summary": "Properties for canary metrics in an operation."
|
|
5235
5433
|
},
|
|
5236
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
5434
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestLatencyMetricsOverrideProps",
|
|
5435
|
+
"interfaces": [
|
|
5436
|
+
"@cdklabs/multi-az-observability.CanaryTestMetricsOverrideProps"
|
|
5437
|
+
],
|
|
5237
5438
|
"kind": "interface",
|
|
5238
5439
|
"locationInModule": {
|
|
5239
|
-
"filename": "src/services/props/
|
|
5240
|
-
"line":
|
|
5440
|
+
"filename": "src/services/props/CanaryTestLatencyMetricsOverrideProps.ts",
|
|
5441
|
+
"line": 9
|
|
5241
5442
|
},
|
|
5242
|
-
"name": "
|
|
5443
|
+
"name": "CanaryTestLatencyMetricsOverrideProps",
|
|
5243
5444
|
"properties": [
|
|
5244
5445
|
{
|
|
5245
5446
|
"abstract": true,
|
|
5246
5447
|
"docs": {
|
|
5247
5448
|
"default": "- This property will use the default defined for the service",
|
|
5248
5449
|
"stability": "experimental",
|
|
5249
|
-
"summary": "The
|
|
5450
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
5250
5451
|
},
|
|
5251
5452
|
"immutable": true,
|
|
5252
5453
|
"locationInModule": {
|
|
5253
|
-
"filename": "src/services/props/
|
|
5254
|
-
"line":
|
|
5454
|
+
"filename": "src/services/props/CanaryTestLatencyMetricsOverrideProps.ts",
|
|
5455
|
+
"line": 16
|
|
5255
5456
|
},
|
|
5256
|
-
"name": "
|
|
5457
|
+
"name": "successAlarmThreshold",
|
|
5257
5458
|
"optional": true,
|
|
5258
5459
|
"type": {
|
|
5259
|
-
"
|
|
5460
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
5260
5461
|
}
|
|
5462
|
+
}
|
|
5463
|
+
],
|
|
5464
|
+
"symbolId": "src/services/props/CanaryTestLatencyMetricsOverrideProps:CanaryTestLatencyMetricsOverrideProps"
|
|
5465
|
+
},
|
|
5466
|
+
"@cdklabs/multi-az-observability.CanaryTestMetricsOverride": {
|
|
5467
|
+
"abstract": true,
|
|
5468
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
5469
|
+
"docs": {
|
|
5470
|
+
"stability": "experimental",
|
|
5471
|
+
"summary": "Provides overrides for the default metric settings used for the automatically created canary tests."
|
|
5472
|
+
},
|
|
5473
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestMetricsOverride",
|
|
5474
|
+
"initializer": {
|
|
5475
|
+
"docs": {
|
|
5476
|
+
"stability": "experimental"
|
|
5261
5477
|
},
|
|
5262
|
-
{
|
|
5263
|
-
"
|
|
5264
|
-
"
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5478
|
+
"locationInModule": {
|
|
5479
|
+
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5480
|
+
"line": 33
|
|
5481
|
+
},
|
|
5482
|
+
"parameters": [
|
|
5483
|
+
{
|
|
5484
|
+
"name": "props",
|
|
5485
|
+
"type": {
|
|
5486
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestMetricsOverrideProps"
|
|
5487
|
+
}
|
|
5488
|
+
}
|
|
5489
|
+
]
|
|
5490
|
+
},
|
|
5491
|
+
"interfaces": [
|
|
5492
|
+
"@cdklabs/multi-az-observability.ICanaryTestMetricsOverride"
|
|
5493
|
+
],
|
|
5494
|
+
"kind": "class",
|
|
5495
|
+
"locationInModule": {
|
|
5496
|
+
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5497
|
+
"line": 11
|
|
5498
|
+
},
|
|
5499
|
+
"name": "CanaryTestMetricsOverride",
|
|
5500
|
+
"properties": [
|
|
5501
|
+
{
|
|
5502
|
+
"docs": {
|
|
5503
|
+
"stability": "experimental",
|
|
5504
|
+
"summary": "The statistic used for alarms, for availability metrics this should be \"Sum\", for latency metrics it could something like \"p99\" or \"p99.9\"."
|
|
5268
5505
|
},
|
|
5269
5506
|
"immutable": true,
|
|
5270
5507
|
"locationInModule": {
|
|
5271
|
-
"filename": "src/services/
|
|
5272
|
-
"line":
|
|
5508
|
+
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5509
|
+
"line": 16
|
|
5510
|
+
},
|
|
5511
|
+
"name": "alarmStatistic",
|
|
5512
|
+
"optional": true,
|
|
5513
|
+
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5514
|
+
"type": {
|
|
5515
|
+
"primitive": "string"
|
|
5516
|
+
}
|
|
5517
|
+
},
|
|
5518
|
+
{
|
|
5519
|
+
"docs": {
|
|
5520
|
+
"stability": "experimental",
|
|
5521
|
+
"summary": "The number of datapoints to alarm on for latency and availability alarms."
|
|
5522
|
+
},
|
|
5523
|
+
"immutable": true,
|
|
5524
|
+
"locationInModule": {
|
|
5525
|
+
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5526
|
+
"line": 31
|
|
5273
5527
|
},
|
|
5274
5528
|
"name": "datapointsToAlarm",
|
|
5275
5529
|
"optional": true,
|
|
5530
|
+
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5276
5531
|
"type": {
|
|
5277
5532
|
"primitive": "number"
|
|
5278
5533
|
}
|
|
5279
5534
|
},
|
|
5280
5535
|
{
|
|
5281
|
-
"abstract": true,
|
|
5282
5536
|
"docs": {
|
|
5283
|
-
"default": "- This property will use the default defined for the service",
|
|
5284
5537
|
"stability": "experimental",
|
|
5285
5538
|
"summary": "The number of evaluation periods for latency and availabiltiy alarms."
|
|
5286
5539
|
},
|
|
5287
5540
|
"immutable": true,
|
|
5288
5541
|
"locationInModule": {
|
|
5289
|
-
"filename": "src/services/
|
|
5290
|
-
"line":
|
|
5542
|
+
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5543
|
+
"line": 26
|
|
5291
5544
|
},
|
|
5292
5545
|
"name": "evaluationPeriods",
|
|
5293
5546
|
"optional": true,
|
|
5547
|
+
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5294
5548
|
"type": {
|
|
5295
5549
|
"primitive": "number"
|
|
5296
5550
|
}
|
|
5297
5551
|
},
|
|
5552
|
+
{
|
|
5553
|
+
"docs": {
|
|
5554
|
+
"stability": "experimental",
|
|
5555
|
+
"summary": "The period for the metrics."
|
|
5556
|
+
},
|
|
5557
|
+
"immutable": true,
|
|
5558
|
+
"locationInModule": {
|
|
5559
|
+
"filename": "src/services/CanaryTestMetricsOverride.ts",
|
|
5560
|
+
"line": 21
|
|
5561
|
+
},
|
|
5562
|
+
"name": "period",
|
|
5563
|
+
"optional": true,
|
|
5564
|
+
"overrides": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
5565
|
+
"type": {
|
|
5566
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
5567
|
+
}
|
|
5568
|
+
}
|
|
5569
|
+
],
|
|
5570
|
+
"symbolId": "src/services/CanaryTestMetricsOverride:CanaryTestMetricsOverride"
|
|
5571
|
+
},
|
|
5572
|
+
"@cdklabs/multi-az-observability.CanaryTestMetricsOverrideProps": {
|
|
5573
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
5574
|
+
"datatype": true,
|
|
5575
|
+
"docs": {
|
|
5576
|
+
"stability": "experimental",
|
|
5577
|
+
"summary": "The properties for creating an override."
|
|
5578
|
+
},
|
|
5579
|
+
"fqn": "@cdklabs/multi-az-observability.CanaryTestMetricsOverrideProps",
|
|
5580
|
+
"kind": "interface",
|
|
5581
|
+
"locationInModule": {
|
|
5582
|
+
"filename": "src/services/props/CanaryTestMetricsOverrideProps.ts",
|
|
5583
|
+
"line": 8
|
|
5584
|
+
},
|
|
5585
|
+
"name": "CanaryTestMetricsOverrideProps",
|
|
5586
|
+
"properties": [
|
|
5298
5587
|
{
|
|
5299
5588
|
"abstract": true,
|
|
5300
5589
|
"docs": {
|
|
5301
5590
|
"default": "- This property will use the default defined for the service",
|
|
5302
5591
|
"stability": "experimental",
|
|
5303
|
-
"summary": "The
|
|
5592
|
+
"summary": "The statistic used for alarms, for availability metrics this should be \"Sum\", for latency metrics it could something like \"p99\" or \"p99.9\"."
|
|
5304
5593
|
},
|
|
5305
5594
|
"immutable": true,
|
|
5306
5595
|
"locationInModule": {
|
|
5307
5596
|
"filename": "src/services/props/CanaryTestMetricsOverrideProps.ts",
|
|
5308
|
-
"line":
|
|
5597
|
+
"line": 15
|
|
5309
5598
|
},
|
|
5310
|
-
"name": "
|
|
5599
|
+
"name": "alarmStatistic",
|
|
5311
5600
|
"optional": true,
|
|
5312
5601
|
"type": {
|
|
5313
|
-
"primitive": "
|
|
5602
|
+
"primitive": "string"
|
|
5314
5603
|
}
|
|
5315
5604
|
},
|
|
5316
5605
|
{
|
|
@@ -5318,17 +5607,17 @@
|
|
|
5318
5607
|
"docs": {
|
|
5319
5608
|
"default": "- This property will use the default defined for the service",
|
|
5320
5609
|
"stability": "experimental",
|
|
5321
|
-
"summary": "The
|
|
5610
|
+
"summary": "The number of datapoints to alarm on for latency and availability alarms."
|
|
5322
5611
|
},
|
|
5323
5612
|
"immutable": true,
|
|
5324
5613
|
"locationInModule": {
|
|
5325
5614
|
"filename": "src/services/props/CanaryTestMetricsOverrideProps.ts",
|
|
5326
|
-
"line":
|
|
5615
|
+
"line": 36
|
|
5327
5616
|
},
|
|
5328
|
-
"name": "
|
|
5617
|
+
"name": "datapointsToAlarm",
|
|
5329
5618
|
"optional": true,
|
|
5330
5619
|
"type": {
|
|
5331
|
-
"
|
|
5620
|
+
"primitive": "number"
|
|
5332
5621
|
}
|
|
5333
5622
|
},
|
|
5334
5623
|
{
|
|
@@ -5336,18 +5625,36 @@
|
|
|
5336
5625
|
"docs": {
|
|
5337
5626
|
"default": "- This property will use the default defined for the service",
|
|
5338
5627
|
"stability": "experimental",
|
|
5339
|
-
"summary": "The
|
|
5628
|
+
"summary": "The number of evaluation periods for latency and availabiltiy alarms."
|
|
5340
5629
|
},
|
|
5341
5630
|
"immutable": true,
|
|
5342
5631
|
"locationInModule": {
|
|
5343
5632
|
"filename": "src/services/props/CanaryTestMetricsOverrideProps.ts",
|
|
5344
|
-
"line":
|
|
5633
|
+
"line": 29
|
|
5345
5634
|
},
|
|
5346
|
-
"name": "
|
|
5635
|
+
"name": "evaluationPeriods",
|
|
5347
5636
|
"optional": true,
|
|
5348
5637
|
"type": {
|
|
5349
5638
|
"primitive": "number"
|
|
5350
5639
|
}
|
|
5640
|
+
},
|
|
5641
|
+
{
|
|
5642
|
+
"abstract": true,
|
|
5643
|
+
"docs": {
|
|
5644
|
+
"default": "- This property will use the default defined for the service",
|
|
5645
|
+
"stability": "experimental",
|
|
5646
|
+
"summary": "The period for the metrics."
|
|
5647
|
+
},
|
|
5648
|
+
"immutable": true,
|
|
5649
|
+
"locationInModule": {
|
|
5650
|
+
"filename": "src/services/props/CanaryTestMetricsOverrideProps.ts",
|
|
5651
|
+
"line": 22
|
|
5652
|
+
},
|
|
5653
|
+
"name": "period",
|
|
5654
|
+
"optional": true,
|
|
5655
|
+
"type": {
|
|
5656
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
5657
|
+
}
|
|
5351
5658
|
}
|
|
5352
5659
|
],
|
|
5353
5660
|
"symbolId": "src/services/props/CanaryTestMetricsOverrideProps:CanaryTestMetricsOverrideProps"
|
|
@@ -5900,6 +6207,145 @@
|
|
|
5900
6207
|
],
|
|
5901
6208
|
"symbolId": "src/azmapper/IAvailabilityZoneMapper:IAvailabilityZoneMapper"
|
|
5902
6209
|
},
|
|
6210
|
+
"@cdklabs/multi-az-observability.IBaseOperationRegionalAlarmsAndRules": {
|
|
6211
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
6212
|
+
"docs": {
|
|
6213
|
+
"stability": "experimental",
|
|
6214
|
+
"summary": "Base regional alarms and rules."
|
|
6215
|
+
},
|
|
6216
|
+
"fqn": "@cdklabs/multi-az-observability.IBaseOperationRegionalAlarmsAndRules",
|
|
6217
|
+
"kind": "interface",
|
|
6218
|
+
"locationInModule": {
|
|
6219
|
+
"filename": "src/alarmsandrules/IBaseOperationRegionalAlarmsAndRules.ts",
|
|
6220
|
+
"line": 8
|
|
6221
|
+
},
|
|
6222
|
+
"name": "IBaseOperationRegionalAlarmsAndRules",
|
|
6223
|
+
"properties": [
|
|
6224
|
+
{
|
|
6225
|
+
"abstract": true,
|
|
6226
|
+
"docs": {
|
|
6227
|
+
"stability": "experimental",
|
|
6228
|
+
"summary": "Availability alarm for this operation."
|
|
6229
|
+
},
|
|
6230
|
+
"locationInModule": {
|
|
6231
|
+
"filename": "src/alarmsandrules/IBaseOperationRegionalAlarmsAndRules.ts",
|
|
6232
|
+
"line": 12
|
|
6233
|
+
},
|
|
6234
|
+
"name": "availabilityAlarm",
|
|
6235
|
+
"type": {
|
|
6236
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6237
|
+
}
|
|
6238
|
+
},
|
|
6239
|
+
{
|
|
6240
|
+
"abstract": true,
|
|
6241
|
+
"docs": {
|
|
6242
|
+
"stability": "experimental",
|
|
6243
|
+
"summary": "Composite alarm for either availabiltiy or latency impact to this operation."
|
|
6244
|
+
},
|
|
6245
|
+
"locationInModule": {
|
|
6246
|
+
"filename": "src/alarmsandrules/IBaseOperationRegionalAlarmsAndRules.ts",
|
|
6247
|
+
"line": 22
|
|
6248
|
+
},
|
|
6249
|
+
"name": "availabilityOrLatencyAlarm",
|
|
6250
|
+
"type": {
|
|
6251
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6252
|
+
}
|
|
6253
|
+
},
|
|
6254
|
+
{
|
|
6255
|
+
"abstract": true,
|
|
6256
|
+
"docs": {
|
|
6257
|
+
"stability": "experimental",
|
|
6258
|
+
"summary": "Latency alarm for this operation."
|
|
6259
|
+
},
|
|
6260
|
+
"locationInModule": {
|
|
6261
|
+
"filename": "src/alarmsandrules/IBaseOperationRegionalAlarmsAndRules.ts",
|
|
6262
|
+
"line": 17
|
|
6263
|
+
},
|
|
6264
|
+
"name": "latencyAlarm",
|
|
6265
|
+
"type": {
|
|
6266
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6267
|
+
}
|
|
6268
|
+
}
|
|
6269
|
+
],
|
|
6270
|
+
"symbolId": "src/alarmsandrules/IBaseOperationRegionalAlarmsAndRules:IBaseOperationRegionalAlarmsAndRules"
|
|
6271
|
+
},
|
|
6272
|
+
"@cdklabs/multi-az-observability.IBaseOperationZonalAlarmsAndRules": {
|
|
6273
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
6274
|
+
"docs": {
|
|
6275
|
+
"stability": "experimental",
|
|
6276
|
+
"summary": "The base operation zonal alarms and rules."
|
|
6277
|
+
},
|
|
6278
|
+
"fqn": "@cdklabs/multi-az-observability.IBaseOperationZonalAlarmsAndRules",
|
|
6279
|
+
"kind": "interface",
|
|
6280
|
+
"locationInModule": {
|
|
6281
|
+
"filename": "src/alarmsandrules/IBaseOperationZonalAlarmsAndRules.ts",
|
|
6282
|
+
"line": 8
|
|
6283
|
+
},
|
|
6284
|
+
"name": "IBaseOperationZonalAlarmsAndRules",
|
|
6285
|
+
"properties": [
|
|
6286
|
+
{
|
|
6287
|
+
"abstract": true,
|
|
6288
|
+
"docs": {
|
|
6289
|
+
"stability": "experimental",
|
|
6290
|
+
"summary": "Availability alarm for this operation."
|
|
6291
|
+
},
|
|
6292
|
+
"locationInModule": {
|
|
6293
|
+
"filename": "src/alarmsandrules/IBaseOperationZonalAlarmsAndRules.ts",
|
|
6294
|
+
"line": 12
|
|
6295
|
+
},
|
|
6296
|
+
"name": "availabilityAlarm",
|
|
6297
|
+
"type": {
|
|
6298
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6299
|
+
}
|
|
6300
|
+
},
|
|
6301
|
+
{
|
|
6302
|
+
"abstract": true,
|
|
6303
|
+
"docs": {
|
|
6304
|
+
"stability": "experimental",
|
|
6305
|
+
"summary": "Alarm that indicates that this AZ is an outlier for fault rate."
|
|
6306
|
+
},
|
|
6307
|
+
"locationInModule": {
|
|
6308
|
+
"filename": "src/alarmsandrules/IBaseOperationZonalAlarmsAndRules.ts",
|
|
6309
|
+
"line": 22
|
|
6310
|
+
},
|
|
6311
|
+
"name": "availabilityZoneIsOutlierForFaults",
|
|
6312
|
+
"type": {
|
|
6313
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6314
|
+
}
|
|
6315
|
+
},
|
|
6316
|
+
{
|
|
6317
|
+
"abstract": true,
|
|
6318
|
+
"docs": {
|
|
6319
|
+
"stability": "experimental",
|
|
6320
|
+
"summary": "Alarm that indicates this AZ is an outlier for high latency."
|
|
6321
|
+
},
|
|
6322
|
+
"locationInModule": {
|
|
6323
|
+
"filename": "src/alarmsandrules/IBaseOperationZonalAlarmsAndRules.ts",
|
|
6324
|
+
"line": 27
|
|
6325
|
+
},
|
|
6326
|
+
"name": "availabilityZoneIsOutlierForLatency",
|
|
6327
|
+
"type": {
|
|
6328
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6329
|
+
}
|
|
6330
|
+
},
|
|
6331
|
+
{
|
|
6332
|
+
"abstract": true,
|
|
6333
|
+
"docs": {
|
|
6334
|
+
"stability": "experimental",
|
|
6335
|
+
"summary": "Latency alarm for this operation."
|
|
6336
|
+
},
|
|
6337
|
+
"locationInModule": {
|
|
6338
|
+
"filename": "src/alarmsandrules/IBaseOperationZonalAlarmsAndRules.ts",
|
|
6339
|
+
"line": 17
|
|
6340
|
+
},
|
|
6341
|
+
"name": "latencyAlarm",
|
|
6342
|
+
"type": {
|
|
6343
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6344
|
+
}
|
|
6345
|
+
}
|
|
6346
|
+
],
|
|
6347
|
+
"symbolId": "src/alarmsandrules/IBaseOperationZonalAlarmsAndRules:IBaseOperationZonalAlarmsAndRules"
|
|
6348
|
+
},
|
|
5903
6349
|
"@cdklabs/multi-az-observability.IBasicServiceMultiAZObservability": {
|
|
5904
6350
|
"assembly": "@cdklabs/multi-az-observability",
|
|
5905
6351
|
"docs": {
|
|
@@ -5912,8 +6358,8 @@
|
|
|
5912
6358
|
],
|
|
5913
6359
|
"kind": "interface",
|
|
5914
6360
|
"locationInModule": {
|
|
5915
|
-
"filename": "src/
|
|
5916
|
-
"line":
|
|
6361
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6362
|
+
"line": 12
|
|
5917
6363
|
},
|
|
5918
6364
|
"name": "IBasicServiceMultiAZObservability",
|
|
5919
6365
|
"properties": [
|
|
@@ -5924,8 +6370,8 @@
|
|
|
5924
6370
|
"summary": "The alarms indicating if an AZ has isolated impact from either ALB or NAT GW metrics."
|
|
5925
6371
|
},
|
|
5926
6372
|
"locationInModule": {
|
|
5927
|
-
"filename": "src/
|
|
5928
|
-
"line":
|
|
6373
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6374
|
+
"line": 47
|
|
5929
6375
|
},
|
|
5930
6376
|
"name": "aggregateZonalIsolatedImpactAlarms",
|
|
5931
6377
|
"type": {
|
|
@@ -5944,8 +6390,8 @@
|
|
|
5944
6390
|
"summary": "The name of the service."
|
|
5945
6391
|
},
|
|
5946
6392
|
"locationInModule": {
|
|
5947
|
-
"filename": "src/
|
|
5948
|
-
"line":
|
|
6393
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6394
|
+
"line": 27
|
|
5949
6395
|
},
|
|
5950
6396
|
"name": "serviceName",
|
|
5951
6397
|
"type": {
|
|
@@ -5955,12 +6401,13 @@
|
|
|
5955
6401
|
{
|
|
5956
6402
|
"abstract": true,
|
|
5957
6403
|
"docs": {
|
|
6404
|
+
"remarks": "This will be 1 composite alarm \nper AZ that triggers if any ALB in that AZ sees outlier impact.",
|
|
5958
6405
|
"stability": "experimental",
|
|
5959
6406
|
"summary": "The alarms indicating if an AZ is an outlier for ALB faults and has isolated impact."
|
|
5960
6407
|
},
|
|
5961
6408
|
"locationInModule": {
|
|
5962
|
-
"filename": "src/
|
|
5963
|
-
"line":
|
|
6409
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6410
|
+
"line": 41
|
|
5964
6411
|
},
|
|
5965
6412
|
"name": "albZonalIsolatedImpactAlarms",
|
|
5966
6413
|
"optional": true,
|
|
@@ -5980,8 +6427,8 @@
|
|
|
5980
6427
|
"summary": "The application load balancers being used by the service."
|
|
5981
6428
|
},
|
|
5982
6429
|
"locationInModule": {
|
|
5983
|
-
"filename": "src/
|
|
5984
|
-
"line":
|
|
6430
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6431
|
+
"line": 22
|
|
5985
6432
|
},
|
|
5986
6433
|
"name": "applicationLoadBalancers",
|
|
5987
6434
|
"optional": true,
|
|
@@ -5998,21 +6445,37 @@
|
|
|
5998
6445
|
"abstract": true,
|
|
5999
6446
|
"docs": {
|
|
6000
6447
|
"stability": "experimental",
|
|
6001
|
-
"summary": "The
|
|
6448
|
+
"summary": "The optional dashboard created for observability."
|
|
6002
6449
|
},
|
|
6003
6450
|
"locationInModule": {
|
|
6004
|
-
"filename": "src/
|
|
6005
|
-
"line":
|
|
6451
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6452
|
+
"line": 52
|
|
6006
6453
|
},
|
|
6007
|
-
"name": "
|
|
6454
|
+
"name": "dashboard",
|
|
6008
6455
|
"optional": true,
|
|
6009
6456
|
"type": {
|
|
6010
|
-
"
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
|
|
6457
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Dashboard"
|
|
6458
|
+
}
|
|
6459
|
+
},
|
|
6460
|
+
{
|
|
6461
|
+
"abstract": true,
|
|
6462
|
+
"docs": {
|
|
6463
|
+
"stability": "experimental",
|
|
6464
|
+
"summary": "The NAT Gateways being used in the service, each set of NAT Gateways are keyed by their Availability Zone Id."
|
|
6465
|
+
},
|
|
6466
|
+
"locationInModule": {
|
|
6467
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6468
|
+
"line": 17
|
|
6469
|
+
},
|
|
6470
|
+
"name": "natGateways",
|
|
6471
|
+
"optional": true,
|
|
6472
|
+
"type": {
|
|
6473
|
+
"collection": {
|
|
6474
|
+
"elementtype": {
|
|
6475
|
+
"collection": {
|
|
6476
|
+
"elementtype": {
|
|
6477
|
+
"fqn": "aws-cdk-lib.aws_ec2.CfnNatGateway"
|
|
6478
|
+
},
|
|
6016
6479
|
"kind": "array"
|
|
6017
6480
|
}
|
|
6018
6481
|
},
|
|
@@ -6023,12 +6486,13 @@
|
|
|
6023
6486
|
{
|
|
6024
6487
|
"abstract": true,
|
|
6025
6488
|
"docs": {
|
|
6489
|
+
"remarks": "This will be 1 composite alarm \nper AZ that triggers if any NAT GW in that AZ sees outlier impact.",
|
|
6026
6490
|
"stability": "experimental",
|
|
6027
6491
|
"summary": "The alarms indicating if an AZ is an outlier for NAT GW packet loss and has isolated impact."
|
|
6028
6492
|
},
|
|
6029
6493
|
"locationInModule": {
|
|
6030
|
-
"filename": "src/
|
|
6031
|
-
"line":
|
|
6494
|
+
"filename": "src/basic_observability/IBasicServiceMultiAZObservability.ts",
|
|
6495
|
+
"line": 34
|
|
6032
6496
|
},
|
|
6033
6497
|
"name": "natGWZonalIsolatedImpactAlarms",
|
|
6034
6498
|
"optional": true,
|
|
@@ -6042,7 +6506,7 @@
|
|
|
6042
6506
|
}
|
|
6043
6507
|
}
|
|
6044
6508
|
],
|
|
6045
|
-
"symbolId": "src/
|
|
6509
|
+
"symbolId": "src/basic_observability/IBasicServiceMultiAZObservability:IBasicServiceMultiAZObservability"
|
|
6046
6510
|
},
|
|
6047
6511
|
"@cdklabs/multi-az-observability.ICanaryMetrics": {
|
|
6048
6512
|
"assembly": "@cdklabs/multi-az-observability",
|
|
@@ -6054,7 +6518,7 @@
|
|
|
6054
6518
|
"kind": "interface",
|
|
6055
6519
|
"locationInModule": {
|
|
6056
6520
|
"filename": "src/services/ICanaryMetrics.ts",
|
|
6057
|
-
"line":
|
|
6521
|
+
"line": 9
|
|
6058
6522
|
},
|
|
6059
6523
|
"name": "ICanaryMetrics",
|
|
6060
6524
|
"properties": [
|
|
@@ -6067,11 +6531,11 @@
|
|
|
6067
6531
|
"immutable": true,
|
|
6068
6532
|
"locationInModule": {
|
|
6069
6533
|
"filename": "src/services/ICanaryMetrics.ts",
|
|
6070
|
-
"line":
|
|
6534
|
+
"line": 13
|
|
6071
6535
|
},
|
|
6072
6536
|
"name": "canaryAvailabilityMetricDetails",
|
|
6073
6537
|
"type": {
|
|
6074
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
6538
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
6075
6539
|
}
|
|
6076
6540
|
},
|
|
6077
6541
|
{
|
|
@@ -6083,93 +6547,205 @@
|
|
|
6083
6547
|
"immutable": true,
|
|
6084
6548
|
"locationInModule": {
|
|
6085
6549
|
"filename": "src/services/ICanaryMetrics.ts",
|
|
6086
|
-
"line":
|
|
6550
|
+
"line": 18
|
|
6087
6551
|
},
|
|
6088
6552
|
"name": "canaryLatencyMetricDetails",
|
|
6089
6553
|
"type": {
|
|
6090
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
6554
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
6091
6555
|
}
|
|
6092
6556
|
}
|
|
6093
6557
|
],
|
|
6094
6558
|
"symbolId": "src/services/ICanaryMetrics:ICanaryMetrics"
|
|
6095
6559
|
},
|
|
6096
|
-
"@cdklabs/multi-az-observability.
|
|
6560
|
+
"@cdklabs/multi-az-observability.ICanaryOperationRegionalAlarmsAndRules": {
|
|
6561
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
6562
|
+
"docs": {
|
|
6563
|
+
"stability": "experimental",
|
|
6564
|
+
"summary": "The canary operation regional alarms and rules."
|
|
6565
|
+
},
|
|
6566
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryOperationRegionalAlarmsAndRules",
|
|
6567
|
+
"interfaces": [
|
|
6568
|
+
"@cdklabs/multi-az-observability.IBaseOperationRegionalAlarmsAndRules"
|
|
6569
|
+
],
|
|
6570
|
+
"kind": "interface",
|
|
6571
|
+
"locationInModule": {
|
|
6572
|
+
"filename": "src/alarmsandrules/ICanaryOperationRegionalAlarmsAndRules.ts",
|
|
6573
|
+
"line": 8
|
|
6574
|
+
},
|
|
6575
|
+
"name": "ICanaryOperationRegionalAlarmsAndRules",
|
|
6576
|
+
"symbolId": "src/alarmsandrules/ICanaryOperationRegionalAlarmsAndRules:ICanaryOperationRegionalAlarmsAndRules"
|
|
6577
|
+
},
|
|
6578
|
+
"@cdklabs/multi-az-observability.ICanaryOperationZonalAlarmsAndRules": {
|
|
6579
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
6580
|
+
"docs": {
|
|
6581
|
+
"stability": "experimental",
|
|
6582
|
+
"summary": "Alarms and rules for canary metrics."
|
|
6583
|
+
},
|
|
6584
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryOperationZonalAlarmsAndRules",
|
|
6585
|
+
"interfaces": [
|
|
6586
|
+
"@cdklabs/multi-az-observability.IBaseOperationZonalAlarmsAndRules"
|
|
6587
|
+
],
|
|
6588
|
+
"kind": "interface",
|
|
6589
|
+
"locationInModule": {
|
|
6590
|
+
"filename": "src/alarmsandrules/ICanaryOperationZonalAlarmsAndRules.ts",
|
|
6591
|
+
"line": 9
|
|
6592
|
+
},
|
|
6593
|
+
"name": "ICanaryOperationZonalAlarmsAndRules",
|
|
6594
|
+
"properties": [
|
|
6595
|
+
{
|
|
6596
|
+
"abstract": true,
|
|
6597
|
+
"docs": {
|
|
6598
|
+
"stability": "experimental",
|
|
6599
|
+
"summary": "Alarm that triggers if either latency or availability breach the specified threshold in this AZ and the AZ is an outlier for faults or latency."
|
|
6600
|
+
},
|
|
6601
|
+
"locationInModule": {
|
|
6602
|
+
"filename": "src/alarmsandrules/ICanaryOperationZonalAlarmsAndRules.ts",
|
|
6603
|
+
"line": 15
|
|
6604
|
+
},
|
|
6605
|
+
"name": "isolatedImpactAlarm",
|
|
6606
|
+
"type": {
|
|
6607
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6608
|
+
}
|
|
6609
|
+
}
|
|
6610
|
+
],
|
|
6611
|
+
"symbolId": "src/alarmsandrules/ICanaryOperationZonalAlarmsAndRules:ICanaryOperationZonalAlarmsAndRules"
|
|
6612
|
+
},
|
|
6613
|
+
"@cdklabs/multi-az-observability.ICanaryTestAvailabilityMetricsOverride": {
|
|
6097
6614
|
"assembly": "@cdklabs/multi-az-observability",
|
|
6098
6615
|
"docs": {
|
|
6099
6616
|
"stability": "experimental",
|
|
6100
6617
|
"summary": "Provides overrides for the default metric settings used for the automatically created canary tests."
|
|
6101
6618
|
},
|
|
6102
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
6619
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestAvailabilityMetricsOverride",
|
|
6620
|
+
"interfaces": [
|
|
6621
|
+
"@cdklabs/multi-az-observability.ICanaryTestMetricsOverride"
|
|
6622
|
+
],
|
|
6103
6623
|
"kind": "interface",
|
|
6104
6624
|
"locationInModule": {
|
|
6105
|
-
"filename": "src/services/
|
|
6625
|
+
"filename": "src/services/ICanaryTestAvailabilityMetricsOverride.ts",
|
|
6106
6626
|
"line": 9
|
|
6107
6627
|
},
|
|
6108
|
-
"name": "
|
|
6628
|
+
"name": "ICanaryTestAvailabilityMetricsOverride",
|
|
6109
6629
|
"properties": [
|
|
6110
6630
|
{
|
|
6111
6631
|
"abstract": true,
|
|
6112
6632
|
"docs": {
|
|
6633
|
+
"default": "- This property will use the default defined for the service",
|
|
6113
6634
|
"stability": "experimental",
|
|
6114
|
-
"summary": "The
|
|
6635
|
+
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
6115
6636
|
},
|
|
6116
6637
|
"immutable": true,
|
|
6117
6638
|
"locationInModule": {
|
|
6118
|
-
"filename": "src/services/
|
|
6119
|
-
"line":
|
|
6639
|
+
"filename": "src/services/ICanaryTestAvailabilityMetricsOverride.ts",
|
|
6640
|
+
"line": 26
|
|
6120
6641
|
},
|
|
6121
|
-
"name": "
|
|
6642
|
+
"name": "faultAlarmThreshold",
|
|
6122
6643
|
"optional": true,
|
|
6123
6644
|
"type": {
|
|
6124
|
-
"primitive": "
|
|
6645
|
+
"primitive": "number"
|
|
6125
6646
|
}
|
|
6126
6647
|
},
|
|
6127
6648
|
{
|
|
6128
6649
|
"abstract": true,
|
|
6129
6650
|
"docs": {
|
|
6651
|
+
"default": "- This property will use the default defined for the service",
|
|
6130
6652
|
"stability": "experimental",
|
|
6131
|
-
"summary": "The
|
|
6653
|
+
"summary": "The threshold for alarms associated with success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
6132
6654
|
},
|
|
6133
6655
|
"immutable": true,
|
|
6134
6656
|
"locationInModule": {
|
|
6135
|
-
"filename": "src/services/
|
|
6136
|
-
"line":
|
|
6657
|
+
"filename": "src/services/ICanaryTestAvailabilityMetricsOverride.ts",
|
|
6658
|
+
"line": 17
|
|
6137
6659
|
},
|
|
6138
|
-
"name": "
|
|
6660
|
+
"name": "successAlarmThreshold",
|
|
6139
6661
|
"optional": true,
|
|
6140
6662
|
"type": {
|
|
6141
6663
|
"primitive": "number"
|
|
6142
6664
|
}
|
|
6143
|
-
}
|
|
6665
|
+
}
|
|
6666
|
+
],
|
|
6667
|
+
"symbolId": "src/services/ICanaryTestAvailabilityMetricsOverride:ICanaryTestAvailabilityMetricsOverride"
|
|
6668
|
+
},
|
|
6669
|
+
"@cdklabs/multi-az-observability.ICanaryTestLatencyMetricsOverride": {
|
|
6670
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
6671
|
+
"docs": {
|
|
6672
|
+
"stability": "experimental",
|
|
6673
|
+
"summary": "Provides overrides for the default metric settings used for the automatically created canary tests."
|
|
6674
|
+
},
|
|
6675
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestLatencyMetricsOverride",
|
|
6676
|
+
"interfaces": [
|
|
6677
|
+
"@cdklabs/multi-az-observability.ICanaryTestMetricsOverride"
|
|
6678
|
+
],
|
|
6679
|
+
"kind": "interface",
|
|
6680
|
+
"locationInModule": {
|
|
6681
|
+
"filename": "src/services/ICanaryTestLatencyMetricsOverride.ts",
|
|
6682
|
+
"line": 10
|
|
6683
|
+
},
|
|
6684
|
+
"name": "ICanaryTestLatencyMetricsOverride",
|
|
6685
|
+
"properties": [
|
|
6144
6686
|
{
|
|
6145
6687
|
"abstract": true,
|
|
6146
6688
|
"docs": {
|
|
6147
6689
|
"stability": "experimental",
|
|
6148
|
-
"summary": "The
|
|
6690
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
6691
|
+
},
|
|
6692
|
+
"immutable": true,
|
|
6693
|
+
"locationInModule": {
|
|
6694
|
+
"filename": "src/services/ICanaryTestLatencyMetricsOverride.ts",
|
|
6695
|
+
"line": 15
|
|
6696
|
+
},
|
|
6697
|
+
"name": "successAlarmThreshold",
|
|
6698
|
+
"optional": true,
|
|
6699
|
+
"type": {
|
|
6700
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
6701
|
+
}
|
|
6702
|
+
}
|
|
6703
|
+
],
|
|
6704
|
+
"symbolId": "src/services/ICanaryTestLatencyMetricsOverride:ICanaryTestLatencyMetricsOverride"
|
|
6705
|
+
},
|
|
6706
|
+
"@cdklabs/multi-az-observability.ICanaryTestMetricsOverride": {
|
|
6707
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
6708
|
+
"docs": {
|
|
6709
|
+
"stability": "experimental",
|
|
6710
|
+
"summary": "Provides overrides for the default metric settings used for the automatically created canary tests."
|
|
6711
|
+
},
|
|
6712
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestMetricsOverride",
|
|
6713
|
+
"kind": "interface",
|
|
6714
|
+
"locationInModule": {
|
|
6715
|
+
"filename": "src/services/ICanaryTestMetricsOverride.ts",
|
|
6716
|
+
"line": 9
|
|
6717
|
+
},
|
|
6718
|
+
"name": "ICanaryTestMetricsOverride",
|
|
6719
|
+
"properties": [
|
|
6720
|
+
{
|
|
6721
|
+
"abstract": true,
|
|
6722
|
+
"docs": {
|
|
6723
|
+
"stability": "experimental",
|
|
6724
|
+
"summary": "The statistic used for alarms, for availability metrics this should be \"Sum\", for latency metrics it could something like \"p99\" or \"p99.9\"."
|
|
6149
6725
|
},
|
|
6150
6726
|
"immutable": true,
|
|
6151
6727
|
"locationInModule": {
|
|
6152
6728
|
"filename": "src/services/ICanaryTestMetricsOverride.ts",
|
|
6153
|
-
"line":
|
|
6729
|
+
"line": 14
|
|
6154
6730
|
},
|
|
6155
|
-
"name": "
|
|
6731
|
+
"name": "alarmStatistic",
|
|
6156
6732
|
"optional": true,
|
|
6157
6733
|
"type": {
|
|
6158
|
-
"primitive": "
|
|
6734
|
+
"primitive": "string"
|
|
6159
6735
|
}
|
|
6160
6736
|
},
|
|
6161
6737
|
{
|
|
6162
6738
|
"abstract": true,
|
|
6163
6739
|
"docs": {
|
|
6164
6740
|
"stability": "experimental",
|
|
6165
|
-
"summary": "The
|
|
6741
|
+
"summary": "The number of datapoints to alarm on for latency and availability alarms."
|
|
6166
6742
|
},
|
|
6167
6743
|
"immutable": true,
|
|
6168
6744
|
"locationInModule": {
|
|
6169
6745
|
"filename": "src/services/ICanaryTestMetricsOverride.ts",
|
|
6170
|
-
"line":
|
|
6746
|
+
"line": 29
|
|
6171
6747
|
},
|
|
6172
|
-
"name": "
|
|
6748
|
+
"name": "datapointsToAlarm",
|
|
6173
6749
|
"optional": true,
|
|
6174
6750
|
"type": {
|
|
6175
6751
|
"primitive": "number"
|
|
@@ -6179,34 +6755,34 @@
|
|
|
6179
6755
|
"abstract": true,
|
|
6180
6756
|
"docs": {
|
|
6181
6757
|
"stability": "experimental",
|
|
6182
|
-
"summary": "The
|
|
6758
|
+
"summary": "The number of evaluation periods for latency and availabiltiy alarms."
|
|
6183
6759
|
},
|
|
6184
6760
|
"immutable": true,
|
|
6185
6761
|
"locationInModule": {
|
|
6186
6762
|
"filename": "src/services/ICanaryTestMetricsOverride.ts",
|
|
6187
|
-
"line":
|
|
6763
|
+
"line": 24
|
|
6188
6764
|
},
|
|
6189
|
-
"name": "
|
|
6765
|
+
"name": "evaluationPeriods",
|
|
6190
6766
|
"optional": true,
|
|
6191
6767
|
"type": {
|
|
6192
|
-
"
|
|
6768
|
+
"primitive": "number"
|
|
6193
6769
|
}
|
|
6194
6770
|
},
|
|
6195
6771
|
{
|
|
6196
6772
|
"abstract": true,
|
|
6197
6773
|
"docs": {
|
|
6198
6774
|
"stability": "experimental",
|
|
6199
|
-
"summary": "The
|
|
6775
|
+
"summary": "The period for the metrics."
|
|
6200
6776
|
},
|
|
6201
6777
|
"immutable": true,
|
|
6202
6778
|
"locationInModule": {
|
|
6203
6779
|
"filename": "src/services/ICanaryTestMetricsOverride.ts",
|
|
6204
|
-
"line":
|
|
6780
|
+
"line": 19
|
|
6205
6781
|
},
|
|
6206
|
-
"name": "
|
|
6782
|
+
"name": "period",
|
|
6207
6783
|
"optional": true,
|
|
6208
6784
|
"type": {
|
|
6209
|
-
"
|
|
6785
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
6210
6786
|
}
|
|
6211
6787
|
}
|
|
6212
6788
|
],
|
|
@@ -6345,21 +6921,43 @@
|
|
|
6345
6921
|
"kind": "interface",
|
|
6346
6922
|
"locationInModule": {
|
|
6347
6923
|
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6348
|
-
"line":
|
|
6924
|
+
"line": 12
|
|
6349
6925
|
},
|
|
6350
6926
|
"name": "IInstrumentedServiceMultiAZObservability",
|
|
6351
6927
|
"properties": [
|
|
6352
6928
|
{
|
|
6353
6929
|
"abstract": true,
|
|
6354
6930
|
"docs": {
|
|
6355
|
-
"remarks": "
|
|
6931
|
+
"remarks": "You can get the \ngranular alarms that compose the higher level aggregate alarms\nfor each operation.",
|
|
6356
6932
|
"stability": "experimental",
|
|
6357
|
-
"summary": "
|
|
6933
|
+
"summary": "Key represents the operation name and the value is the set of zonal alarms and rules for that operation."
|
|
6358
6934
|
},
|
|
6359
6935
|
"immutable": true,
|
|
6360
6936
|
"locationInModule": {
|
|
6361
6937
|
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6362
|
-
"line":
|
|
6938
|
+
"line": 34
|
|
6939
|
+
},
|
|
6940
|
+
"name": "perOperationAlarmsAndRules",
|
|
6941
|
+
"type": {
|
|
6942
|
+
"collection": {
|
|
6943
|
+
"elementtype": {
|
|
6944
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAlarmsAndRules"
|
|
6945
|
+
},
|
|
6946
|
+
"kind": "map"
|
|
6947
|
+
}
|
|
6948
|
+
}
|
|
6949
|
+
},
|
|
6950
|
+
{
|
|
6951
|
+
"abstract": true,
|
|
6952
|
+
"docs": {
|
|
6953
|
+
"remarks": "This is a shortcut to\naccess the same alarms from the perOperationAlarmsAndRules property.",
|
|
6954
|
+
"stability": "experimental",
|
|
6955
|
+
"summary": "Index into the dictionary by operation name, then by Availability Zone Name to get the alarms that indicate an AZ shows isolated impact from availability or latency as seen by either the server-side or canary."
|
|
6956
|
+
},
|
|
6957
|
+
"immutable": true,
|
|
6958
|
+
"locationInModule": {
|
|
6959
|
+
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6960
|
+
"line": 24
|
|
6363
6961
|
},
|
|
6364
6962
|
"name": "perOperationZonalImpactAlarms",
|
|
6365
6963
|
"type": {
|
|
@@ -6385,7 +6983,7 @@
|
|
|
6385
6983
|
"immutable": true,
|
|
6386
6984
|
"locationInModule": {
|
|
6387
6985
|
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6388
|
-
"line":
|
|
6986
|
+
"line": 16
|
|
6389
6987
|
},
|
|
6390
6988
|
"name": "serviceAlarms",
|
|
6391
6989
|
"type": {
|
|
@@ -6402,7 +7000,7 @@
|
|
|
6402
7000
|
"immutable": true,
|
|
6403
7001
|
"locationInModule": {
|
|
6404
7002
|
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6405
|
-
"line":
|
|
7003
|
+
"line": 54
|
|
6406
7004
|
},
|
|
6407
7005
|
"name": "canaryLogGroup",
|
|
6408
7006
|
"optional": true,
|
|
@@ -6419,7 +7017,7 @@
|
|
|
6419
7017
|
"immutable": true,
|
|
6420
7018
|
"locationInModule": {
|
|
6421
7019
|
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6422
|
-
"line":
|
|
7020
|
+
"line": 41
|
|
6423
7021
|
},
|
|
6424
7022
|
"name": "operationDashboards",
|
|
6425
7023
|
"optional": true,
|
|
@@ -6441,7 +7039,7 @@
|
|
|
6441
7039
|
"immutable": true,
|
|
6442
7040
|
"locationInModule": {
|
|
6443
7041
|
"filename": "src/services/IInstrumentedServiceMultiAZObservability.ts",
|
|
6444
|
-
"line":
|
|
7042
|
+
"line": 46
|
|
6445
7043
|
},
|
|
6446
7044
|
"name": "serviceDashboard",
|
|
6447
7045
|
"optional": true,
|
|
@@ -6462,7 +7060,7 @@
|
|
|
6462
7060
|
"kind": "interface",
|
|
6463
7061
|
"locationInModule": {
|
|
6464
7062
|
"filename": "src/services/IOperation.ts",
|
|
6465
|
-
"line":
|
|
7063
|
+
"line": 15
|
|
6466
7064
|
},
|
|
6467
7065
|
"name": "IOperation",
|
|
6468
7066
|
"properties": [
|
|
@@ -6475,7 +7073,7 @@
|
|
|
6475
7073
|
"immutable": true,
|
|
6476
7074
|
"locationInModule": {
|
|
6477
7075
|
"filename": "src/services/IOperation.ts",
|
|
6478
|
-
"line":
|
|
7076
|
+
"line": 71
|
|
6479
7077
|
},
|
|
6480
7078
|
"name": "critical",
|
|
6481
7079
|
"type": {
|
|
@@ -6491,7 +7089,7 @@
|
|
|
6491
7089
|
"immutable": true,
|
|
6492
7090
|
"locationInModule": {
|
|
6493
7091
|
"filename": "src/services/IOperation.ts",
|
|
6494
|
-
"line":
|
|
7092
|
+
"line": 76
|
|
6495
7093
|
},
|
|
6496
7094
|
"name": "httpMethods",
|
|
6497
7095
|
"type": {
|
|
@@ -6512,7 +7110,7 @@
|
|
|
6512
7110
|
"immutable": true,
|
|
6513
7111
|
"locationInModule": {
|
|
6514
7112
|
"filename": "src/services/IOperation.ts",
|
|
6515
|
-
"line":
|
|
7113
|
+
"line": 24
|
|
6516
7114
|
},
|
|
6517
7115
|
"name": "operationName",
|
|
6518
7116
|
"type": {
|
|
@@ -6528,7 +7126,7 @@
|
|
|
6528
7126
|
"immutable": true,
|
|
6529
7127
|
"locationInModule": {
|
|
6530
7128
|
"filename": "src/services/IOperation.ts",
|
|
6531
|
-
"line":
|
|
7129
|
+
"line": 30
|
|
6532
7130
|
},
|
|
6533
7131
|
"name": "path",
|
|
6534
7132
|
"type": {
|
|
@@ -6544,11 +7142,11 @@
|
|
|
6544
7142
|
"immutable": true,
|
|
6545
7143
|
"locationInModule": {
|
|
6546
7144
|
"filename": "src/services/IOperation.ts",
|
|
6547
|
-
"line":
|
|
7145
|
+
"line": 35
|
|
6548
7146
|
},
|
|
6549
7147
|
"name": "serverSideAvailabilityMetricDetails",
|
|
6550
7148
|
"type": {
|
|
6551
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
7149
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
6552
7150
|
}
|
|
6553
7151
|
},
|
|
6554
7152
|
{
|
|
@@ -6560,11 +7158,11 @@
|
|
|
6560
7158
|
"immutable": true,
|
|
6561
7159
|
"locationInModule": {
|
|
6562
7160
|
"filename": "src/services/IOperation.ts",
|
|
6563
|
-
"line":
|
|
7161
|
+
"line": 40
|
|
6564
7162
|
},
|
|
6565
7163
|
"name": "serverSideLatencyMetricDetails",
|
|
6566
7164
|
"type": {
|
|
6567
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
7165
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
6568
7166
|
}
|
|
6569
7167
|
},
|
|
6570
7168
|
{
|
|
@@ -6576,7 +7174,7 @@
|
|
|
6576
7174
|
"immutable": true,
|
|
6577
7175
|
"locationInModule": {
|
|
6578
7176
|
"filename": "src/services/IOperation.ts",
|
|
6579
|
-
"line":
|
|
7177
|
+
"line": 19
|
|
6580
7178
|
},
|
|
6581
7179
|
"name": "service",
|
|
6582
7180
|
"type": {
|
|
@@ -6592,7 +7190,7 @@
|
|
|
6592
7190
|
"immutable": true,
|
|
6593
7191
|
"locationInModule": {
|
|
6594
7192
|
"filename": "src/services/IOperation.ts",
|
|
6595
|
-
"line":
|
|
7193
|
+
"line": 45
|
|
6596
7194
|
},
|
|
6597
7195
|
"name": "canaryMetricDetails",
|
|
6598
7196
|
"optional": true,
|
|
@@ -6609,12 +7207,12 @@
|
|
|
6609
7207
|
"immutable": true,
|
|
6610
7208
|
"locationInModule": {
|
|
6611
7209
|
"filename": "src/services/IOperation.ts",
|
|
6612
|
-
"line":
|
|
7210
|
+
"line": 52
|
|
6613
7211
|
},
|
|
6614
7212
|
"name": "canaryTestAvailabilityMetricsOverride",
|
|
6615
7213
|
"optional": true,
|
|
6616
7214
|
"type": {
|
|
6617
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
7215
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestAvailabilityMetricsOverride"
|
|
6618
7216
|
}
|
|
6619
7217
|
},
|
|
6620
7218
|
{
|
|
@@ -6626,12 +7224,12 @@
|
|
|
6626
7224
|
"immutable": true,
|
|
6627
7225
|
"locationInModule": {
|
|
6628
7226
|
"filename": "src/services/IOperation.ts",
|
|
6629
|
-
"line":
|
|
7227
|
+
"line": 59
|
|
6630
7228
|
},
|
|
6631
7229
|
"name": "canaryTestLatencyMetricsOverride",
|
|
6632
7230
|
"optional": true,
|
|
6633
7231
|
"type": {
|
|
6634
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
7232
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestLatencyMetricsOverride"
|
|
6635
7233
|
}
|
|
6636
7234
|
},
|
|
6637
7235
|
{
|
|
@@ -6643,7 +7241,7 @@
|
|
|
6643
7241
|
"immutable": true,
|
|
6644
7242
|
"locationInModule": {
|
|
6645
7243
|
"filename": "src/services/IOperation.ts",
|
|
6646
|
-
"line":
|
|
7244
|
+
"line": 82
|
|
6647
7245
|
},
|
|
6648
7246
|
"name": "canaryTestProps",
|
|
6649
7247
|
"optional": true,
|
|
@@ -6661,7 +7259,7 @@
|
|
|
6661
7259
|
"immutable": true,
|
|
6662
7260
|
"locationInModule": {
|
|
6663
7261
|
"filename": "src/services/IOperation.ts",
|
|
6664
|
-
"line":
|
|
7262
|
+
"line": 91
|
|
6665
7263
|
},
|
|
6666
7264
|
"name": "optOutOfServiceCreatedCanary",
|
|
6667
7265
|
"optional": true,
|
|
@@ -6678,7 +7276,7 @@
|
|
|
6678
7276
|
"immutable": true,
|
|
6679
7277
|
"locationInModule": {
|
|
6680
7278
|
"filename": "src/services/IOperation.ts",
|
|
6681
|
-
"line":
|
|
7279
|
+
"line": 64
|
|
6682
7280
|
},
|
|
6683
7281
|
"name": "serverSideContributorInsightRuleDetails",
|
|
6684
7282
|
"optional": true,
|
|
@@ -6689,64 +7287,182 @@
|
|
|
6689
7287
|
],
|
|
6690
7288
|
"symbolId": "src/services/IOperation:IOperation"
|
|
6691
7289
|
},
|
|
6692
|
-
"@cdklabs/multi-az-observability.
|
|
7290
|
+
"@cdklabs/multi-az-observability.IOperationAlarmsAndRules": {
|
|
6693
7291
|
"assembly": "@cdklabs/multi-az-observability",
|
|
6694
7292
|
"docs": {
|
|
6695
7293
|
"stability": "experimental",
|
|
6696
|
-
"summary": "
|
|
7294
|
+
"summary": "Creates alarms and rules for an operation for both regional and zonal metrics."
|
|
6697
7295
|
},
|
|
6698
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
7296
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAlarmsAndRules",
|
|
6699
7297
|
"kind": "interface",
|
|
6700
7298
|
"locationInModule": {
|
|
6701
|
-
"filename": "src/
|
|
6702
|
-
"line":
|
|
7299
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7300
|
+
"line": 13
|
|
6703
7301
|
},
|
|
6704
|
-
"name": "
|
|
7302
|
+
"name": "IOperationAlarmsAndRules",
|
|
6705
7303
|
"properties": [
|
|
6706
7304
|
{
|
|
6707
7305
|
"abstract": true,
|
|
6708
7306
|
"docs": {
|
|
6709
7307
|
"stability": "experimental",
|
|
6710
|
-
"summary": "The
|
|
7308
|
+
"summary": "The aggregate, server-side and canary combined, zonal alarm indexed by Availability Zone name."
|
|
6711
7309
|
},
|
|
6712
7310
|
"immutable": true,
|
|
6713
7311
|
"locationInModule": {
|
|
6714
|
-
"filename": "src/
|
|
6715
|
-
"line":
|
|
7312
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7313
|
+
"line": 38
|
|
6716
7314
|
},
|
|
6717
|
-
"name": "
|
|
7315
|
+
"name": "aggregateZonalAlarms",
|
|
6718
7316
|
"type": {
|
|
6719
|
-
"
|
|
7317
|
+
"collection": {
|
|
7318
|
+
"elementtype": {
|
|
7319
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7320
|
+
},
|
|
7321
|
+
"kind": "map"
|
|
7322
|
+
}
|
|
6720
7323
|
}
|
|
6721
7324
|
},
|
|
6722
7325
|
{
|
|
6723
7326
|
"abstract": true,
|
|
6724
7327
|
"docs": {
|
|
6725
7328
|
"stability": "experimental",
|
|
6726
|
-
"summary": "The
|
|
7329
|
+
"summary": "The operation the alarms and rules are created for."
|
|
6727
7330
|
},
|
|
6728
7331
|
"immutable": true,
|
|
6729
7332
|
"locationInModule": {
|
|
6730
|
-
"filename": "src/
|
|
6731
|
-
"line":
|
|
7333
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7334
|
+
"line": 17
|
|
6732
7335
|
},
|
|
6733
|
-
"name": "
|
|
7336
|
+
"name": "operation",
|
|
6734
7337
|
"type": {
|
|
6735
|
-
"
|
|
7338
|
+
"fqn": "@cdklabs/multi-az-observability.IOperation"
|
|
6736
7339
|
}
|
|
6737
7340
|
},
|
|
6738
7341
|
{
|
|
6739
7342
|
"abstract": true,
|
|
6740
7343
|
"docs": {
|
|
6741
7344
|
"stability": "experimental",
|
|
6742
|
-
"summary": "
|
|
7345
|
+
"summary": "An alarm indicating availability or latency impact has been detected by the server-side and/or canary (if present) and the impact is regionally scoped, not zonal."
|
|
6743
7346
|
},
|
|
6744
7347
|
"immutable": true,
|
|
6745
7348
|
"locationInModule": {
|
|
6746
|
-
"filename": "src/
|
|
6747
|
-
"line":
|
|
7349
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7350
|
+
"line": 23
|
|
6748
7351
|
},
|
|
6749
|
-
"name": "
|
|
7352
|
+
"name": "regionalImpactAlarm",
|
|
7353
|
+
"type": {
|
|
7354
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7355
|
+
}
|
|
7356
|
+
},
|
|
7357
|
+
{
|
|
7358
|
+
"abstract": true,
|
|
7359
|
+
"docs": {
|
|
7360
|
+
"stability": "experimental",
|
|
7361
|
+
"summary": "The server side regional alarms and rules."
|
|
7362
|
+
},
|
|
7363
|
+
"immutable": true,
|
|
7364
|
+
"locationInModule": {
|
|
7365
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7366
|
+
"line": 28
|
|
7367
|
+
},
|
|
7368
|
+
"name": "serverSideRegionalAlarmsAndRules",
|
|
7369
|
+
"type": {
|
|
7370
|
+
"fqn": "@cdklabs/multi-az-observability.IServerSideOperationRegionalAlarmsAndRules"
|
|
7371
|
+
}
|
|
7372
|
+
},
|
|
7373
|
+
{
|
|
7374
|
+
"abstract": true,
|
|
7375
|
+
"docs": {
|
|
7376
|
+
"stability": "experimental",
|
|
7377
|
+
"summary": "The server side zonal alarms and rules, indexed by Availability Zone name."
|
|
7378
|
+
},
|
|
7379
|
+
"immutable": true,
|
|
7380
|
+
"locationInModule": {
|
|
7381
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7382
|
+
"line": 43
|
|
7383
|
+
},
|
|
7384
|
+
"name": "serverSideZonalAlarmsAndRules",
|
|
7385
|
+
"type": {
|
|
7386
|
+
"collection": {
|
|
7387
|
+
"elementtype": {
|
|
7388
|
+
"fqn": "@cdklabs/multi-az-observability.IServerSideOperationZonalAlarmsAndRules"
|
|
7389
|
+
},
|
|
7390
|
+
"kind": "map"
|
|
7391
|
+
}
|
|
7392
|
+
}
|
|
7393
|
+
},
|
|
7394
|
+
{
|
|
7395
|
+
"abstract": true,
|
|
7396
|
+
"docs": {
|
|
7397
|
+
"stability": "experimental",
|
|
7398
|
+
"summary": "The canary regional alarms and rules."
|
|
7399
|
+
},
|
|
7400
|
+
"immutable": true,
|
|
7401
|
+
"locationInModule": {
|
|
7402
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7403
|
+
"line": 33
|
|
7404
|
+
},
|
|
7405
|
+
"name": "canaryRegionalAlarmsAndRules",
|
|
7406
|
+
"optional": true,
|
|
7407
|
+
"type": {
|
|
7408
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryOperationRegionalAlarmsAndRules"
|
|
7409
|
+
}
|
|
7410
|
+
},
|
|
7411
|
+
{
|
|
7412
|
+
"abstract": true,
|
|
7413
|
+
"docs": {
|
|
7414
|
+
"default": "- This is an empty dictionary if canary metric details are not provided",
|
|
7415
|
+
"stability": "experimental",
|
|
7416
|
+
"summary": "The canary zonal alarms and rules, indexed by Availability Zone name."
|
|
7417
|
+
},
|
|
7418
|
+
"immutable": true,
|
|
7419
|
+
"locationInModule": {
|
|
7420
|
+
"filename": "src/alarmsandrules/IOperationAlarmsAndRules.ts",
|
|
7421
|
+
"line": 50
|
|
7422
|
+
},
|
|
7423
|
+
"name": "canaryZonalAlarmsAndRules",
|
|
7424
|
+
"optional": true,
|
|
7425
|
+
"type": {
|
|
7426
|
+
"collection": {
|
|
7427
|
+
"elementtype": {
|
|
7428
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryOperationZonalAlarmsAndRules"
|
|
7429
|
+
},
|
|
7430
|
+
"kind": "map"
|
|
7431
|
+
}
|
|
7432
|
+
}
|
|
7433
|
+
}
|
|
7434
|
+
],
|
|
7435
|
+
"symbolId": "src/alarmsandrules/IOperationAlarmsAndRules:IOperationAlarmsAndRules"
|
|
7436
|
+
},
|
|
7437
|
+
"@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails": {
|
|
7438
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
7439
|
+
"docs": {
|
|
7440
|
+
"stability": "experimental",
|
|
7441
|
+
"summary": "Details for operation metrics in one perspective, such as server side latency."
|
|
7442
|
+
},
|
|
7443
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails",
|
|
7444
|
+
"interfaces": [
|
|
7445
|
+
"@cdklabs/multi-az-observability.IOperationMetricDetails"
|
|
7446
|
+
],
|
|
7447
|
+
"kind": "interface",
|
|
7448
|
+
"locationInModule": {
|
|
7449
|
+
"filename": "src/services/IOperationAvailabilityMetricDetails.ts",
|
|
7450
|
+
"line": 8
|
|
7451
|
+
},
|
|
7452
|
+
"name": "IOperationAvailabilityMetricDetails",
|
|
7453
|
+
"properties": [
|
|
7454
|
+
{
|
|
7455
|
+
"abstract": true,
|
|
7456
|
+
"docs": {
|
|
7457
|
+
"stability": "experimental",
|
|
7458
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
7459
|
+
},
|
|
7460
|
+
"immutable": true,
|
|
7461
|
+
"locationInModule": {
|
|
7462
|
+
"filename": "src/services/IOperationAvailabilityMetricDetails.ts",
|
|
7463
|
+
"line": 21
|
|
7464
|
+
},
|
|
7465
|
+
"name": "faultAlarmThreshold",
|
|
6750
7466
|
"type": {
|
|
6751
7467
|
"primitive": "number"
|
|
6752
7468
|
}
|
|
@@ -6755,14 +7471,115 @@
|
|
|
6755
7471
|
"abstract": true,
|
|
6756
7472
|
"docs": {
|
|
6757
7473
|
"stability": "experimental",
|
|
6758
|
-
"summary": "The threshold for alarms associated with
|
|
7474
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
7475
|
+
},
|
|
7476
|
+
"immutable": true,
|
|
7477
|
+
"locationInModule": {
|
|
7478
|
+
"filename": "src/services/IOperationAvailabilityMetricDetails.ts",
|
|
7479
|
+
"line": 14
|
|
7480
|
+
},
|
|
7481
|
+
"name": "successAlarmThreshold",
|
|
7482
|
+
"type": {
|
|
7483
|
+
"primitive": "number"
|
|
7484
|
+
}
|
|
7485
|
+
}
|
|
7486
|
+
],
|
|
7487
|
+
"symbolId": "src/services/IOperationAvailabilityMetricDetails:IOperationAvailabilityMetricDetails"
|
|
7488
|
+
},
|
|
7489
|
+
"@cdklabs/multi-az-observability.IOperationLatencyMetricDetails": {
|
|
7490
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
7491
|
+
"docs": {
|
|
7492
|
+
"stability": "experimental",
|
|
7493
|
+
"summary": "Details for operation metrics in one perspective, such as server side latency."
|
|
7494
|
+
},
|
|
7495
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails",
|
|
7496
|
+
"interfaces": [
|
|
7497
|
+
"@cdklabs/multi-az-observability.IOperationMetricDetails"
|
|
7498
|
+
],
|
|
7499
|
+
"kind": "interface",
|
|
7500
|
+
"locationInModule": {
|
|
7501
|
+
"filename": "src/services/IOperationLatencyMetricDetails.ts",
|
|
7502
|
+
"line": 9
|
|
7503
|
+
},
|
|
7504
|
+
"name": "IOperationLatencyMetricDetails",
|
|
7505
|
+
"properties": [
|
|
7506
|
+
{
|
|
7507
|
+
"abstract": true,
|
|
7508
|
+
"docs": {
|
|
7509
|
+
"stability": "experimental",
|
|
7510
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
7511
|
+
},
|
|
7512
|
+
"immutable": true,
|
|
7513
|
+
"locationInModule": {
|
|
7514
|
+
"filename": "src/services/IOperationLatencyMetricDetails.ts",
|
|
7515
|
+
"line": 14
|
|
7516
|
+
},
|
|
7517
|
+
"name": "successAlarmThreshold",
|
|
7518
|
+
"type": {
|
|
7519
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
7520
|
+
}
|
|
7521
|
+
}
|
|
7522
|
+
],
|
|
7523
|
+
"symbolId": "src/services/IOperationLatencyMetricDetails:IOperationLatencyMetricDetails"
|
|
7524
|
+
},
|
|
7525
|
+
"@cdklabs/multi-az-observability.IOperationMetricDetails": {
|
|
7526
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
7527
|
+
"docs": {
|
|
7528
|
+
"stability": "experimental",
|
|
7529
|
+
"summary": "Details for operation metrics in one perspective, such as server side latency."
|
|
7530
|
+
},
|
|
7531
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationMetricDetails",
|
|
7532
|
+
"kind": "interface",
|
|
7533
|
+
"locationInModule": {
|
|
7534
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7535
|
+
"line": 10
|
|
7536
|
+
},
|
|
7537
|
+
"name": "IOperationMetricDetails",
|
|
7538
|
+
"properties": [
|
|
7539
|
+
{
|
|
7540
|
+
"abstract": true,
|
|
7541
|
+
"docs": {
|
|
7542
|
+
"stability": "experimental",
|
|
7543
|
+
"summary": "The statistic used for alarms, for availability metrics this should be \"Sum\", for latency metrics it could something like \"p99\" or \"p99.9\"."
|
|
6759
7544
|
},
|
|
6760
7545
|
"immutable": true,
|
|
6761
7546
|
"locationInModule": {
|
|
6762
7547
|
"filename": "src/services/IOperationMetricDetails.ts",
|
|
6763
|
-
"line":
|
|
7548
|
+
"line": 35
|
|
6764
7549
|
},
|
|
6765
|
-
"name": "
|
|
7550
|
+
"name": "alarmStatistic",
|
|
7551
|
+
"type": {
|
|
7552
|
+
"primitive": "string"
|
|
7553
|
+
}
|
|
7554
|
+
},
|
|
7555
|
+
{
|
|
7556
|
+
"abstract": true,
|
|
7557
|
+
"docs": {
|
|
7558
|
+
"stability": "experimental",
|
|
7559
|
+
"summary": "The number of datapoints to alarm on for latency and availability alarms."
|
|
7560
|
+
},
|
|
7561
|
+
"immutable": true,
|
|
7562
|
+
"locationInModule": {
|
|
7563
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7564
|
+
"line": 73
|
|
7565
|
+
},
|
|
7566
|
+
"name": "datapointsToAlarm",
|
|
7567
|
+
"type": {
|
|
7568
|
+
"primitive": "number"
|
|
7569
|
+
}
|
|
7570
|
+
},
|
|
7571
|
+
{
|
|
7572
|
+
"abstract": true,
|
|
7573
|
+
"docs": {
|
|
7574
|
+
"stability": "experimental",
|
|
7575
|
+
"summary": "The number of evaluation periods for latency and availabiltiy alarms."
|
|
7576
|
+
},
|
|
7577
|
+
"immutable": true,
|
|
7578
|
+
"locationInModule": {
|
|
7579
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7580
|
+
"line": 68
|
|
7581
|
+
},
|
|
7582
|
+
"name": "evaluationPeriods",
|
|
6766
7583
|
"type": {
|
|
6767
7584
|
"primitive": "number"
|
|
6768
7585
|
}
|
|
@@ -6797,7 +7614,7 @@
|
|
|
6797
7614
|
"immutable": true,
|
|
6798
7615
|
"locationInModule": {
|
|
6799
7616
|
"filename": "src/services/IOperationMetricDetails.ts",
|
|
6800
|
-
"line":
|
|
7617
|
+
"line": 79
|
|
6801
7618
|
},
|
|
6802
7619
|
"name": "metricDimensions",
|
|
6803
7620
|
"type": {
|
|
@@ -6808,153 +7625,304 @@
|
|
|
6808
7625
|
"abstract": true,
|
|
6809
7626
|
"docs": {
|
|
6810
7627
|
"stability": "experimental",
|
|
6811
|
-
"summary": "The CloudWatch metric namespace for these metrics."
|
|
7628
|
+
"summary": "The CloudWatch metric namespace for these metrics."
|
|
7629
|
+
},
|
|
7630
|
+
"immutable": true,
|
|
7631
|
+
"locationInModule": {
|
|
7632
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7633
|
+
"line": 19
|
|
7634
|
+
},
|
|
7635
|
+
"name": "metricNamespace",
|
|
7636
|
+
"type": {
|
|
7637
|
+
"primitive": "string"
|
|
7638
|
+
}
|
|
7639
|
+
},
|
|
7640
|
+
{
|
|
7641
|
+
"abstract": true,
|
|
7642
|
+
"docs": {
|
|
7643
|
+
"stability": "experimental",
|
|
7644
|
+
"summary": "The operation these metric details are for."
|
|
7645
|
+
},
|
|
7646
|
+
"immutable": true,
|
|
7647
|
+
"locationInModule": {
|
|
7648
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7649
|
+
"line": 14
|
|
7650
|
+
},
|
|
7651
|
+
"name": "operationName",
|
|
7652
|
+
"type": {
|
|
7653
|
+
"primitive": "string"
|
|
7654
|
+
}
|
|
7655
|
+
},
|
|
7656
|
+
{
|
|
7657
|
+
"abstract": true,
|
|
7658
|
+
"docs": {
|
|
7659
|
+
"stability": "experimental",
|
|
7660
|
+
"summary": "The period for the metrics."
|
|
7661
|
+
},
|
|
7662
|
+
"immutable": true,
|
|
7663
|
+
"locationInModule": {
|
|
7664
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7665
|
+
"line": 63
|
|
7666
|
+
},
|
|
7667
|
+
"name": "period",
|
|
7668
|
+
"type": {
|
|
7669
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
7670
|
+
}
|
|
7671
|
+
},
|
|
7672
|
+
{
|
|
7673
|
+
"abstract": true,
|
|
7674
|
+
"docs": {
|
|
7675
|
+
"stability": "experimental",
|
|
7676
|
+
"summary": "The names of success indicating metrics."
|
|
7677
|
+
},
|
|
7678
|
+
"immutable": true,
|
|
7679
|
+
"locationInModule": {
|
|
7680
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7681
|
+
"line": 24
|
|
7682
|
+
},
|
|
7683
|
+
"name": "successMetricNames",
|
|
7684
|
+
"type": {
|
|
7685
|
+
"collection": {
|
|
7686
|
+
"elementtype": {
|
|
7687
|
+
"primitive": "string"
|
|
7688
|
+
},
|
|
7689
|
+
"kind": "array"
|
|
7690
|
+
}
|
|
7691
|
+
}
|
|
7692
|
+
},
|
|
7693
|
+
{
|
|
7694
|
+
"abstract": true,
|
|
7695
|
+
"docs": {
|
|
7696
|
+
"stability": "experimental",
|
|
7697
|
+
"summary": "The unit used for these metrics."
|
|
7698
|
+
},
|
|
7699
|
+
"immutable": true,
|
|
7700
|
+
"locationInModule": {
|
|
7701
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7702
|
+
"line": 58
|
|
7703
|
+
},
|
|
7704
|
+
"name": "unit",
|
|
7705
|
+
"type": {
|
|
7706
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Unit"
|
|
7707
|
+
}
|
|
7708
|
+
},
|
|
7709
|
+
{
|
|
7710
|
+
"abstract": true,
|
|
7711
|
+
"docs": {
|
|
7712
|
+
"default": "- For availability metrics, this will be \"Sum\", for latency metrics it will be just \"p99\"",
|
|
7713
|
+
"remarks": "For availability\nmetrics this will typically just be \"Sum\".",
|
|
7714
|
+
"stability": "experimental",
|
|
7715
|
+
"summary": "The statistics for faults you want to appear on dashboards, for example, with latency metrics, you might want p50, p99, and tm99."
|
|
7716
|
+
},
|
|
7717
|
+
"immutable": true,
|
|
7718
|
+
"locationInModule": {
|
|
7719
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7720
|
+
"line": 53
|
|
7721
|
+
},
|
|
7722
|
+
"name": "graphedFaultStatistics",
|
|
7723
|
+
"optional": true,
|
|
7724
|
+
"type": {
|
|
7725
|
+
"collection": {
|
|
7726
|
+
"elementtype": {
|
|
7727
|
+
"primitive": "string"
|
|
7728
|
+
},
|
|
7729
|
+
"kind": "array"
|
|
7730
|
+
}
|
|
7731
|
+
}
|
|
7732
|
+
},
|
|
7733
|
+
{
|
|
7734
|
+
"abstract": true,
|
|
7735
|
+
"docs": {
|
|
7736
|
+
"default": "- For availability metrics, this will be \"Sum\", for latency metrics it will be just \"p99\"",
|
|
7737
|
+
"remarks": "For availability\nmetrics this will typically just be \"Sum\".",
|
|
7738
|
+
"stability": "experimental",
|
|
7739
|
+
"summary": "The statistics for successes you want to appear on dashboards, for example, with latency metrics, you might want p50, p99, and tm99."
|
|
7740
|
+
},
|
|
7741
|
+
"immutable": true,
|
|
7742
|
+
"locationInModule": {
|
|
7743
|
+
"filename": "src/services/IOperationMetricDetails.ts",
|
|
7744
|
+
"line": 44
|
|
7745
|
+
},
|
|
7746
|
+
"name": "graphedSuccessStatistics",
|
|
7747
|
+
"optional": true,
|
|
7748
|
+
"type": {
|
|
7749
|
+
"collection": {
|
|
7750
|
+
"elementtype": {
|
|
7751
|
+
"primitive": "string"
|
|
7752
|
+
},
|
|
7753
|
+
"kind": "array"
|
|
7754
|
+
}
|
|
7755
|
+
}
|
|
7756
|
+
}
|
|
7757
|
+
],
|
|
7758
|
+
"symbolId": "src/services/IOperationMetricDetails:IOperationMetricDetails"
|
|
7759
|
+
},
|
|
7760
|
+
"@cdklabs/multi-az-observability.IServerSideOperationRegionalAlarmsAndRules": {
|
|
7761
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
7762
|
+
"docs": {
|
|
7763
|
+
"stability": "experimental",
|
|
7764
|
+
"summary": "The server side operation regional alarms and rules."
|
|
7765
|
+
},
|
|
7766
|
+
"fqn": "@cdklabs/multi-az-observability.IServerSideOperationRegionalAlarmsAndRules",
|
|
7767
|
+
"interfaces": [
|
|
7768
|
+
"@cdklabs/multi-az-observability.IBaseOperationRegionalAlarmsAndRules"
|
|
7769
|
+
],
|
|
7770
|
+
"kind": "interface",
|
|
7771
|
+
"locationInModule": {
|
|
7772
|
+
"filename": "src/alarmsandrules/IServerSideOperationRegionalAlarmsAndRules.ts",
|
|
7773
|
+
"line": 9
|
|
7774
|
+
},
|
|
7775
|
+
"name": "IServerSideOperationRegionalAlarmsAndRules",
|
|
7776
|
+
"properties": [
|
|
7777
|
+
{
|
|
7778
|
+
"abstract": true,
|
|
7779
|
+
"docs": {
|
|
7780
|
+
"stability": "experimental",
|
|
7781
|
+
"summary": "A rule that shows which instances are contributing to faults."
|
|
6812
7782
|
},
|
|
6813
|
-
"immutable": true,
|
|
6814
7783
|
"locationInModule": {
|
|
6815
|
-
"filename": "src/
|
|
6816
|
-
"line":
|
|
7784
|
+
"filename": "src/alarmsandrules/IServerSideOperationRegionalAlarmsAndRules.ts",
|
|
7785
|
+
"line": 18
|
|
6817
7786
|
},
|
|
6818
|
-
"name": "
|
|
7787
|
+
"name": "instanceContributorsToRegionalFaults",
|
|
7788
|
+
"optional": true,
|
|
6819
7789
|
"type": {
|
|
6820
|
-
"
|
|
7790
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.CfnInsightRule"
|
|
6821
7791
|
}
|
|
6822
7792
|
},
|
|
6823
7793
|
{
|
|
6824
7794
|
"abstract": true,
|
|
6825
7795
|
"docs": {
|
|
6826
7796
|
"stability": "experimental",
|
|
6827
|
-
"summary": "
|
|
7797
|
+
"summary": "A rule that shows which instances are contributing to high latency responses."
|
|
6828
7798
|
},
|
|
6829
|
-
"immutable": true,
|
|
6830
7799
|
"locationInModule": {
|
|
6831
|
-
"filename": "src/
|
|
6832
|
-
"line":
|
|
7800
|
+
"filename": "src/alarmsandrules/IServerSideOperationRegionalAlarmsAndRules.ts",
|
|
7801
|
+
"line": 13
|
|
6833
7802
|
},
|
|
6834
|
-
"name": "
|
|
7803
|
+
"name": "instanceContributorsToRegionalHighLatency",
|
|
7804
|
+
"optional": true,
|
|
6835
7805
|
"type": {
|
|
6836
|
-
"
|
|
7806
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.CfnInsightRule"
|
|
6837
7807
|
}
|
|
6838
|
-
}
|
|
7808
|
+
}
|
|
7809
|
+
],
|
|
7810
|
+
"symbolId": "src/alarmsandrules/IServerSideOperationRegionalAlarmsAndRules:IServerSideOperationRegionalAlarmsAndRules"
|
|
7811
|
+
},
|
|
7812
|
+
"@cdklabs/multi-az-observability.IServerSideOperationZonalAlarmsAndRules": {
|
|
7813
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
7814
|
+
"docs": {
|
|
7815
|
+
"stability": "experimental",
|
|
7816
|
+
"summary": "Server side opertaion zonal alarms and rules."
|
|
7817
|
+
},
|
|
7818
|
+
"fqn": "@cdklabs/multi-az-observability.IServerSideOperationZonalAlarmsAndRules",
|
|
7819
|
+
"interfaces": [
|
|
7820
|
+
"@cdklabs/multi-az-observability.IBaseOperationZonalAlarmsAndRules"
|
|
7821
|
+
],
|
|
7822
|
+
"kind": "interface",
|
|
7823
|
+
"locationInModule": {
|
|
7824
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7825
|
+
"line": 9
|
|
7826
|
+
},
|
|
7827
|
+
"name": "IServerSideOperationZonalAlarmsAndRules",
|
|
7828
|
+
"properties": [
|
|
6839
7829
|
{
|
|
6840
7830
|
"abstract": true,
|
|
6841
7831
|
"docs": {
|
|
6842
7832
|
"stability": "experimental",
|
|
6843
|
-
"summary": "
|
|
7833
|
+
"summary": "Alarm that triggers if either latency or availability breach the specified threshold in this AZ and the AZ is an outlier for faults or latency."
|
|
6844
7834
|
},
|
|
6845
|
-
"immutable": true,
|
|
6846
7835
|
"locationInModule": {
|
|
6847
|
-
"filename": "src/
|
|
6848
|
-
"line":
|
|
7836
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7837
|
+
"line": 15
|
|
6849
7838
|
},
|
|
6850
|
-
"name": "
|
|
7839
|
+
"name": "isolatedImpactAlarm",
|
|
6851
7840
|
"type": {
|
|
6852
|
-
"fqn": "aws-cdk-lib.
|
|
7841
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6853
7842
|
}
|
|
6854
7843
|
},
|
|
6855
7844
|
{
|
|
6856
7845
|
"abstract": true,
|
|
6857
7846
|
"docs": {
|
|
6858
7847
|
"stability": "experimental",
|
|
6859
|
-
"summary": "
|
|
7848
|
+
"summary": "Insight rule that measures the number of instances contributing to faults in this AZ."
|
|
6860
7849
|
},
|
|
6861
|
-
"immutable": true,
|
|
6862
7850
|
"locationInModule": {
|
|
6863
|
-
"filename": "src/
|
|
6864
|
-
"line":
|
|
7851
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7852
|
+
"line": 38
|
|
6865
7853
|
},
|
|
6866
|
-
"name": "
|
|
7854
|
+
"name": "instanceContributorsToFaultsInThisAZ",
|
|
7855
|
+
"optional": true,
|
|
6867
7856
|
"type": {
|
|
6868
|
-
"
|
|
7857
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.CfnInsightRule"
|
|
6869
7858
|
}
|
|
6870
7859
|
},
|
|
6871
7860
|
{
|
|
6872
7861
|
"abstract": true,
|
|
6873
7862
|
"docs": {
|
|
6874
7863
|
"stability": "experimental",
|
|
6875
|
-
"summary": "
|
|
7864
|
+
"summary": "Insight rule that measures the number of instances contributing to high latency in this AZ."
|
|
6876
7865
|
},
|
|
6877
|
-
"immutable": true,
|
|
6878
7866
|
"locationInModule": {
|
|
6879
|
-
"filename": "src/
|
|
6880
|
-
"line":
|
|
7867
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7868
|
+
"line": 33
|
|
6881
7869
|
},
|
|
6882
|
-
"name": "
|
|
7870
|
+
"name": "instanceContributorsToHighLatencyInThisAZ",
|
|
7871
|
+
"optional": true,
|
|
6883
7872
|
"type": {
|
|
6884
|
-
"
|
|
6885
|
-
"elementtype": {
|
|
6886
|
-
"primitive": "string"
|
|
6887
|
-
},
|
|
6888
|
-
"kind": "array"
|
|
6889
|
-
}
|
|
7873
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.CfnInsightRule"
|
|
6890
7874
|
}
|
|
6891
7875
|
},
|
|
6892
7876
|
{
|
|
6893
7877
|
"abstract": true,
|
|
6894
7878
|
"docs": {
|
|
6895
7879
|
"stability": "experimental",
|
|
6896
|
-
"summary": "
|
|
7880
|
+
"summary": "Insight rule that is used to calculate the number of instances in this particular AZ that is used with metric math to calculate the percent of instances contributing to latency or faults."
|
|
6897
7881
|
},
|
|
6898
|
-
"immutable": true,
|
|
6899
7882
|
"locationInModule": {
|
|
6900
|
-
"filename": "src/
|
|
6901
|
-
"line":
|
|
7883
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7884
|
+
"line": 44
|
|
6902
7885
|
},
|
|
6903
|
-
"name": "
|
|
7886
|
+
"name": "instancesHandlingRequestsInThisAZ",
|
|
7887
|
+
"optional": true,
|
|
6904
7888
|
"type": {
|
|
6905
|
-
"fqn": "aws-cdk-lib.aws_cloudwatch.
|
|
7889
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.CfnInsightRule"
|
|
6906
7890
|
}
|
|
6907
7891
|
},
|
|
6908
7892
|
{
|
|
6909
7893
|
"abstract": true,
|
|
6910
7894
|
"docs": {
|
|
6911
|
-
"default": "- For availability metrics, this will be \"Sum\", for latency metrics it will be just \"p99\"",
|
|
6912
|
-
"remarks": "For availability\nmetrics this will typically just be \"Sum\".",
|
|
6913
7895
|
"stability": "experimental",
|
|
6914
|
-
"summary": "
|
|
7896
|
+
"summary": "Alarm indicating that there are multiple instances producing faults in this AZ indicating the fault rate is not being caused by a single instance."
|
|
6915
7897
|
},
|
|
6916
|
-
"immutable": true,
|
|
6917
7898
|
"locationInModule": {
|
|
6918
|
-
"filename": "src/
|
|
6919
|
-
"line":
|
|
7899
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7900
|
+
"line": 21
|
|
6920
7901
|
},
|
|
6921
|
-
"name": "
|
|
7902
|
+
"name": "multipleInstancesProducingFaultsInThisAvailabilityZone",
|
|
6922
7903
|
"optional": true,
|
|
6923
7904
|
"type": {
|
|
6924
|
-
"
|
|
6925
|
-
"elementtype": {
|
|
6926
|
-
"primitive": "string"
|
|
6927
|
-
},
|
|
6928
|
-
"kind": "array"
|
|
6929
|
-
}
|
|
7905
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6930
7906
|
}
|
|
6931
7907
|
},
|
|
6932
7908
|
{
|
|
6933
7909
|
"abstract": true,
|
|
6934
7910
|
"docs": {
|
|
6935
|
-
"default": "- For availability metrics, this will be \"Sum\", for latency metrics it will be just \"p99\"",
|
|
6936
|
-
"remarks": "For availability\nmetrics this will typically just be \"Sum\".",
|
|
6937
7911
|
"stability": "experimental",
|
|
6938
|
-
"summary": "
|
|
7912
|
+
"summary": "Alarm indicating that there are multiple instances producing high latency responses in this AZ indicating the latency is not being caused by a single instance."
|
|
6939
7913
|
},
|
|
6940
|
-
"immutable": true,
|
|
6941
7914
|
"locationInModule": {
|
|
6942
|
-
"filename": "src/
|
|
6943
|
-
"line":
|
|
7915
|
+
"filename": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules.ts",
|
|
7916
|
+
"line": 28
|
|
6944
7917
|
},
|
|
6945
|
-
"name": "
|
|
7918
|
+
"name": "multipleInstancesProducingHighLatencyInThisAZ",
|
|
6946
7919
|
"optional": true,
|
|
6947
7920
|
"type": {
|
|
6948
|
-
"
|
|
6949
|
-
"elementtype": {
|
|
6950
|
-
"primitive": "string"
|
|
6951
|
-
},
|
|
6952
|
-
"kind": "array"
|
|
6953
|
-
}
|
|
7921
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
6954
7922
|
}
|
|
6955
7923
|
}
|
|
6956
7924
|
],
|
|
6957
|
-
"symbolId": "src/
|
|
7925
|
+
"symbolId": "src/alarmsandrules/IServerSideOperationZonalAlarmsAndRules:IServerSideOperationZonalAlarmsAndRules"
|
|
6958
7926
|
},
|
|
6959
7927
|
"@cdklabs/multi-az-observability.IService": {
|
|
6960
7928
|
"assembly": "@cdklabs/multi-az-observability",
|
|
@@ -6966,7 +7934,7 @@
|
|
|
6966
7934
|
"kind": "interface",
|
|
6967
7935
|
"locationInModule": {
|
|
6968
7936
|
"filename": "src/services/IService.ts",
|
|
6969
|
-
"line":
|
|
7937
|
+
"line": 14
|
|
6970
7938
|
},
|
|
6971
7939
|
"methods": [
|
|
6972
7940
|
{
|
|
@@ -6977,7 +7945,7 @@
|
|
|
6977
7945
|
},
|
|
6978
7946
|
"locationInModule": {
|
|
6979
7947
|
"filename": "src/services/IService.ts",
|
|
6980
|
-
"line":
|
|
7948
|
+
"line": 90
|
|
6981
7949
|
},
|
|
6982
7950
|
"name": "addOperation",
|
|
6983
7951
|
"parameters": [
|
|
@@ -7001,7 +7969,7 @@
|
|
|
7001
7969
|
"immutable": true,
|
|
7002
7970
|
"locationInModule": {
|
|
7003
7971
|
"filename": "src/services/IService.ts",
|
|
7004
|
-
"line":
|
|
7972
|
+
"line": 34
|
|
7005
7973
|
},
|
|
7006
7974
|
"name": "availabilityZoneNames",
|
|
7007
7975
|
"type": {
|
|
@@ -7022,7 +7990,7 @@
|
|
|
7022
7990
|
"immutable": true,
|
|
7023
7991
|
"locationInModule": {
|
|
7024
7992
|
"filename": "src/services/IService.ts",
|
|
7025
|
-
"line":
|
|
7993
|
+
"line": 23
|
|
7026
7994
|
},
|
|
7027
7995
|
"name": "baseUrl",
|
|
7028
7996
|
"type": {
|
|
@@ -7038,11 +8006,11 @@
|
|
|
7038
8006
|
"immutable": true,
|
|
7039
8007
|
"locationInModule": {
|
|
7040
8008
|
"filename": "src/services/IService.ts",
|
|
7041
|
-
"line":
|
|
8009
|
+
"line": 70
|
|
7042
8010
|
},
|
|
7043
8011
|
"name": "defaultAvailabilityMetricDetails",
|
|
7044
8012
|
"type": {
|
|
7045
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
8013
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails"
|
|
7046
8014
|
}
|
|
7047
8015
|
},
|
|
7048
8016
|
{
|
|
@@ -7054,11 +8022,11 @@
|
|
|
7054
8022
|
"immutable": true,
|
|
7055
8023
|
"locationInModule": {
|
|
7056
8024
|
"filename": "src/services/IService.ts",
|
|
7057
|
-
"line":
|
|
8025
|
+
"line": 77
|
|
7058
8026
|
},
|
|
7059
8027
|
"name": "defaultLatencyMetricDetails",
|
|
7060
8028
|
"type": {
|
|
7061
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
8029
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceLatencyMetricDetails"
|
|
7062
8030
|
}
|
|
7063
8031
|
},
|
|
7064
8032
|
{
|
|
@@ -7071,7 +8039,7 @@
|
|
|
7071
8039
|
"immutable": true,
|
|
7072
8040
|
"locationInModule": {
|
|
7073
8041
|
"filename": "src/services/IService.ts",
|
|
7074
|
-
"line":
|
|
8042
|
+
"line": 29
|
|
7075
8043
|
},
|
|
7076
8044
|
"name": "faultCountThreshold",
|
|
7077
8045
|
"type": {
|
|
@@ -7087,7 +8055,7 @@
|
|
|
7087
8055
|
"immutable": true,
|
|
7088
8056
|
"locationInModule": {
|
|
7089
8057
|
"filename": "src/services/IService.ts",
|
|
7090
|
-
"line":
|
|
8058
|
+
"line": 44
|
|
7091
8059
|
},
|
|
7092
8060
|
"name": "operations",
|
|
7093
8061
|
"type": {
|
|
@@ -7108,7 +8076,7 @@
|
|
|
7108
8076
|
"immutable": true,
|
|
7109
8077
|
"locationInModule": {
|
|
7110
8078
|
"filename": "src/services/IService.ts",
|
|
7111
|
-
"line":
|
|
8079
|
+
"line": 39
|
|
7112
8080
|
},
|
|
7113
8081
|
"name": "period",
|
|
7114
8082
|
"type": {
|
|
@@ -7124,7 +8092,7 @@
|
|
|
7124
8092
|
"immutable": true,
|
|
7125
8093
|
"locationInModule": {
|
|
7126
8094
|
"filename": "src/services/IService.ts",
|
|
7127
|
-
"line":
|
|
8095
|
+
"line": 18
|
|
7128
8096
|
},
|
|
7129
8097
|
"name": "serviceName",
|
|
7130
8098
|
"type": {
|
|
@@ -7142,7 +8110,7 @@
|
|
|
7142
8110
|
"immutable": true,
|
|
7143
8111
|
"locationInModule": {
|
|
7144
8112
|
"filename": "src/services/IService.ts",
|
|
7145
|
-
"line":
|
|
8113
|
+
"line": 63
|
|
7146
8114
|
},
|
|
7147
8115
|
"name": "canaryTestProps",
|
|
7148
8116
|
"optional": true,
|
|
@@ -7160,7 +8128,7 @@
|
|
|
7160
8128
|
"immutable": true,
|
|
7161
8129
|
"locationInModule": {
|
|
7162
8130
|
"filename": "src/services/IService.ts",
|
|
7163
|
-
"line":
|
|
8131
|
+
"line": 85
|
|
7164
8132
|
},
|
|
7165
8133
|
"name": "defaultContributorInsightRuleDetails",
|
|
7166
8134
|
"optional": true,
|
|
@@ -7178,7 +8146,7 @@
|
|
|
7178
8146
|
"immutable": true,
|
|
7179
8147
|
"locationInModule": {
|
|
7180
8148
|
"filename": "src/services/IService.ts",
|
|
7181
|
-
"line":
|
|
8149
|
+
"line": 53
|
|
7182
8150
|
},
|
|
7183
8151
|
"name": "loadBalancer",
|
|
7184
8152
|
"optional": true,
|
|
@@ -7207,13 +8175,13 @@
|
|
|
7207
8175
|
"abstract": true,
|
|
7208
8176
|
"docs": {
|
|
7209
8177
|
"stability": "experimental",
|
|
7210
|
-
"summary": "An alarm
|
|
8178
|
+
"summary": "An alarm indicating there is availability or latency impact on a critical operation that is not scoped to a single availability zone as measured by the server-side and/or canary (if present)."
|
|
7211
8179
|
},
|
|
7212
8180
|
"locationInModule": {
|
|
7213
8181
|
"filename": "src/alarmsandrules/IServiceAlarmsAndRules.ts",
|
|
7214
|
-
"line":
|
|
8182
|
+
"line": 40
|
|
7215
8183
|
},
|
|
7216
|
-
"name": "
|
|
8184
|
+
"name": "regionalImpactAlarm",
|
|
7217
8185
|
"type": {
|
|
7218
8186
|
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7219
8187
|
}
|
|
@@ -7222,13 +8190,13 @@
|
|
|
7222
8190
|
"abstract": true,
|
|
7223
8191
|
"docs": {
|
|
7224
8192
|
"stability": "experimental",
|
|
7225
|
-
"summary": "An alarm
|
|
8193
|
+
"summary": "An alarm indicating there is availability or latency impact on a critical operation that is not scoped to a single availability zone as measured by the server-side."
|
|
7226
8194
|
},
|
|
7227
8195
|
"locationInModule": {
|
|
7228
8196
|
"filename": "src/alarmsandrules/IServiceAlarmsAndRules.ts",
|
|
7229
|
-
"line":
|
|
8197
|
+
"line": 46
|
|
7230
8198
|
},
|
|
7231
|
-
"name": "
|
|
8199
|
+
"name": "regionalServerSideImpactAlarm",
|
|
7232
8200
|
"type": {
|
|
7233
8201
|
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7234
8202
|
}
|
|
@@ -7237,30 +8205,31 @@
|
|
|
7237
8205
|
"abstract": true,
|
|
7238
8206
|
"docs": {
|
|
7239
8207
|
"stability": "experimental",
|
|
7240
|
-
"summary": "
|
|
8208
|
+
"summary": "The service these alarms and rules are for."
|
|
7241
8209
|
},
|
|
7242
8210
|
"locationInModule": {
|
|
7243
8211
|
"filename": "src/alarmsandrules/IServiceAlarmsAndRules.ts",
|
|
7244
|
-
"line":
|
|
8212
|
+
"line": 13
|
|
7245
8213
|
},
|
|
7246
|
-
"name": "
|
|
8214
|
+
"name": "service",
|
|
7247
8215
|
"type": {
|
|
7248
|
-
"fqn": "
|
|
8216
|
+
"fqn": "@cdklabs/multi-az-observability.IService"
|
|
7249
8217
|
}
|
|
7250
8218
|
},
|
|
7251
8219
|
{
|
|
7252
8220
|
"abstract": true,
|
|
7253
8221
|
"docs": {
|
|
8222
|
+
"remarks": "It triggers\non any impact to a critical operation either zonally scoped or regionally scoped.",
|
|
7254
8223
|
"stability": "experimental",
|
|
7255
|
-
"summary": "
|
|
8224
|
+
"summary": "This is the top level alarm you should tie notifications/paging/alerting to."
|
|
7256
8225
|
},
|
|
7257
8226
|
"locationInModule": {
|
|
7258
8227
|
"filename": "src/alarmsandrules/IServiceAlarmsAndRules.ts",
|
|
7259
|
-
"line":
|
|
8228
|
+
"line": 52
|
|
7260
8229
|
},
|
|
7261
|
-
"name": "
|
|
8230
|
+
"name": "serviceImpactAlarm",
|
|
7262
8231
|
"type": {
|
|
7263
|
-
"fqn": "
|
|
8232
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7264
8233
|
}
|
|
7265
8234
|
},
|
|
7266
8235
|
{
|
|
@@ -7280,14 +8249,14 @@
|
|
|
7280
8249
|
"elementtype": {
|
|
7281
8250
|
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7282
8251
|
},
|
|
7283
|
-
"kind": "
|
|
8252
|
+
"kind": "map"
|
|
7284
8253
|
}
|
|
7285
8254
|
}
|
|
7286
8255
|
},
|
|
7287
8256
|
{
|
|
7288
8257
|
"abstract": true,
|
|
7289
8258
|
"docs": {
|
|
7290
|
-
"remarks": "There is 1 alarm per AZ that triggers\non availability or
|
|
8259
|
+
"remarks": "There is 1 alarm per AZ that triggers\non availability or latency impact to any critical operation in that AZ. These are useful\nfor deployment monitoring to not inadvertently fail when a canary can't contact an AZ\nduring a deployment.",
|
|
7291
8260
|
"stability": "experimental",
|
|
7292
8261
|
"summary": "The zonal server-side isolated impact alarms."
|
|
7293
8262
|
},
|
|
@@ -7301,7 +8270,7 @@
|
|
|
7301
8270
|
"elementtype": {
|
|
7302
8271
|
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7303
8272
|
},
|
|
7304
|
-
"kind": "
|
|
8273
|
+
"kind": "map"
|
|
7305
8274
|
}
|
|
7306
8275
|
}
|
|
7307
8276
|
},
|
|
@@ -7309,36 +8278,108 @@
|
|
|
7309
8278
|
"abstract": true,
|
|
7310
8279
|
"docs": {
|
|
7311
8280
|
"stability": "experimental",
|
|
7312
|
-
"summary": "An alarm
|
|
8281
|
+
"summary": "An alarm indicating the canary has discovered an availability or latency impact on a critical operation while testing the regional endpoint."
|
|
7313
8282
|
},
|
|
7314
8283
|
"locationInModule": {
|
|
7315
8284
|
"filename": "src/alarmsandrules/IServiceAlarmsAndRules.ts",
|
|
7316
|
-
"line":
|
|
8285
|
+
"line": 34
|
|
7317
8286
|
},
|
|
7318
|
-
"name": "
|
|
8287
|
+
"name": "regionalCanaryAlarm",
|
|
7319
8288
|
"optional": true,
|
|
7320
8289
|
"type": {
|
|
7321
8290
|
"fqn": "aws-cdk-lib.aws_cloudwatch.IAlarm"
|
|
7322
8291
|
}
|
|
8292
|
+
}
|
|
8293
|
+
],
|
|
8294
|
+
"symbolId": "src/alarmsandrules/IServiceAlarmsAndRules:IServiceAlarmsAndRules"
|
|
8295
|
+
},
|
|
8296
|
+
"@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails": {
|
|
8297
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
8298
|
+
"docs": {
|
|
8299
|
+
"stability": "experimental",
|
|
8300
|
+
"summary": "Details for the defaults used in a service for metrics in one perspective, such as server side latency."
|
|
8301
|
+
},
|
|
8302
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails",
|
|
8303
|
+
"interfaces": [
|
|
8304
|
+
"@cdklabs/multi-az-observability.IServiceMetricDetails"
|
|
8305
|
+
],
|
|
8306
|
+
"kind": "interface",
|
|
8307
|
+
"locationInModule": {
|
|
8308
|
+
"filename": "src/services/IServiceAvailabilityMetricDetails.ts",
|
|
8309
|
+
"line": 8
|
|
8310
|
+
},
|
|
8311
|
+
"name": "IServiceAvailabilityMetricDetails",
|
|
8312
|
+
"properties": [
|
|
8313
|
+
{
|
|
8314
|
+
"abstract": true,
|
|
8315
|
+
"docs": {
|
|
8316
|
+
"stability": "experimental",
|
|
8317
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
8318
|
+
},
|
|
8319
|
+
"immutable": true,
|
|
8320
|
+
"locationInModule": {
|
|
8321
|
+
"filename": "src/services/IServiceAvailabilityMetricDetails.ts",
|
|
8322
|
+
"line": 21
|
|
8323
|
+
},
|
|
8324
|
+
"name": "faultAlarmThreshold",
|
|
8325
|
+
"type": {
|
|
8326
|
+
"primitive": "number"
|
|
8327
|
+
}
|
|
7323
8328
|
},
|
|
7324
8329
|
{
|
|
7325
8330
|
"abstract": true,
|
|
7326
8331
|
"docs": {
|
|
7327
8332
|
"stability": "experimental",
|
|
7328
|
-
"summary": "
|
|
8333
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
7329
8334
|
},
|
|
8335
|
+
"immutable": true,
|
|
7330
8336
|
"locationInModule": {
|
|
7331
|
-
"filename": "src/
|
|
7332
|
-
"line":
|
|
8337
|
+
"filename": "src/services/IServiceAvailabilityMetricDetails.ts",
|
|
8338
|
+
"line": 14
|
|
7333
8339
|
},
|
|
7334
|
-
"name": "
|
|
7335
|
-
"optional": true,
|
|
8340
|
+
"name": "successAlarmThreshold",
|
|
7336
8341
|
"type": {
|
|
7337
|
-
"
|
|
8342
|
+
"primitive": "number"
|
|
7338
8343
|
}
|
|
7339
8344
|
}
|
|
7340
8345
|
],
|
|
7341
|
-
"symbolId": "src/
|
|
8346
|
+
"symbolId": "src/services/IServiceAvailabilityMetricDetails:IServiceAvailabilityMetricDetails"
|
|
8347
|
+
},
|
|
8348
|
+
"@cdklabs/multi-az-observability.IServiceLatencyMetricDetails": {
|
|
8349
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
8350
|
+
"docs": {
|
|
8351
|
+
"stability": "experimental",
|
|
8352
|
+
"summary": "Details for the defaults used in a service for metrics in one perspective, such as server side latency."
|
|
8353
|
+
},
|
|
8354
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceLatencyMetricDetails",
|
|
8355
|
+
"interfaces": [
|
|
8356
|
+
"@cdklabs/multi-az-observability.IServiceMetricDetails"
|
|
8357
|
+
],
|
|
8358
|
+
"kind": "interface",
|
|
8359
|
+
"locationInModule": {
|
|
8360
|
+
"filename": "src/services/IServiceLatencyMetricDetails.ts",
|
|
8361
|
+
"line": 9
|
|
8362
|
+
},
|
|
8363
|
+
"name": "IServiceLatencyMetricDetails",
|
|
8364
|
+
"properties": [
|
|
8365
|
+
{
|
|
8366
|
+
"abstract": true,
|
|
8367
|
+
"docs": {
|
|
8368
|
+
"stability": "experimental",
|
|
8369
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
8370
|
+
},
|
|
8371
|
+
"immutable": true,
|
|
8372
|
+
"locationInModule": {
|
|
8373
|
+
"filename": "src/services/IServiceLatencyMetricDetails.ts",
|
|
8374
|
+
"line": 14
|
|
8375
|
+
},
|
|
8376
|
+
"name": "successAlarmThreshold",
|
|
8377
|
+
"type": {
|
|
8378
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
8379
|
+
}
|
|
8380
|
+
}
|
|
8381
|
+
],
|
|
8382
|
+
"symbolId": "src/services/IServiceLatencyMetricDetails:IServiceLatencyMetricDetails"
|
|
7342
8383
|
},
|
|
7343
8384
|
"@cdklabs/multi-az-observability.IServiceMetricDetails": {
|
|
7344
8385
|
"assembly": "@cdklabs/multi-az-observability",
|
|
@@ -7402,22 +8443,6 @@
|
|
|
7402
8443
|
"primitive": "number"
|
|
7403
8444
|
}
|
|
7404
8445
|
},
|
|
7405
|
-
{
|
|
7406
|
-
"abstract": true,
|
|
7407
|
-
"docs": {
|
|
7408
|
-
"stability": "experimental",
|
|
7409
|
-
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
7410
|
-
},
|
|
7411
|
-
"immutable": true,
|
|
7412
|
-
"locationInModule": {
|
|
7413
|
-
"filename": "src/services/IServiceMetricDetails.ts",
|
|
7414
|
-
"line": 81
|
|
7415
|
-
},
|
|
7416
|
-
"name": "faultAlarmThreshold",
|
|
7417
|
-
"type": {
|
|
7418
|
-
"primitive": "number"
|
|
7419
|
-
}
|
|
7420
|
-
},
|
|
7421
8446
|
{
|
|
7422
8447
|
"abstract": true,
|
|
7423
8448
|
"docs": {
|
|
@@ -7452,39 +8477,23 @@
|
|
|
7452
8477
|
},
|
|
7453
8478
|
"name": "metricNamespace",
|
|
7454
8479
|
"type": {
|
|
7455
|
-
"primitive": "string"
|
|
7456
|
-
}
|
|
7457
|
-
},
|
|
7458
|
-
{
|
|
7459
|
-
"abstract": true,
|
|
7460
|
-
"docs": {
|
|
7461
|
-
"stability": "experimental",
|
|
7462
|
-
"summary": "The period for the metrics."
|
|
7463
|
-
},
|
|
7464
|
-
"immutable": true,
|
|
7465
|
-
"locationInModule": {
|
|
7466
|
-
"filename": "src/services/IServiceMetricDetails.ts",
|
|
7467
|
-
"line": 57
|
|
7468
|
-
},
|
|
7469
|
-
"name": "period",
|
|
7470
|
-
"type": {
|
|
7471
|
-
"fqn": "aws-cdk-lib.Duration"
|
|
8480
|
+
"primitive": "string"
|
|
7472
8481
|
}
|
|
7473
8482
|
},
|
|
7474
8483
|
{
|
|
7475
8484
|
"abstract": true,
|
|
7476
8485
|
"docs": {
|
|
7477
8486
|
"stability": "experimental",
|
|
7478
|
-
"summary": "The
|
|
8487
|
+
"summary": "The period for the metrics."
|
|
7479
8488
|
},
|
|
7480
8489
|
"immutable": true,
|
|
7481
8490
|
"locationInModule": {
|
|
7482
8491
|
"filename": "src/services/IServiceMetricDetails.ts",
|
|
7483
|
-
"line":
|
|
8492
|
+
"line": 57
|
|
7484
8493
|
},
|
|
7485
|
-
"name": "
|
|
8494
|
+
"name": "period",
|
|
7486
8495
|
"type": {
|
|
7487
|
-
"
|
|
8496
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
7488
8497
|
}
|
|
7489
8498
|
},
|
|
7490
8499
|
{
|
|
@@ -7589,7 +8598,7 @@
|
|
|
7589
8598
|
},
|
|
7590
8599
|
"locationInModule": {
|
|
7591
8600
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7592
|
-
"line":
|
|
8601
|
+
"line": 351
|
|
7593
8602
|
},
|
|
7594
8603
|
"parameters": [
|
|
7595
8604
|
{
|
|
@@ -7618,10 +8627,31 @@
|
|
|
7618
8627
|
"kind": "class",
|
|
7619
8628
|
"locationInModule": {
|
|
7620
8629
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7621
|
-
"line":
|
|
8630
|
+
"line": 37
|
|
7622
8631
|
},
|
|
7623
8632
|
"name": "InstrumentedServiceMultiAZObservability",
|
|
7624
8633
|
"properties": [
|
|
8634
|
+
{
|
|
8635
|
+
"docs": {
|
|
8636
|
+
"stability": "experimental",
|
|
8637
|
+
"summary": "Key represents the operation name and the value is the set of zonal alarms and rules for that operation."
|
|
8638
|
+
},
|
|
8639
|
+
"immutable": true,
|
|
8640
|
+
"locationInModule": {
|
|
8641
|
+
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
8642
|
+
"line": 45
|
|
8643
|
+
},
|
|
8644
|
+
"name": "perOperationAlarmsAndRules",
|
|
8645
|
+
"overrides": "@cdklabs/multi-az-observability.IInstrumentedServiceMultiAZObservability",
|
|
8646
|
+
"type": {
|
|
8647
|
+
"collection": {
|
|
8648
|
+
"elementtype": {
|
|
8649
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAlarmsAndRules"
|
|
8650
|
+
},
|
|
8651
|
+
"kind": "map"
|
|
8652
|
+
}
|
|
8653
|
+
}
|
|
8654
|
+
},
|
|
7625
8655
|
{
|
|
7626
8656
|
"docs": {
|
|
7627
8657
|
"remarks": "These are the alarms\nyou would want to use to trigger automation to evacuate an AZ.",
|
|
@@ -7631,7 +8661,7 @@
|
|
|
7631
8661
|
"immutable": true,
|
|
7632
8662
|
"locationInModule": {
|
|
7633
8663
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7634
|
-
"line":
|
|
8664
|
+
"line": 55
|
|
7635
8665
|
},
|
|
7636
8666
|
"name": "perOperationZonalImpactAlarms",
|
|
7637
8667
|
"overrides": "@cdklabs/multi-az-observability.IInstrumentedServiceMultiAZObservability",
|
|
@@ -7657,7 +8687,7 @@
|
|
|
7657
8687
|
"immutable": true,
|
|
7658
8688
|
"locationInModule": {
|
|
7659
8689
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7660
|
-
"line":
|
|
8690
|
+
"line": 62
|
|
7661
8691
|
},
|
|
7662
8692
|
"name": "serviceAlarms",
|
|
7663
8693
|
"overrides": "@cdklabs/multi-az-observability.IInstrumentedServiceMultiAZObservability",
|
|
@@ -7674,7 +8704,7 @@
|
|
|
7674
8704
|
"immutable": true,
|
|
7675
8705
|
"locationInModule": {
|
|
7676
8706
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7677
|
-
"line":
|
|
8707
|
+
"line": 85
|
|
7678
8708
|
},
|
|
7679
8709
|
"name": "canaryLogGroup",
|
|
7680
8710
|
"optional": true,
|
|
@@ -7691,7 +8721,7 @@
|
|
|
7691
8721
|
"immutable": true,
|
|
7692
8722
|
"locationInModule": {
|
|
7693
8723
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7694
|
-
"line":
|
|
8724
|
+
"line": 67
|
|
7695
8725
|
},
|
|
7696
8726
|
"name": "operationDashboards",
|
|
7697
8727
|
"optional": true,
|
|
@@ -7713,7 +8743,7 @@
|
|
|
7713
8743
|
"immutable": true,
|
|
7714
8744
|
"locationInModule": {
|
|
7715
8745
|
"filename": "src/services/InstrumentedServiceMultiAZObservability.ts",
|
|
7716
|
-
"line":
|
|
8746
|
+
"line": 72
|
|
7717
8747
|
},
|
|
7718
8748
|
"name": "serviceDashboard",
|
|
7719
8749
|
"optional": true,
|
|
@@ -7850,7 +8880,7 @@
|
|
|
7850
8880
|
"abstract": true,
|
|
7851
8881
|
"docs": {
|
|
7852
8882
|
"default": "- Depends on the outlier detection algorithm selected",
|
|
7853
|
-
"remarks": "This number is interpreted\ndifferently for different outlier algorithms. When used with\nSTATIC, the number should be between 0 and 1 to represent the\npercentage of errors (like .7) that an AZ must be responsible\nfor to be considered an outlier. When used with CHI_SQUARED, it\nrepresents the p value that indicates statistical significance, like\n0.05 which means the skew has less than or equal to a 5% chance of\noccuring. When used with Z_SCORE it indicates how many standard\ndeviations to evaluate for an AZ being an outlier, typically 3 is\nstandard for Z_SCORE.\n\nStandard defaults based on the outlier detection algorithm:\nSTATIC: 0.7\nCHI_SQUARED: 0.05\nZ_SCORE:
|
|
8883
|
+
"remarks": "This number is interpreted\ndifferently for different outlier algorithms. When used with\nSTATIC, the number should be between 0 and 1 to represent the\npercentage of errors (like .7) that an AZ must be responsible\nfor to be considered an outlier. When used with CHI_SQUARED, it\nrepresents the p value that indicates statistical significance, like\n0.05 which means the skew has less than or equal to a 5% chance of\noccuring. When used with Z_SCORE it indicates how many standard\ndeviations to evaluate for an AZ being an outlier, typically 3 is\nstandard for Z_SCORE.\n\nStandard defaults based on the outlier detection algorithm:\nSTATIC: 0.7\nCHI_SQUARED: 0.05\nZ_SCORE: 3\nIQR: 1.5\nMAD: 3",
|
|
7854
8884
|
"stability": "experimental",
|
|
7855
8885
|
"summary": "The outlier threshold for determining if an AZ is an outlier for latency or faults."
|
|
7856
8886
|
},
|
|
@@ -8035,6 +9065,104 @@
|
|
|
8035
9065
|
],
|
|
8036
9066
|
"symbolId": "src/services/props/MetricDimensions:MetricDimensions"
|
|
8037
9067
|
},
|
|
9068
|
+
"@cdklabs/multi-az-observability.NatGatewayDetectionProps": {
|
|
9069
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
9070
|
+
"datatype": true,
|
|
9071
|
+
"docs": {
|
|
9072
|
+
"stability": "experimental",
|
|
9073
|
+
"summary": "The properties for performing zonal impact detection with NAT Gateway(s)."
|
|
9074
|
+
},
|
|
9075
|
+
"fqn": "@cdklabs/multi-az-observability.NatGatewayDetectionProps",
|
|
9076
|
+
"kind": "interface",
|
|
9077
|
+
"locationInModule": {
|
|
9078
|
+
"filename": "src/basic_observability/props/NatGatewayDetectionProps.ts",
|
|
9079
|
+
"line": 7
|
|
9080
|
+
},
|
|
9081
|
+
"name": "NatGatewayDetectionProps",
|
|
9082
|
+
"properties": [
|
|
9083
|
+
{
|
|
9084
|
+
"abstract": true,
|
|
9085
|
+
"docs": {
|
|
9086
|
+
"stability": "experimental",
|
|
9087
|
+
"summary": "A list of NAT Gateways per Availability Zone (using the AZ name as the key)."
|
|
9088
|
+
},
|
|
9089
|
+
"immutable": true,
|
|
9090
|
+
"locationInModule": {
|
|
9091
|
+
"filename": "src/basic_observability/props/NatGatewayDetectionProps.ts",
|
|
9092
|
+
"line": 12
|
|
9093
|
+
},
|
|
9094
|
+
"name": "natGateways",
|
|
9095
|
+
"type": {
|
|
9096
|
+
"collection": {
|
|
9097
|
+
"elementtype": {
|
|
9098
|
+
"collection": {
|
|
9099
|
+
"elementtype": {
|
|
9100
|
+
"fqn": "aws-cdk-lib.aws_ec2.CfnNatGateway"
|
|
9101
|
+
},
|
|
9102
|
+
"kind": "array"
|
|
9103
|
+
}
|
|
9104
|
+
},
|
|
9105
|
+
"kind": "map"
|
|
9106
|
+
}
|
|
9107
|
+
}
|
|
9108
|
+
},
|
|
9109
|
+
{
|
|
9110
|
+
"abstract": true,
|
|
9111
|
+
"docs": {
|
|
9112
|
+
"default": "PacketLossOutlierAlgorithm.STATIC",
|
|
9113
|
+
"stability": "experimental",
|
|
9114
|
+
"summary": "The algorithm to use to calculate an AZ as an outlier for packet loss."
|
|
9115
|
+
},
|
|
9116
|
+
"immutable": true,
|
|
9117
|
+
"locationInModule": {
|
|
9118
|
+
"filename": "src/basic_observability/props/NatGatewayDetectionProps.ts",
|
|
9119
|
+
"line": 26
|
|
9120
|
+
},
|
|
9121
|
+
"name": "packetLossOutlierAlgorithm",
|
|
9122
|
+
"optional": true,
|
|
9123
|
+
"type": {
|
|
9124
|
+
"fqn": "@cdklabs/multi-az-observability.PacketLossOutlierAlgorithm"
|
|
9125
|
+
}
|
|
9126
|
+
},
|
|
9127
|
+
{
|
|
9128
|
+
"abstract": true,
|
|
9129
|
+
"docs": {
|
|
9130
|
+
"default": "\"This depends on the outlier algorithm. STATIC: 66. Z-SCORE: 3.\"",
|
|
9131
|
+
"stability": "experimental",
|
|
9132
|
+
"summary": "The threshold used with the outlier calculation."
|
|
9133
|
+
},
|
|
9134
|
+
"immutable": true,
|
|
9135
|
+
"locationInModule": {
|
|
9136
|
+
"filename": "src/basic_observability/props/NatGatewayDetectionProps.ts",
|
|
9137
|
+
"line": 33
|
|
9138
|
+
},
|
|
9139
|
+
"name": "packetLossOutlierThreshold",
|
|
9140
|
+
"optional": true,
|
|
9141
|
+
"type": {
|
|
9142
|
+
"primitive": "number"
|
|
9143
|
+
}
|
|
9144
|
+
},
|
|
9145
|
+
{
|
|
9146
|
+
"abstract": true,
|
|
9147
|
+
"docs": {
|
|
9148
|
+
"default": "0.01 (as in 0.01%)",
|
|
9149
|
+
"stability": "experimental",
|
|
9150
|
+
"summary": "The percentage of packet loss at which you consider there to be impact."
|
|
9151
|
+
},
|
|
9152
|
+
"immutable": true,
|
|
9153
|
+
"locationInModule": {
|
|
9154
|
+
"filename": "src/basic_observability/props/NatGatewayDetectionProps.ts",
|
|
9155
|
+
"line": 19
|
|
9156
|
+
},
|
|
9157
|
+
"name": "packetLossPercentThreshold",
|
|
9158
|
+
"optional": true,
|
|
9159
|
+
"type": {
|
|
9160
|
+
"primitive": "number"
|
|
9161
|
+
}
|
|
9162
|
+
}
|
|
9163
|
+
],
|
|
9164
|
+
"symbolId": "src/basic_observability/props/NatGatewayDetectionProps:NatGatewayDetectionProps"
|
|
9165
|
+
},
|
|
8038
9166
|
"@cdklabs/multi-az-observability.NetworkConfigurationProps": {
|
|
8039
9167
|
"assembly": "@cdklabs/multi-az-observability",
|
|
8040
9168
|
"datatype": true,
|
|
@@ -8099,7 +9227,7 @@
|
|
|
8099
9227
|
},
|
|
8100
9228
|
"locationInModule": {
|
|
8101
9229
|
"filename": "src/services/Operation.ts",
|
|
8102
|
-
"line":
|
|
9230
|
+
"line": 95
|
|
8103
9231
|
},
|
|
8104
9232
|
"parameters": [
|
|
8105
9233
|
{
|
|
@@ -8116,7 +9244,7 @@
|
|
|
8116
9244
|
"kind": "class",
|
|
8117
9245
|
"locationInModule": {
|
|
8118
9246
|
"filename": "src/services/Operation.ts",
|
|
8119
|
-
"line":
|
|
9247
|
+
"line": 17
|
|
8120
9248
|
},
|
|
8121
9249
|
"name": "Operation",
|
|
8122
9250
|
"properties": [
|
|
@@ -8128,7 +9256,7 @@
|
|
|
8128
9256
|
"immutable": true,
|
|
8129
9257
|
"locationInModule": {
|
|
8130
9258
|
"filename": "src/services/Operation.ts",
|
|
8131
|
-
"line":
|
|
9259
|
+
"line": 73
|
|
8132
9260
|
},
|
|
8133
9261
|
"name": "critical",
|
|
8134
9262
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
@@ -8144,7 +9272,7 @@
|
|
|
8144
9272
|
"immutable": true,
|
|
8145
9273
|
"locationInModule": {
|
|
8146
9274
|
"filename": "src/services/Operation.ts",
|
|
8147
|
-
"line":
|
|
9275
|
+
"line": 78
|
|
8148
9276
|
},
|
|
8149
9277
|
"name": "httpMethods",
|
|
8150
9278
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
@@ -8165,7 +9293,7 @@
|
|
|
8165
9293
|
"immutable": true,
|
|
8166
9294
|
"locationInModule": {
|
|
8167
9295
|
"filename": "src/services/Operation.ts",
|
|
8168
|
-
"line":
|
|
9296
|
+
"line": 26
|
|
8169
9297
|
},
|
|
8170
9298
|
"name": "operationName",
|
|
8171
9299
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
@@ -8181,7 +9309,7 @@
|
|
|
8181
9309
|
"immutable": true,
|
|
8182
9310
|
"locationInModule": {
|
|
8183
9311
|
"filename": "src/services/Operation.ts",
|
|
8184
|
-
"line":
|
|
9312
|
+
"line": 32
|
|
8185
9313
|
},
|
|
8186
9314
|
"name": "path",
|
|
8187
9315
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
@@ -8197,12 +9325,12 @@
|
|
|
8197
9325
|
"immutable": true,
|
|
8198
9326
|
"locationInModule": {
|
|
8199
9327
|
"filename": "src/services/Operation.ts",
|
|
8200
|
-
"line":
|
|
9328
|
+
"line": 37
|
|
8201
9329
|
},
|
|
8202
9330
|
"name": "serverSideAvailabilityMetricDetails",
|
|
8203
9331
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
8204
9332
|
"type": {
|
|
8205
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
9333
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
8206
9334
|
}
|
|
8207
9335
|
},
|
|
8208
9336
|
{
|
|
@@ -8213,12 +9341,12 @@
|
|
|
8213
9341
|
"immutable": true,
|
|
8214
9342
|
"locationInModule": {
|
|
8215
9343
|
"filename": "src/services/Operation.ts",
|
|
8216
|
-
"line":
|
|
9344
|
+
"line": 42
|
|
8217
9345
|
},
|
|
8218
9346
|
"name": "serverSideLatencyMetricDetails",
|
|
8219
9347
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
8220
9348
|
"type": {
|
|
8221
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
9349
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
8222
9350
|
}
|
|
8223
9351
|
},
|
|
8224
9352
|
{
|
|
@@ -8229,7 +9357,7 @@
|
|
|
8229
9357
|
"immutable": true,
|
|
8230
9358
|
"locationInModule": {
|
|
8231
9359
|
"filename": "src/services/Operation.ts",
|
|
8232
|
-
"line":
|
|
9360
|
+
"line": 21
|
|
8233
9361
|
},
|
|
8234
9362
|
"name": "service",
|
|
8235
9363
|
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
@@ -8240,110 +9368,343 @@
|
|
|
8240
9368
|
{
|
|
8241
9369
|
"docs": {
|
|
8242
9370
|
"stability": "experimental",
|
|
8243
|
-
"summary": "Optional metric details if the service has a canary."
|
|
9371
|
+
"summary": "Optional metric details if the service has a canary."
|
|
9372
|
+
},
|
|
9373
|
+
"immutable": true,
|
|
9374
|
+
"locationInModule": {
|
|
9375
|
+
"filename": "src/services/Operation.ts",
|
|
9376
|
+
"line": 47
|
|
9377
|
+
},
|
|
9378
|
+
"name": "canaryMetricDetails",
|
|
9379
|
+
"optional": true,
|
|
9380
|
+
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9381
|
+
"type": {
|
|
9382
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryMetrics"
|
|
9383
|
+
}
|
|
9384
|
+
},
|
|
9385
|
+
{
|
|
9386
|
+
"docs": {
|
|
9387
|
+
"stability": "experimental",
|
|
9388
|
+
"summary": "The override values for automatically created canary tests so you can use values other than the service defaults to define the thresholds for availability."
|
|
9389
|
+
},
|
|
9390
|
+
"immutable": true,
|
|
9391
|
+
"locationInModule": {
|
|
9392
|
+
"filename": "src/services/Operation.ts",
|
|
9393
|
+
"line": 54
|
|
9394
|
+
},
|
|
9395
|
+
"name": "canaryTestAvailabilityMetricsOverride",
|
|
9396
|
+
"optional": true,
|
|
9397
|
+
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9398
|
+
"type": {
|
|
9399
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestAvailabilityMetricsOverride"
|
|
9400
|
+
}
|
|
9401
|
+
},
|
|
9402
|
+
{
|
|
9403
|
+
"docs": {
|
|
9404
|
+
"stability": "experimental",
|
|
9405
|
+
"summary": "The override values for automatically created canary tests so you can use values other than the service defaults to define the thresholds for latency."
|
|
9406
|
+
},
|
|
9407
|
+
"immutable": true,
|
|
9408
|
+
"locationInModule": {
|
|
9409
|
+
"filename": "src/services/Operation.ts",
|
|
9410
|
+
"line": 61
|
|
9411
|
+
},
|
|
9412
|
+
"name": "canaryTestLatencyMetricsOverride",
|
|
9413
|
+
"optional": true,
|
|
9414
|
+
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9415
|
+
"type": {
|
|
9416
|
+
"fqn": "@cdklabs/multi-az-observability.ICanaryTestLatencyMetricsOverride"
|
|
9417
|
+
}
|
|
9418
|
+
},
|
|
9419
|
+
{
|
|
9420
|
+
"docs": {
|
|
9421
|
+
"stability": "experimental",
|
|
9422
|
+
"summary": "If they have been added, the properties for creating new canary tests on this operation."
|
|
9423
|
+
},
|
|
9424
|
+
"immutable": true,
|
|
9425
|
+
"locationInModule": {
|
|
9426
|
+
"filename": "src/services/Operation.ts",
|
|
9427
|
+
"line": 84
|
|
9428
|
+
},
|
|
9429
|
+
"name": "canaryTestProps",
|
|
9430
|
+
"optional": true,
|
|
9431
|
+
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9432
|
+
"type": {
|
|
9433
|
+
"fqn": "@cdklabs/multi-az-observability.AddCanaryTestProps"
|
|
9434
|
+
}
|
|
9435
|
+
},
|
|
9436
|
+
{
|
|
9437
|
+
"docs": {
|
|
9438
|
+
"default": "- The operation is not opted out",
|
|
9439
|
+
"stability": "experimental",
|
|
9440
|
+
"summary": "Set to true if you have defined CanaryTestProps for your service, which applies to all operations, but you want to opt out of creating the canary test for this operation."
|
|
9441
|
+
},
|
|
9442
|
+
"immutable": true,
|
|
9443
|
+
"locationInModule": {
|
|
9444
|
+
"filename": "src/services/Operation.ts",
|
|
9445
|
+
"line": 93
|
|
9446
|
+
},
|
|
9447
|
+
"name": "optOutOfServiceCreatedCanary",
|
|
9448
|
+
"optional": true,
|
|
9449
|
+
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9450
|
+
"type": {
|
|
9451
|
+
"primitive": "boolean"
|
|
9452
|
+
}
|
|
9453
|
+
},
|
|
9454
|
+
{
|
|
9455
|
+
"docs": {
|
|
9456
|
+
"stability": "experimental",
|
|
9457
|
+
"summary": "The server side details for contributor insights rules."
|
|
9458
|
+
},
|
|
9459
|
+
"immutable": true,
|
|
9460
|
+
"locationInModule": {
|
|
9461
|
+
"filename": "src/services/Operation.ts",
|
|
9462
|
+
"line": 66
|
|
9463
|
+
},
|
|
9464
|
+
"name": "serverSideContributorInsightRuleDetails",
|
|
9465
|
+
"optional": true,
|
|
9466
|
+
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9467
|
+
"type": {
|
|
9468
|
+
"fqn": "@cdklabs/multi-az-observability.IContributorInsightRuleDetails"
|
|
9469
|
+
}
|
|
9470
|
+
}
|
|
9471
|
+
],
|
|
9472
|
+
"symbolId": "src/services/Operation:Operation"
|
|
9473
|
+
},
|
|
9474
|
+
"@cdklabs/multi-az-observability.OperationAvailabilityMetricDetails": {
|
|
9475
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
9476
|
+
"base": "@cdklabs/multi-az-observability.OperationMetricDetails",
|
|
9477
|
+
"docs": {
|
|
9478
|
+
"stability": "experimental",
|
|
9479
|
+
"summary": "Availability metric details for an operation."
|
|
9480
|
+
},
|
|
9481
|
+
"fqn": "@cdklabs/multi-az-observability.OperationAvailabilityMetricDetails",
|
|
9482
|
+
"initializer": {
|
|
9483
|
+
"docs": {
|
|
9484
|
+
"stability": "experimental"
|
|
9485
|
+
},
|
|
9486
|
+
"locationInModule": {
|
|
9487
|
+
"filename": "src/services/OperationAvailabilityMetricDetails.ts",
|
|
9488
|
+
"line": 27
|
|
9489
|
+
},
|
|
9490
|
+
"parameters": [
|
|
9491
|
+
{
|
|
9492
|
+
"name": "props",
|
|
9493
|
+
"type": {
|
|
9494
|
+
"fqn": "@cdklabs/multi-az-observability.OperationAvailabilityMetricDetailsProps"
|
|
9495
|
+
}
|
|
9496
|
+
},
|
|
9497
|
+
{
|
|
9498
|
+
"name": "defaultProps",
|
|
9499
|
+
"type": {
|
|
9500
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails"
|
|
9501
|
+
}
|
|
9502
|
+
}
|
|
9503
|
+
]
|
|
9504
|
+
},
|
|
9505
|
+
"interfaces": [
|
|
9506
|
+
"@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
9507
|
+
],
|
|
9508
|
+
"kind": "class",
|
|
9509
|
+
"locationInModule": {
|
|
9510
|
+
"filename": "src/services/OperationAvailabilityMetricDetails.ts",
|
|
9511
|
+
"line": 11
|
|
9512
|
+
},
|
|
9513
|
+
"name": "OperationAvailabilityMetricDetails",
|
|
9514
|
+
"properties": [
|
|
9515
|
+
{
|
|
9516
|
+
"docs": {
|
|
9517
|
+
"stability": "experimental",
|
|
9518
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
8244
9519
|
},
|
|
8245
9520
|
"immutable": true,
|
|
8246
9521
|
"locationInModule": {
|
|
8247
|
-
"filename": "src/services/
|
|
8248
|
-
"line":
|
|
9522
|
+
"filename": "src/services/OperationAvailabilityMetricDetails.ts",
|
|
9523
|
+
"line": 25
|
|
8249
9524
|
},
|
|
8250
|
-
"name": "
|
|
8251
|
-
"
|
|
8252
|
-
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9525
|
+
"name": "faultAlarmThreshold",
|
|
9526
|
+
"overrides": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails",
|
|
8253
9527
|
"type": {
|
|
8254
|
-
"
|
|
9528
|
+
"primitive": "number"
|
|
8255
9529
|
}
|
|
8256
9530
|
},
|
|
8257
9531
|
{
|
|
8258
9532
|
"docs": {
|
|
8259
9533
|
"stability": "experimental",
|
|
8260
|
-
"summary": "The
|
|
9534
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
8261
9535
|
},
|
|
8262
9536
|
"immutable": true,
|
|
8263
9537
|
"locationInModule": {
|
|
8264
|
-
"filename": "src/services/
|
|
8265
|
-
"line":
|
|
9538
|
+
"filename": "src/services/OperationAvailabilityMetricDetails.ts",
|
|
9539
|
+
"line": 18
|
|
8266
9540
|
},
|
|
8267
|
-
"name": "
|
|
8268
|
-
"
|
|
8269
|
-
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9541
|
+
"name": "successAlarmThreshold",
|
|
9542
|
+
"overrides": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails",
|
|
8270
9543
|
"type": {
|
|
8271
|
-
"
|
|
9544
|
+
"primitive": "number"
|
|
8272
9545
|
}
|
|
8273
|
-
}
|
|
9546
|
+
}
|
|
9547
|
+
],
|
|
9548
|
+
"symbolId": "src/services/OperationAvailabilityMetricDetails:OperationAvailabilityMetricDetails"
|
|
9549
|
+
},
|
|
9550
|
+
"@cdklabs/multi-az-observability.OperationAvailabilityMetricDetailsProps": {
|
|
9551
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
9552
|
+
"datatype": true,
|
|
9553
|
+
"docs": {
|
|
9554
|
+
"stability": "experimental",
|
|
9555
|
+
"summary": "The properties for an operation's availability metric details."
|
|
9556
|
+
},
|
|
9557
|
+
"fqn": "@cdklabs/multi-az-observability.OperationAvailabilityMetricDetailsProps",
|
|
9558
|
+
"interfaces": [
|
|
9559
|
+
"@cdklabs/multi-az-observability.OperationMetricDetailsProps"
|
|
9560
|
+
],
|
|
9561
|
+
"kind": "interface",
|
|
9562
|
+
"locationInModule": {
|
|
9563
|
+
"filename": "src/services/props/OperationAvailabilityMetricDetailsProps.ts",
|
|
9564
|
+
"line": 8
|
|
9565
|
+
},
|
|
9566
|
+
"name": "OperationAvailabilityMetricDetailsProps",
|
|
9567
|
+
"properties": [
|
|
8274
9568
|
{
|
|
9569
|
+
"abstract": true,
|
|
8275
9570
|
"docs": {
|
|
9571
|
+
"default": "- The service default is used",
|
|
8276
9572
|
"stability": "experimental",
|
|
8277
|
-
"summary": "The
|
|
9573
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
8278
9574
|
},
|
|
8279
9575
|
"immutable": true,
|
|
8280
9576
|
"locationInModule": {
|
|
8281
|
-
"filename": "src/services/
|
|
8282
|
-
"line":
|
|
9577
|
+
"filename": "src/services/props/OperationAvailabilityMetricDetailsProps.ts",
|
|
9578
|
+
"line": 26
|
|
8283
9579
|
},
|
|
8284
|
-
"name": "
|
|
9580
|
+
"name": "faultAlarmThreshold",
|
|
8285
9581
|
"optional": true,
|
|
8286
|
-
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
8287
9582
|
"type": {
|
|
8288
|
-
"
|
|
9583
|
+
"primitive": "number"
|
|
8289
9584
|
}
|
|
8290
9585
|
},
|
|
8291
9586
|
{
|
|
9587
|
+
"abstract": true,
|
|
8292
9588
|
"docs": {
|
|
9589
|
+
"default": "- The service default is used",
|
|
8293
9590
|
"stability": "experimental",
|
|
8294
|
-
"summary": "
|
|
9591
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
8295
9592
|
},
|
|
8296
9593
|
"immutable": true,
|
|
8297
9594
|
"locationInModule": {
|
|
8298
|
-
"filename": "src/services/
|
|
8299
|
-
"line":
|
|
9595
|
+
"filename": "src/services/props/OperationAvailabilityMetricDetailsProps.ts",
|
|
9596
|
+
"line": 17
|
|
8300
9597
|
},
|
|
8301
|
-
"name": "
|
|
9598
|
+
"name": "successAlarmThreshold",
|
|
8302
9599
|
"optional": true,
|
|
8303
|
-
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
8304
9600
|
"type": {
|
|
8305
|
-
"
|
|
9601
|
+
"primitive": "number"
|
|
8306
9602
|
}
|
|
9603
|
+
}
|
|
9604
|
+
],
|
|
9605
|
+
"symbolId": "src/services/props/OperationAvailabilityMetricDetailsProps:OperationAvailabilityMetricDetailsProps"
|
|
9606
|
+
},
|
|
9607
|
+
"@cdklabs/multi-az-observability.OperationLatencyMetricDetails": {
|
|
9608
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
9609
|
+
"base": "@cdklabs/multi-az-observability.OperationMetricDetails",
|
|
9610
|
+
"docs": {
|
|
9611
|
+
"stability": "experimental",
|
|
9612
|
+
"summary": "Latency metric details for an operation."
|
|
9613
|
+
},
|
|
9614
|
+
"fqn": "@cdklabs/multi-az-observability.OperationLatencyMetricDetails",
|
|
9615
|
+
"initializer": {
|
|
9616
|
+
"docs": {
|
|
9617
|
+
"stability": "experimental"
|
|
8307
9618
|
},
|
|
9619
|
+
"locationInModule": {
|
|
9620
|
+
"filename": "src/services/OperationLatencyMetricDetails.ts",
|
|
9621
|
+
"line": 20
|
|
9622
|
+
},
|
|
9623
|
+
"parameters": [
|
|
9624
|
+
{
|
|
9625
|
+
"name": "props",
|
|
9626
|
+
"type": {
|
|
9627
|
+
"fqn": "@cdklabs/multi-az-observability.OperationLatencyMetricDetailsProps"
|
|
9628
|
+
}
|
|
9629
|
+
},
|
|
9630
|
+
{
|
|
9631
|
+
"name": "defaultProps",
|
|
9632
|
+
"type": {
|
|
9633
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceLatencyMetricDetails"
|
|
9634
|
+
}
|
|
9635
|
+
}
|
|
9636
|
+
]
|
|
9637
|
+
},
|
|
9638
|
+
"interfaces": [
|
|
9639
|
+
"@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
9640
|
+
],
|
|
9641
|
+
"kind": "class",
|
|
9642
|
+
"locationInModule": {
|
|
9643
|
+
"filename": "src/services/OperationLatencyMetricDetails.ts",
|
|
9644
|
+
"line": 12
|
|
9645
|
+
},
|
|
9646
|
+
"name": "OperationLatencyMetricDetails",
|
|
9647
|
+
"properties": [
|
|
8308
9648
|
{
|
|
8309
9649
|
"docs": {
|
|
8310
|
-
"default": "- The operation is not opted out",
|
|
8311
9650
|
"stability": "experimental",
|
|
8312
|
-
"summary": "
|
|
9651
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
8313
9652
|
},
|
|
8314
9653
|
"immutable": true,
|
|
8315
9654
|
"locationInModule": {
|
|
8316
|
-
"filename": "src/services/
|
|
8317
|
-
"line":
|
|
9655
|
+
"filename": "src/services/OperationLatencyMetricDetails.ts",
|
|
9656
|
+
"line": 18
|
|
8318
9657
|
},
|
|
8319
|
-
"name": "
|
|
8320
|
-
"
|
|
8321
|
-
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
9658
|
+
"name": "successAlarmThreshold",
|
|
9659
|
+
"overrides": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails",
|
|
8322
9660
|
"type": {
|
|
8323
|
-
"
|
|
9661
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
8324
9662
|
}
|
|
8325
|
-
}
|
|
9663
|
+
}
|
|
9664
|
+
],
|
|
9665
|
+
"symbolId": "src/services/OperationLatencyMetricDetails:OperationLatencyMetricDetails"
|
|
9666
|
+
},
|
|
9667
|
+
"@cdklabs/multi-az-observability.OperationLatencyMetricDetailsProps": {
|
|
9668
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
9669
|
+
"datatype": true,
|
|
9670
|
+
"docs": {
|
|
9671
|
+
"stability": "experimental",
|
|
9672
|
+
"summary": "The properties for an operation's latency metric details."
|
|
9673
|
+
},
|
|
9674
|
+
"fqn": "@cdklabs/multi-az-observability.OperationLatencyMetricDetailsProps",
|
|
9675
|
+
"interfaces": [
|
|
9676
|
+
"@cdklabs/multi-az-observability.OperationMetricDetailsProps"
|
|
9677
|
+
],
|
|
9678
|
+
"kind": "interface",
|
|
9679
|
+
"locationInModule": {
|
|
9680
|
+
"filename": "src/services/props/OperationLatencyMetricDetailsProps.ts",
|
|
9681
|
+
"line": 9
|
|
9682
|
+
},
|
|
9683
|
+
"name": "OperationLatencyMetricDetailsProps",
|
|
9684
|
+
"properties": [
|
|
8326
9685
|
{
|
|
9686
|
+
"abstract": true,
|
|
8327
9687
|
"docs": {
|
|
9688
|
+
"default": "\"The service default is used\"",
|
|
8328
9689
|
"stability": "experimental",
|
|
8329
|
-
"summary": "The
|
|
9690
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
8330
9691
|
},
|
|
8331
9692
|
"immutable": true,
|
|
8332
9693
|
"locationInModule": {
|
|
8333
|
-
"filename": "src/services/
|
|
8334
|
-
"line":
|
|
9694
|
+
"filename": "src/services/props/OperationLatencyMetricDetailsProps.ts",
|
|
9695
|
+
"line": 16
|
|
8335
9696
|
},
|
|
8336
|
-
"name": "
|
|
9697
|
+
"name": "successAlarmThreshold",
|
|
8337
9698
|
"optional": true,
|
|
8338
|
-
"overrides": "@cdklabs/multi-az-observability.IOperation",
|
|
8339
9699
|
"type": {
|
|
8340
|
-
"fqn": "
|
|
9700
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
8341
9701
|
}
|
|
8342
9702
|
}
|
|
8343
9703
|
],
|
|
8344
|
-
"symbolId": "src/services/
|
|
9704
|
+
"symbolId": "src/services/props/OperationLatencyMetricDetailsProps:OperationLatencyMetricDetailsProps"
|
|
8345
9705
|
},
|
|
8346
9706
|
"@cdklabs/multi-az-observability.OperationMetricDetails": {
|
|
9707
|
+
"abstract": true,
|
|
8347
9708
|
"assembly": "@cdklabs/multi-az-observability",
|
|
8348
9709
|
"docs": {
|
|
8349
9710
|
"stability": "experimental",
|
|
@@ -8356,7 +9717,7 @@
|
|
|
8356
9717
|
},
|
|
8357
9718
|
"locationInModule": {
|
|
8358
9719
|
"filename": "src/services/OperationMetricDetails.ts",
|
|
8359
|
-
"line":
|
|
9720
|
+
"line": 84
|
|
8360
9721
|
},
|
|
8361
9722
|
"parameters": [
|
|
8362
9723
|
{
|
|
@@ -8431,22 +9792,6 @@
|
|
|
8431
9792
|
"primitive": "number"
|
|
8432
9793
|
}
|
|
8433
9794
|
},
|
|
8434
|
-
{
|
|
8435
|
-
"docs": {
|
|
8436
|
-
"stability": "experimental",
|
|
8437
|
-
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
8438
|
-
},
|
|
8439
|
-
"immutable": true,
|
|
8440
|
-
"locationInModule": {
|
|
8441
|
-
"filename": "src/services/OperationMetricDetails.ts",
|
|
8442
|
-
"line": 90
|
|
8443
|
-
},
|
|
8444
|
-
"name": "faultAlarmThreshold",
|
|
8445
|
-
"overrides": "@cdklabs/multi-az-observability.IOperationMetricDetails",
|
|
8446
|
-
"type": {
|
|
8447
|
-
"primitive": "number"
|
|
8448
|
-
}
|
|
8449
|
-
},
|
|
8450
9795
|
{
|
|
8451
9796
|
"docs": {
|
|
8452
9797
|
"stability": "experimental",
|
|
@@ -8476,7 +9821,7 @@
|
|
|
8476
9821
|
"immutable": true,
|
|
8477
9822
|
"locationInModule": {
|
|
8478
9823
|
"filename": "src/services/OperationMetricDetails.ts",
|
|
8479
|
-
"line":
|
|
9824
|
+
"line": 82
|
|
8480
9825
|
},
|
|
8481
9826
|
"name": "metricDimensions",
|
|
8482
9827
|
"overrides": "@cdklabs/multi-az-observability.IOperationMetricDetails",
|
|
@@ -8532,22 +9877,6 @@
|
|
|
8532
9877
|
"fqn": "aws-cdk-lib.Duration"
|
|
8533
9878
|
}
|
|
8534
9879
|
},
|
|
8535
|
-
{
|
|
8536
|
-
"docs": {
|
|
8537
|
-
"stability": "experimental",
|
|
8538
|
-
"summary": "The threshold for alarms associated with success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
8539
|
-
},
|
|
8540
|
-
"immutable": true,
|
|
8541
|
-
"locationInModule": {
|
|
8542
|
-
"filename": "src/services/OperationMetricDetails.ts",
|
|
8543
|
-
"line": 83
|
|
8544
|
-
},
|
|
8545
|
-
"name": "successAlarmThreshold",
|
|
8546
|
-
"overrides": "@cdklabs/multi-az-observability.IOperationMetricDetails",
|
|
8547
|
-
"type": {
|
|
8548
|
-
"primitive": "number"
|
|
8549
|
-
}
|
|
8550
|
-
},
|
|
8551
9880
|
{
|
|
8552
9881
|
"docs": {
|
|
8553
9882
|
"stability": "experimental",
|
|
@@ -8660,7 +9989,7 @@
|
|
|
8660
9989
|
"immutable": true,
|
|
8661
9990
|
"locationInModule": {
|
|
8662
9991
|
"filename": "src/services/props/OperationMetricDetailsProps.ts",
|
|
8663
|
-
"line":
|
|
9992
|
+
"line": 94
|
|
8664
9993
|
},
|
|
8665
9994
|
"name": "metricDimensions",
|
|
8666
9995
|
"type": {
|
|
@@ -8737,24 +10066,6 @@
|
|
|
8737
10066
|
"primitive": "number"
|
|
8738
10067
|
}
|
|
8739
10068
|
},
|
|
8740
|
-
{
|
|
8741
|
-
"abstract": true,
|
|
8742
|
-
"docs": {
|
|
8743
|
-
"default": "- The service default is used",
|
|
8744
|
-
"stability": "experimental",
|
|
8745
|
-
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
8746
|
-
},
|
|
8747
|
-
"immutable": true,
|
|
8748
|
-
"locationInModule": {
|
|
8749
|
-
"filename": "src/services/props/OperationMetricDetailsProps.ts",
|
|
8750
|
-
"line": 107
|
|
8751
|
-
},
|
|
8752
|
-
"name": "faultAlarmThreshold",
|
|
8753
|
-
"optional": true,
|
|
8754
|
-
"type": {
|
|
8755
|
-
"primitive": "number"
|
|
8756
|
-
}
|
|
8757
|
-
},
|
|
8758
10069
|
{
|
|
8759
10070
|
"abstract": true,
|
|
8760
10071
|
"docs": {
|
|
@@ -8862,24 +10173,6 @@
|
|
|
8862
10173
|
"fqn": "aws-cdk-lib.Duration"
|
|
8863
10174
|
}
|
|
8864
10175
|
},
|
|
8865
|
-
{
|
|
8866
|
-
"abstract": true,
|
|
8867
|
-
"docs": {
|
|
8868
|
-
"default": "- The service default is used",
|
|
8869
|
-
"stability": "experimental",
|
|
8870
|
-
"summary": "The threshold for alarms associated with success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
8871
|
-
},
|
|
8872
|
-
"immutable": true,
|
|
8873
|
-
"locationInModule": {
|
|
8874
|
-
"filename": "src/services/props/OperationMetricDetailsProps.ts",
|
|
8875
|
-
"line": 98
|
|
8876
|
-
},
|
|
8877
|
-
"name": "successAlarmThreshold",
|
|
8878
|
-
"optional": true,
|
|
8879
|
-
"type": {
|
|
8880
|
-
"primitive": "number"
|
|
8881
|
-
}
|
|
8882
|
-
},
|
|
8883
10176
|
{
|
|
8884
10177
|
"abstract": true,
|
|
8885
10178
|
"docs": {
|
|
@@ -8935,7 +10228,7 @@
|
|
|
8935
10228
|
"kind": "interface",
|
|
8936
10229
|
"locationInModule": {
|
|
8937
10230
|
"filename": "src/services/props/OperationProps.ts",
|
|
8938
|
-
"line":
|
|
10231
|
+
"line": 14
|
|
8939
10232
|
},
|
|
8940
10233
|
"name": "OperationProps",
|
|
8941
10234
|
"properties": [
|
|
@@ -8948,7 +10241,7 @@
|
|
|
8948
10241
|
"immutable": true,
|
|
8949
10242
|
"locationInModule": {
|
|
8950
10243
|
"filename": "src/services/props/OperationProps.ts",
|
|
8951
|
-
"line":
|
|
10244
|
+
"line": 85
|
|
8952
10245
|
},
|
|
8953
10246
|
"name": "critical",
|
|
8954
10247
|
"type": {
|
|
@@ -8964,7 +10257,7 @@
|
|
|
8964
10257
|
"immutable": true,
|
|
8965
10258
|
"locationInModule": {
|
|
8966
10259
|
"filename": "src/services/props/OperationProps.ts",
|
|
8967
|
-
"line":
|
|
10260
|
+
"line": 108
|
|
8968
10261
|
},
|
|
8969
10262
|
"name": "httpMethods",
|
|
8970
10263
|
"type": {
|
|
@@ -8985,7 +10278,7 @@
|
|
|
8985
10278
|
"immutable": true,
|
|
8986
10279
|
"locationInModule": {
|
|
8987
10280
|
"filename": "src/services/props/OperationProps.ts",
|
|
8988
|
-
"line":
|
|
10281
|
+
"line": 23
|
|
8989
10282
|
},
|
|
8990
10283
|
"name": "operationName",
|
|
8991
10284
|
"type": {
|
|
@@ -9001,7 +10294,7 @@
|
|
|
9001
10294
|
"immutable": true,
|
|
9002
10295
|
"locationInModule": {
|
|
9003
10296
|
"filename": "src/services/props/OperationProps.ts",
|
|
9004
|
-
"line":
|
|
10297
|
+
"line": 29
|
|
9005
10298
|
},
|
|
9006
10299
|
"name": "path",
|
|
9007
10300
|
"type": {
|
|
@@ -9017,11 +10310,11 @@
|
|
|
9017
10310
|
"immutable": true,
|
|
9018
10311
|
"locationInModule": {
|
|
9019
10312
|
"filename": "src/services/props/OperationProps.ts",
|
|
9020
|
-
"line":
|
|
10313
|
+
"line": 34
|
|
9021
10314
|
},
|
|
9022
10315
|
"name": "serverSideAvailabilityMetricDetails",
|
|
9023
10316
|
"type": {
|
|
9024
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
10317
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationAvailabilityMetricDetails"
|
|
9025
10318
|
}
|
|
9026
10319
|
},
|
|
9027
10320
|
{
|
|
@@ -9033,11 +10326,11 @@
|
|
|
9033
10326
|
"immutable": true,
|
|
9034
10327
|
"locationInModule": {
|
|
9035
10328
|
"filename": "src/services/props/OperationProps.ts",
|
|
9036
|
-
"line":
|
|
10329
|
+
"line": 39
|
|
9037
10330
|
},
|
|
9038
10331
|
"name": "serverSideLatencyMetricDetails",
|
|
9039
10332
|
"type": {
|
|
9040
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
10333
|
+
"fqn": "@cdklabs/multi-az-observability.IOperationLatencyMetricDetails"
|
|
9041
10334
|
}
|
|
9042
10335
|
},
|
|
9043
10336
|
{
|
|
@@ -9049,7 +10342,7 @@
|
|
|
9049
10342
|
"immutable": true,
|
|
9050
10343
|
"locationInModule": {
|
|
9051
10344
|
"filename": "src/services/props/OperationProps.ts",
|
|
9052
|
-
"line":
|
|
10345
|
+
"line": 18
|
|
9053
10346
|
},
|
|
9054
10347
|
"name": "service",
|
|
9055
10348
|
"type": {
|
|
@@ -9066,7 +10359,7 @@
|
|
|
9066
10359
|
"immutable": true,
|
|
9067
10360
|
"locationInModule": {
|
|
9068
10361
|
"filename": "src/services/props/OperationProps.ts",
|
|
9069
|
-
"line":
|
|
10362
|
+
"line": 47
|
|
9070
10363
|
},
|
|
9071
10364
|
"name": "canaryMetricDetails",
|
|
9072
10365
|
"optional": true,
|
|
@@ -9084,7 +10377,7 @@
|
|
|
9084
10377
|
"immutable": true,
|
|
9085
10378
|
"locationInModule": {
|
|
9086
10379
|
"filename": "src/services/props/OperationProps.ts",
|
|
9087
|
-
"line":
|
|
10380
|
+
"line": 57
|
|
9088
10381
|
},
|
|
9089
10382
|
"name": "canaryTestAvailabilityMetricsOverride",
|
|
9090
10383
|
"optional": true,
|
|
@@ -9102,7 +10395,7 @@
|
|
|
9102
10395
|
"immutable": true,
|
|
9103
10396
|
"locationInModule": {
|
|
9104
10397
|
"filename": "src/services/props/OperationProps.ts",
|
|
9105
|
-
"line":
|
|
10398
|
+
"line": 67
|
|
9106
10399
|
},
|
|
9107
10400
|
"name": "canaryTestLatencyMetricsOverride",
|
|
9108
10401
|
"optional": true,
|
|
@@ -9120,7 +10413,7 @@
|
|
|
9120
10413
|
"immutable": true,
|
|
9121
10414
|
"locationInModule": {
|
|
9122
10415
|
"filename": "src/services/props/OperationProps.ts",
|
|
9123
|
-
"line":
|
|
10416
|
+
"line": 94
|
|
9124
10417
|
},
|
|
9125
10418
|
"name": "canaryTestProps",
|
|
9126
10419
|
"optional": true,
|
|
@@ -9138,7 +10431,7 @@
|
|
|
9138
10431
|
"immutable": true,
|
|
9139
10432
|
"locationInModule": {
|
|
9140
10433
|
"filename": "src/services/props/OperationProps.ts",
|
|
9141
|
-
"line":
|
|
10434
|
+
"line": 103
|
|
9142
10435
|
},
|
|
9143
10436
|
"name": "optOutOfServiceCreatedCanary",
|
|
9144
10437
|
"optional": true,
|
|
@@ -9156,7 +10449,7 @@
|
|
|
9156
10449
|
"immutable": true,
|
|
9157
10450
|
"locationInModule": {
|
|
9158
10451
|
"filename": "src/services/props/OperationProps.ts",
|
|
9159
|
-
"line":
|
|
10452
|
+
"line": 78
|
|
9160
10453
|
},
|
|
9161
10454
|
"name": "serverSideContributorInsightRuleDetails",
|
|
9162
10455
|
"optional": true,
|
|
@@ -9224,6 +10517,30 @@
|
|
|
9224
10517
|
"name": "OutlierDetectionAlgorithm",
|
|
9225
10518
|
"symbolId": "src/utilities/OutlierDetectionAlgorithm:OutlierDetectionAlgorithm"
|
|
9226
10519
|
},
|
|
10520
|
+
"@cdklabs/multi-az-observability.PacketLossOutlierAlgorithm": {
|
|
10521
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
10522
|
+
"docs": {
|
|
10523
|
+
"stability": "experimental",
|
|
10524
|
+
"summary": "The options for calculating if a NAT Gateway is an outlier for packet loss."
|
|
10525
|
+
},
|
|
10526
|
+
"fqn": "@cdklabs/multi-az-observability.PacketLossOutlierAlgorithm",
|
|
10527
|
+
"kind": "enum",
|
|
10528
|
+
"locationInModule": {
|
|
10529
|
+
"filename": "src/outlier-detection/PacketLossOutlierAlgorithm.ts",
|
|
10530
|
+
"line": 4
|
|
10531
|
+
},
|
|
10532
|
+
"members": [
|
|
10533
|
+
{
|
|
10534
|
+
"docs": {
|
|
10535
|
+
"stability": "experimental",
|
|
10536
|
+
"summary": "This will take the availability threshold and calculate if one AZ is responsible for that percentage of packet loss."
|
|
10537
|
+
},
|
|
10538
|
+
"name": "STATIC"
|
|
10539
|
+
}
|
|
10540
|
+
],
|
|
10541
|
+
"name": "PacketLossOutlierAlgorithm",
|
|
10542
|
+
"symbolId": "src/outlier-detection/PacketLossOutlierAlgorithm:PacketLossOutlierAlgorithm"
|
|
10543
|
+
},
|
|
9227
10544
|
"@cdklabs/multi-az-observability.Service": {
|
|
9228
10545
|
"assembly": "@cdklabs/multi-az-observability",
|
|
9229
10546
|
"docs": {
|
|
@@ -9237,7 +10554,7 @@
|
|
|
9237
10554
|
},
|
|
9238
10555
|
"locationInModule": {
|
|
9239
10556
|
"filename": "src/services/Service.ts",
|
|
9240
|
-
"line":
|
|
10557
|
+
"line": 89
|
|
9241
10558
|
},
|
|
9242
10559
|
"parameters": [
|
|
9243
10560
|
{
|
|
@@ -9254,7 +10571,7 @@
|
|
|
9254
10571
|
"kind": "class",
|
|
9255
10572
|
"locationInModule": {
|
|
9256
10573
|
"filename": "src/services/Service.ts",
|
|
9257
|
-
"line":
|
|
10574
|
+
"line": 16
|
|
9258
10575
|
},
|
|
9259
10576
|
"methods": [
|
|
9260
10577
|
{
|
|
@@ -9264,7 +10581,7 @@
|
|
|
9264
10581
|
},
|
|
9265
10582
|
"locationInModule": {
|
|
9266
10583
|
"filename": "src/services/Service.ts",
|
|
9267
|
-
"line":
|
|
10584
|
+
"line": 109
|
|
9268
10585
|
},
|
|
9269
10586
|
"name": "addOperation",
|
|
9270
10587
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9288,7 +10605,7 @@
|
|
|
9288
10605
|
"immutable": true,
|
|
9289
10606
|
"locationInModule": {
|
|
9290
10607
|
"filename": "src/services/Service.ts",
|
|
9291
|
-
"line":
|
|
10608
|
+
"line": 36
|
|
9292
10609
|
},
|
|
9293
10610
|
"name": "availabilityZoneNames",
|
|
9294
10611
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9309,7 +10626,7 @@
|
|
|
9309
10626
|
"immutable": true,
|
|
9310
10627
|
"locationInModule": {
|
|
9311
10628
|
"filename": "src/services/Service.ts",
|
|
9312
|
-
"line":
|
|
10629
|
+
"line": 25
|
|
9313
10630
|
},
|
|
9314
10631
|
"name": "baseUrl",
|
|
9315
10632
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9325,12 +10642,12 @@
|
|
|
9325
10642
|
"immutable": true,
|
|
9326
10643
|
"locationInModule": {
|
|
9327
10644
|
"filename": "src/services/Service.ts",
|
|
9328
|
-
"line":
|
|
10645
|
+
"line": 72
|
|
9329
10646
|
},
|
|
9330
10647
|
"name": "defaultAvailabilityMetricDetails",
|
|
9331
10648
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
9332
10649
|
"type": {
|
|
9333
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
10650
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails"
|
|
9334
10651
|
}
|
|
9335
10652
|
},
|
|
9336
10653
|
{
|
|
@@ -9341,12 +10658,12 @@
|
|
|
9341
10658
|
"immutable": true,
|
|
9342
10659
|
"locationInModule": {
|
|
9343
10660
|
"filename": "src/services/Service.ts",
|
|
9344
|
-
"line":
|
|
10661
|
+
"line": 79
|
|
9345
10662
|
},
|
|
9346
10663
|
"name": "defaultLatencyMetricDetails",
|
|
9347
10664
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
9348
10665
|
"type": {
|
|
9349
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
10666
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceLatencyMetricDetails"
|
|
9350
10667
|
}
|
|
9351
10668
|
},
|
|
9352
10669
|
{
|
|
@@ -9358,7 +10675,7 @@
|
|
|
9358
10675
|
"immutable": true,
|
|
9359
10676
|
"locationInModule": {
|
|
9360
10677
|
"filename": "src/services/Service.ts",
|
|
9361
|
-
"line":
|
|
10678
|
+
"line": 31
|
|
9362
10679
|
},
|
|
9363
10680
|
"name": "faultCountThreshold",
|
|
9364
10681
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9374,7 +10691,7 @@
|
|
|
9374
10691
|
"immutable": true,
|
|
9375
10692
|
"locationInModule": {
|
|
9376
10693
|
"filename": "src/services/Service.ts",
|
|
9377
|
-
"line":
|
|
10694
|
+
"line": 46
|
|
9378
10695
|
},
|
|
9379
10696
|
"name": "operations",
|
|
9380
10697
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9395,7 +10712,7 @@
|
|
|
9395
10712
|
"immutable": true,
|
|
9396
10713
|
"locationInModule": {
|
|
9397
10714
|
"filename": "src/services/Service.ts",
|
|
9398
|
-
"line":
|
|
10715
|
+
"line": 41
|
|
9399
10716
|
},
|
|
9400
10717
|
"name": "period",
|
|
9401
10718
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9411,7 +10728,7 @@
|
|
|
9411
10728
|
"immutable": true,
|
|
9412
10729
|
"locationInModule": {
|
|
9413
10730
|
"filename": "src/services/Service.ts",
|
|
9414
|
-
"line":
|
|
10731
|
+
"line": 20
|
|
9415
10732
|
},
|
|
9416
10733
|
"name": "serviceName",
|
|
9417
10734
|
"overrides": "@cdklabs/multi-az-observability.IService",
|
|
@@ -9429,7 +10746,7 @@
|
|
|
9429
10746
|
"immutable": true,
|
|
9430
10747
|
"locationInModule": {
|
|
9431
10748
|
"filename": "src/services/Service.ts",
|
|
9432
|
-
"line":
|
|
10749
|
+
"line": 65
|
|
9433
10750
|
},
|
|
9434
10751
|
"name": "canaryTestProps",
|
|
9435
10752
|
"optional": true,
|
|
@@ -9447,7 +10764,7 @@
|
|
|
9447
10764
|
"immutable": true,
|
|
9448
10765
|
"locationInModule": {
|
|
9449
10766
|
"filename": "src/services/Service.ts",
|
|
9450
|
-
"line":
|
|
10767
|
+
"line": 87
|
|
9451
10768
|
},
|
|
9452
10769
|
"name": "defaultContributorInsightRuleDetails",
|
|
9453
10770
|
"optional": true,
|
|
@@ -9465,7 +10782,7 @@
|
|
|
9465
10782
|
"immutable": true,
|
|
9466
10783
|
"locationInModule": {
|
|
9467
10784
|
"filename": "src/services/Service.ts",
|
|
9468
|
-
"line":
|
|
10785
|
+
"line": 55
|
|
9469
10786
|
},
|
|
9470
10787
|
"name": "loadBalancer",
|
|
9471
10788
|
"optional": true,
|
|
@@ -9477,7 +10794,222 @@
|
|
|
9477
10794
|
],
|
|
9478
10795
|
"symbolId": "src/services/Service:Service"
|
|
9479
10796
|
},
|
|
10797
|
+
"@cdklabs/multi-az-observability.ServiceAvailabilityMetricDetails": {
|
|
10798
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
10799
|
+
"base": "@cdklabs/multi-az-observability.ServiceMetricDetails",
|
|
10800
|
+
"docs": {
|
|
10801
|
+
"stability": "experimental",
|
|
10802
|
+
"summary": "Default availability metric details for a service."
|
|
10803
|
+
},
|
|
10804
|
+
"fqn": "@cdklabs/multi-az-observability.ServiceAvailabilityMetricDetails",
|
|
10805
|
+
"initializer": {
|
|
10806
|
+
"docs": {
|
|
10807
|
+
"stability": "experimental"
|
|
10808
|
+
},
|
|
10809
|
+
"locationInModule": {
|
|
10810
|
+
"filename": "src/services/ServiceAvailabilityMetricDetails.ts",
|
|
10811
|
+
"line": 25
|
|
10812
|
+
},
|
|
10813
|
+
"parameters": [
|
|
10814
|
+
{
|
|
10815
|
+
"name": "props",
|
|
10816
|
+
"type": {
|
|
10817
|
+
"fqn": "@cdklabs/multi-az-observability.ServiceAvailabilityMetricDetailsProps"
|
|
10818
|
+
}
|
|
10819
|
+
}
|
|
10820
|
+
]
|
|
10821
|
+
},
|
|
10822
|
+
"interfaces": [
|
|
10823
|
+
"@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails"
|
|
10824
|
+
],
|
|
10825
|
+
"kind": "class",
|
|
10826
|
+
"locationInModule": {
|
|
10827
|
+
"filename": "src/services/ServiceAvailabilityMetricDetails.ts",
|
|
10828
|
+
"line": 10
|
|
10829
|
+
},
|
|
10830
|
+
"name": "ServiceAvailabilityMetricDetails",
|
|
10831
|
+
"properties": [
|
|
10832
|
+
{
|
|
10833
|
+
"docs": {
|
|
10834
|
+
"stability": "experimental",
|
|
10835
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
10836
|
+
},
|
|
10837
|
+
"immutable": true,
|
|
10838
|
+
"locationInModule": {
|
|
10839
|
+
"filename": "src/services/ServiceAvailabilityMetricDetails.ts",
|
|
10840
|
+
"line": 23
|
|
10841
|
+
},
|
|
10842
|
+
"name": "faultAlarmThreshold",
|
|
10843
|
+
"overrides": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails",
|
|
10844
|
+
"type": {
|
|
10845
|
+
"primitive": "number"
|
|
10846
|
+
}
|
|
10847
|
+
},
|
|
10848
|
+
{
|
|
10849
|
+
"docs": {
|
|
10850
|
+
"stability": "experimental",
|
|
10851
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
10852
|
+
},
|
|
10853
|
+
"immutable": true,
|
|
10854
|
+
"locationInModule": {
|
|
10855
|
+
"filename": "src/services/ServiceAvailabilityMetricDetails.ts",
|
|
10856
|
+
"line": 16
|
|
10857
|
+
},
|
|
10858
|
+
"name": "successAlarmThreshold",
|
|
10859
|
+
"overrides": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails",
|
|
10860
|
+
"type": {
|
|
10861
|
+
"primitive": "number"
|
|
10862
|
+
}
|
|
10863
|
+
}
|
|
10864
|
+
],
|
|
10865
|
+
"symbolId": "src/services/ServiceAvailabilityMetricDetails:ServiceAvailabilityMetricDetails"
|
|
10866
|
+
},
|
|
10867
|
+
"@cdklabs/multi-az-observability.ServiceAvailabilityMetricDetailsProps": {
|
|
10868
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
10869
|
+
"datatype": true,
|
|
10870
|
+
"docs": {
|
|
10871
|
+
"stability": "experimental",
|
|
10872
|
+
"summary": "Props for service availability metrics."
|
|
10873
|
+
},
|
|
10874
|
+
"fqn": "@cdklabs/multi-az-observability.ServiceAvailabilityMetricDetailsProps",
|
|
10875
|
+
"interfaces": [
|
|
10876
|
+
"@cdklabs/multi-az-observability.ServiceMetricDetailsProps"
|
|
10877
|
+
],
|
|
10878
|
+
"kind": "interface",
|
|
10879
|
+
"locationInModule": {
|
|
10880
|
+
"filename": "src/services/props/ServiceAvailabilityMetricDetailsProps.ts",
|
|
10881
|
+
"line": 8
|
|
10882
|
+
},
|
|
10883
|
+
"name": "ServiceAvailabilityMetricDetailsProps",
|
|
10884
|
+
"properties": [
|
|
10885
|
+
{
|
|
10886
|
+
"abstract": true,
|
|
10887
|
+
"docs": {
|
|
10888
|
+
"stability": "experimental",
|
|
10889
|
+
"summary": "The threshold for alarms associated with availability fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
10890
|
+
},
|
|
10891
|
+
"immutable": true,
|
|
10892
|
+
"locationInModule": {
|
|
10893
|
+
"filename": "src/services/props/ServiceAvailabilityMetricDetailsProps.ts",
|
|
10894
|
+
"line": 21
|
|
10895
|
+
},
|
|
10896
|
+
"name": "faultAlarmThreshold",
|
|
10897
|
+
"type": {
|
|
10898
|
+
"primitive": "number"
|
|
10899
|
+
}
|
|
10900
|
+
},
|
|
10901
|
+
{
|
|
10902
|
+
"abstract": true,
|
|
10903
|
+
"docs": {
|
|
10904
|
+
"stability": "experimental",
|
|
10905
|
+
"summary": "The threshold for alarms associated with availability success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
10906
|
+
},
|
|
10907
|
+
"immutable": true,
|
|
10908
|
+
"locationInModule": {
|
|
10909
|
+
"filename": "src/services/props/ServiceAvailabilityMetricDetailsProps.ts",
|
|
10910
|
+
"line": 14
|
|
10911
|
+
},
|
|
10912
|
+
"name": "successAlarmThreshold",
|
|
10913
|
+
"type": {
|
|
10914
|
+
"primitive": "number"
|
|
10915
|
+
}
|
|
10916
|
+
}
|
|
10917
|
+
],
|
|
10918
|
+
"symbolId": "src/services/props/ServiceAvailabilityMetricDetailsProps:ServiceAvailabilityMetricDetailsProps"
|
|
10919
|
+
},
|
|
10920
|
+
"@cdklabs/multi-az-observability.ServiceLatencyMetricDetails": {
|
|
10921
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
10922
|
+
"base": "@cdklabs/multi-az-observability.ServiceMetricDetails",
|
|
10923
|
+
"docs": {
|
|
10924
|
+
"stability": "experimental",
|
|
10925
|
+
"summary": "Default latency metric details for a service."
|
|
10926
|
+
},
|
|
10927
|
+
"fqn": "@cdklabs/multi-az-observability.ServiceLatencyMetricDetails",
|
|
10928
|
+
"initializer": {
|
|
10929
|
+
"docs": {
|
|
10930
|
+
"stability": "experimental"
|
|
10931
|
+
},
|
|
10932
|
+
"locationInModule": {
|
|
10933
|
+
"filename": "src/services/ServiceLatencyMetricDetails.ts",
|
|
10934
|
+
"line": 18
|
|
10935
|
+
},
|
|
10936
|
+
"parameters": [
|
|
10937
|
+
{
|
|
10938
|
+
"name": "props",
|
|
10939
|
+
"type": {
|
|
10940
|
+
"fqn": "@cdklabs/multi-az-observability.ServiceLatencyMetricDetailsProps"
|
|
10941
|
+
}
|
|
10942
|
+
}
|
|
10943
|
+
]
|
|
10944
|
+
},
|
|
10945
|
+
"interfaces": [
|
|
10946
|
+
"@cdklabs/multi-az-observability.IServiceLatencyMetricDetails"
|
|
10947
|
+
],
|
|
10948
|
+
"kind": "class",
|
|
10949
|
+
"locationInModule": {
|
|
10950
|
+
"filename": "src/services/ServiceLatencyMetricDetails.ts",
|
|
10951
|
+
"line": 11
|
|
10952
|
+
},
|
|
10953
|
+
"name": "ServiceLatencyMetricDetails",
|
|
10954
|
+
"properties": [
|
|
10955
|
+
{
|
|
10956
|
+
"docs": {
|
|
10957
|
+
"stability": "experimental",
|
|
10958
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
10959
|
+
},
|
|
10960
|
+
"immutable": true,
|
|
10961
|
+
"locationInModule": {
|
|
10962
|
+
"filename": "src/services/ServiceLatencyMetricDetails.ts",
|
|
10963
|
+
"line": 16
|
|
10964
|
+
},
|
|
10965
|
+
"name": "successAlarmThreshold",
|
|
10966
|
+
"overrides": "@cdklabs/multi-az-observability.IServiceLatencyMetricDetails",
|
|
10967
|
+
"type": {
|
|
10968
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
10969
|
+
}
|
|
10970
|
+
}
|
|
10971
|
+
],
|
|
10972
|
+
"symbolId": "src/services/ServiceLatencyMetricDetails:ServiceLatencyMetricDetails"
|
|
10973
|
+
},
|
|
10974
|
+
"@cdklabs/multi-az-observability.ServiceLatencyMetricDetailsProps": {
|
|
10975
|
+
"assembly": "@cdklabs/multi-az-observability",
|
|
10976
|
+
"datatype": true,
|
|
10977
|
+
"docs": {
|
|
10978
|
+
"stability": "experimental",
|
|
10979
|
+
"summary": "Props for service latency metrics."
|
|
10980
|
+
},
|
|
10981
|
+
"fqn": "@cdklabs/multi-az-observability.ServiceLatencyMetricDetailsProps",
|
|
10982
|
+
"interfaces": [
|
|
10983
|
+
"@cdklabs/multi-az-observability.ServiceMetricDetailsProps"
|
|
10984
|
+
],
|
|
10985
|
+
"kind": "interface",
|
|
10986
|
+
"locationInModule": {
|
|
10987
|
+
"filename": "src/services/props/ServiceLatencyMetricDetailsProps.ts",
|
|
10988
|
+
"line": 9
|
|
10989
|
+
},
|
|
10990
|
+
"name": "ServiceLatencyMetricDetailsProps",
|
|
10991
|
+
"properties": [
|
|
10992
|
+
{
|
|
10993
|
+
"abstract": true,
|
|
10994
|
+
"docs": {
|
|
10995
|
+
"stability": "experimental",
|
|
10996
|
+
"summary": "The threshold for alarms associated with latency success metrics, for example if success latency exceeds 500 milliseconds."
|
|
10997
|
+
},
|
|
10998
|
+
"immutable": true,
|
|
10999
|
+
"locationInModule": {
|
|
11000
|
+
"filename": "src/services/props/ServiceLatencyMetricDetailsProps.ts",
|
|
11001
|
+
"line": 14
|
|
11002
|
+
},
|
|
11003
|
+
"name": "successAlarmThreshold",
|
|
11004
|
+
"type": {
|
|
11005
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
11006
|
+
}
|
|
11007
|
+
}
|
|
11008
|
+
],
|
|
11009
|
+
"symbolId": "src/services/props/ServiceLatencyMetricDetailsProps:ServiceLatencyMetricDetailsProps"
|
|
11010
|
+
},
|
|
9480
11011
|
"@cdklabs/multi-az-observability.ServiceMetricDetails": {
|
|
11012
|
+
"abstract": true,
|
|
9481
11013
|
"assembly": "@cdklabs/multi-az-observability",
|
|
9482
11014
|
"docs": {
|
|
9483
11015
|
"stability": "experimental",
|
|
@@ -9490,7 +11022,7 @@
|
|
|
9490
11022
|
},
|
|
9491
11023
|
"locationInModule": {
|
|
9492
11024
|
"filename": "src/services/ServiceMetricDetails.ts",
|
|
9493
|
-
"line":
|
|
11025
|
+
"line": 71
|
|
9494
11026
|
},
|
|
9495
11027
|
"parameters": [
|
|
9496
11028
|
{
|
|
@@ -9559,22 +11091,6 @@
|
|
|
9559
11091
|
"primitive": "number"
|
|
9560
11092
|
}
|
|
9561
11093
|
},
|
|
9562
|
-
{
|
|
9563
|
-
"docs": {
|
|
9564
|
-
"stability": "experimental",
|
|
9565
|
-
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
9566
|
-
},
|
|
9567
|
-
"immutable": true,
|
|
9568
|
-
"locationInModule": {
|
|
9569
|
-
"filename": "src/services/ServiceMetricDetails.ts",
|
|
9570
|
-
"line": 83
|
|
9571
|
-
},
|
|
9572
|
-
"name": "faultAlarmThreshold",
|
|
9573
|
-
"overrides": "@cdklabs/multi-az-observability.IServiceMetricDetails",
|
|
9574
|
-
"type": {
|
|
9575
|
-
"primitive": "number"
|
|
9576
|
-
}
|
|
9577
|
-
},
|
|
9578
11094
|
{
|
|
9579
11095
|
"docs": {
|
|
9580
11096
|
"stability": "experimental",
|
|
@@ -9628,22 +11144,6 @@
|
|
|
9628
11144
|
"fqn": "aws-cdk-lib.Duration"
|
|
9629
11145
|
}
|
|
9630
11146
|
},
|
|
9631
|
-
{
|
|
9632
|
-
"docs": {
|
|
9633
|
-
"stability": "experimental",
|
|
9634
|
-
"summary": "The threshold for alarms associated with success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
9635
|
-
},
|
|
9636
|
-
"immutable": true,
|
|
9637
|
-
"locationInModule": {
|
|
9638
|
-
"filename": "src/services/ServiceMetricDetails.ts",
|
|
9639
|
-
"line": 76
|
|
9640
|
-
},
|
|
9641
|
-
"name": "successAlarmThreshold",
|
|
9642
|
-
"overrides": "@cdklabs/multi-az-observability.IServiceMetricDetails",
|
|
9643
|
-
"type": {
|
|
9644
|
-
"primitive": "number"
|
|
9645
|
-
}
|
|
9646
|
-
},
|
|
9647
11147
|
{
|
|
9648
11148
|
"docs": {
|
|
9649
11149
|
"stability": "experimental",
|
|
@@ -9795,22 +11295,6 @@
|
|
|
9795
11295
|
"primitive": "number"
|
|
9796
11296
|
}
|
|
9797
11297
|
},
|
|
9798
|
-
{
|
|
9799
|
-
"abstract": true,
|
|
9800
|
-
"docs": {
|
|
9801
|
-
"stability": "experimental",
|
|
9802
|
-
"summary": "The threshold for alarms associated with fault metrics, for example if measuring fault rate, the threshold may be 1, meaning you would want an alarm that triggers if the fault rate goes above 1%."
|
|
9803
|
-
},
|
|
9804
|
-
"immutable": true,
|
|
9805
|
-
"locationInModule": {
|
|
9806
|
-
"filename": "src/services/props/ServiceMetricDetailsProps.ts",
|
|
9807
|
-
"line": 81
|
|
9808
|
-
},
|
|
9809
|
-
"name": "faultAlarmThreshold",
|
|
9810
|
-
"type": {
|
|
9811
|
-
"primitive": "number"
|
|
9812
|
-
}
|
|
9813
|
-
},
|
|
9814
11298
|
{
|
|
9815
11299
|
"abstract": true,
|
|
9816
11300
|
"docs": {
|
|
@@ -9864,22 +11348,6 @@
|
|
|
9864
11348
|
"fqn": "aws-cdk-lib.Duration"
|
|
9865
11349
|
}
|
|
9866
11350
|
},
|
|
9867
|
-
{
|
|
9868
|
-
"abstract": true,
|
|
9869
|
-
"docs": {
|
|
9870
|
-
"stability": "experimental",
|
|
9871
|
-
"summary": "The threshold for alarms associated with success metrics, for example if measuring success rate, the threshold may be 99, meaning you would want an alarm that triggers if success drops below 99%."
|
|
9872
|
-
},
|
|
9873
|
-
"immutable": true,
|
|
9874
|
-
"locationInModule": {
|
|
9875
|
-
"filename": "src/services/props/ServiceMetricDetailsProps.ts",
|
|
9876
|
-
"line": 74
|
|
9877
|
-
},
|
|
9878
|
-
"name": "successAlarmThreshold",
|
|
9879
|
-
"type": {
|
|
9880
|
-
"primitive": "number"
|
|
9881
|
-
}
|
|
9882
|
-
},
|
|
9883
11351
|
{
|
|
9884
11352
|
"abstract": true,
|
|
9885
11353
|
"docs": {
|
|
@@ -9979,7 +11447,7 @@
|
|
|
9979
11447
|
"kind": "interface",
|
|
9980
11448
|
"locationInModule": {
|
|
9981
11449
|
"filename": "src/services/props/ServiceProps.ts",
|
|
9982
|
-
"line":
|
|
11450
|
+
"line": 13
|
|
9983
11451
|
},
|
|
9984
11452
|
"name": "ServiceProps",
|
|
9985
11453
|
"properties": [
|
|
@@ -9992,7 +11460,7 @@
|
|
|
9992
11460
|
"immutable": true,
|
|
9993
11461
|
"locationInModule": {
|
|
9994
11462
|
"filename": "src/services/props/ServiceProps.ts",
|
|
9995
|
-
"line":
|
|
11463
|
+
"line": 34
|
|
9996
11464
|
},
|
|
9997
11465
|
"name": "availabilityZoneNames",
|
|
9998
11466
|
"type": {
|
|
@@ -10013,7 +11481,7 @@
|
|
|
10013
11481
|
"immutable": true,
|
|
10014
11482
|
"locationInModule": {
|
|
10015
11483
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10016
|
-
"line":
|
|
11484
|
+
"line": 23
|
|
10017
11485
|
},
|
|
10018
11486
|
"name": "baseUrl",
|
|
10019
11487
|
"type": {
|
|
@@ -10029,11 +11497,11 @@
|
|
|
10029
11497
|
"immutable": true,
|
|
10030
11498
|
"locationInModule": {
|
|
10031
11499
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10032
|
-
"line":
|
|
11500
|
+
"line": 65
|
|
10033
11501
|
},
|
|
10034
11502
|
"name": "defaultAvailabilityMetricDetails",
|
|
10035
11503
|
"type": {
|
|
10036
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
11504
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceAvailabilityMetricDetails"
|
|
10037
11505
|
}
|
|
10038
11506
|
},
|
|
10039
11507
|
{
|
|
@@ -10045,11 +11513,11 @@
|
|
|
10045
11513
|
"immutable": true,
|
|
10046
11514
|
"locationInModule": {
|
|
10047
11515
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10048
|
-
"line":
|
|
11516
|
+
"line": 72
|
|
10049
11517
|
},
|
|
10050
11518
|
"name": "defaultLatencyMetricDetails",
|
|
10051
11519
|
"type": {
|
|
10052
|
-
"fqn": "@cdklabs/multi-az-observability.
|
|
11520
|
+
"fqn": "@cdklabs/multi-az-observability.IServiceLatencyMetricDetails"
|
|
10053
11521
|
}
|
|
10054
11522
|
},
|
|
10055
11523
|
{
|
|
@@ -10062,7 +11530,7 @@
|
|
|
10062
11530
|
"immutable": true,
|
|
10063
11531
|
"locationInModule": {
|
|
10064
11532
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10065
|
-
"line":
|
|
11533
|
+
"line": 29
|
|
10066
11534
|
},
|
|
10067
11535
|
"name": "faultCountThreshold",
|
|
10068
11536
|
"type": {
|
|
@@ -10078,7 +11546,7 @@
|
|
|
10078
11546
|
"immutable": true,
|
|
10079
11547
|
"locationInModule": {
|
|
10080
11548
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10081
|
-
"line":
|
|
11549
|
+
"line": 39
|
|
10082
11550
|
},
|
|
10083
11551
|
"name": "period",
|
|
10084
11552
|
"type": {
|
|
@@ -10094,7 +11562,7 @@
|
|
|
10094
11562
|
"immutable": true,
|
|
10095
11563
|
"locationInModule": {
|
|
10096
11564
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10097
|
-
"line":
|
|
11565
|
+
"line": 17
|
|
10098
11566
|
},
|
|
10099
11567
|
"name": "serviceName",
|
|
10100
11568
|
"type": {
|
|
@@ -10112,7 +11580,7 @@
|
|
|
10112
11580
|
"immutable": true,
|
|
10113
11581
|
"locationInModule": {
|
|
10114
11582
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10115
|
-
"line":
|
|
11583
|
+
"line": 58
|
|
10116
11584
|
},
|
|
10117
11585
|
"name": "canaryTestProps",
|
|
10118
11586
|
"optional": true,
|
|
@@ -10130,7 +11598,7 @@
|
|
|
10130
11598
|
"immutable": true,
|
|
10131
11599
|
"locationInModule": {
|
|
10132
11600
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10133
|
-
"line":
|
|
11601
|
+
"line": 81
|
|
10134
11602
|
},
|
|
10135
11603
|
"name": "defaultContributorInsightRuleDetails",
|
|
10136
11604
|
"optional": true,
|
|
@@ -10148,7 +11616,7 @@
|
|
|
10148
11616
|
"immutable": true,
|
|
10149
11617
|
"locationInModule": {
|
|
10150
11618
|
"filename": "src/services/props/ServiceProps.ts",
|
|
10151
|
-
"line":
|
|
11619
|
+
"line": 48
|
|
10152
11620
|
},
|
|
10153
11621
|
"name": "loadBalancer",
|
|
10154
11622
|
"optional": true,
|
|
@@ -10160,6 +11628,6 @@
|
|
|
10160
11628
|
"symbolId": "src/services/props/ServiceProps:ServiceProps"
|
|
10161
11629
|
}
|
|
10162
11630
|
},
|
|
10163
|
-
"version": "0.0.1-alpha.
|
|
10164
|
-
"fingerprint": "
|
|
11631
|
+
"version": "0.0.1-alpha.41",
|
|
11632
|
+
"fingerprint": "Vxj8ZrNtuSp+kaHwEZQ+5UtmgvKeKlCCSKgTrD1ZnQ4="
|
|
10165
11633
|
}
|