You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -209,6 +209,28 @@ This is a general procedure on how to do it:
209
209
210
210
Both of these monitoring base classes are dashboard segments, so you can add them to your monitoring by calling `.addSegment()`.
211
211
212
+
### Monitoring Scopes
213
+
214
+
With CDK Monitoring Constructs, you can monitor complete CDK construct scopes. It will automatically discover all monitorable resources within the scope (recursively)) and add them to your dashboard.
215
+
216
+
```ts
217
+
monitoring.monitorScope(stack);
218
+
```
219
+
220
+
You can also specify default alarms for any specific resource and disable automatic monitoring for it as well.
0 commit comments