Skip to content

Releases: cdklabs/cdk-monitoring-constructs

v5.0.1

05 Jun 00:36
8999ae6

Choose a tag to compare

5.0.1 (2023-06-05)

v5.0.0

01 Jun 19:21
18786c4

Choose a tag to compare

5.0.0 (2023-06-01)

⚠ BREAKING CHANGES

  • dashboards: handle dynamic dashboards in SingleWidgetDashboardSegment (#373)
    • addToSummary and addToAlarm props have been removed
      • To control dashboard visibility of this segment, please use MonitoringDashboardsOverrideProps in calls to addSegment instead.
      • No action is required if you were not providing these props
    • dashboardsToInclude prop has been added
      • If you would like to use SingleWidgetDashboardSegment with dynamic dashboards, provide the list of dashboards on which this segment should show.

Before:

// Adds single widget to detail dashboard only
facade.addSegment(
      new SingleWidgetDashboardSegment(new TextWidget({ markdown: "Simple Dashboard Segment" }), false, false)
);

After:

// Adds single widget to detail dashboard only 
facade.addSegment(
    new SingleWidgetDashboardSegment(new TextWidget({ markdown: "Simple Dashboard Segment" })),
    {
        addToSummaryDashboard: false,
        addToAlarmDashboard: false,
        addToDetailDashboard: true,
    }
);

Bug Fixes

  • dashboards: handle dynamic dashboards in SingleWidgetDashboardSegment (#373) (18786c4)

v4.0.9

29 May 00:35
5d906f4

Choose a tag to compare

4.0.9 (2023-05-29)

v4.0.8

22 May 00:37
62f83b7

Choose a tag to compare

4.0.8 (2023-05-22)

v4.0.7

19 May 02:29
f2f5b67

Choose a tag to compare

4.0.7 (2023-05-19)

Bug Fixes

  • dynamo: divide GSI consumed RCU/WCU metrics by period (#368) (f2f5b67), closes #362

v4.0.6

16 May 03:20
005d951

Choose a tag to compare

4.0.6 (2023-05-16)

Bug Fixes

  • dashboards: use correct scope for default DashboardFactory (#367) (005d951), closes #357

v4.0.5

15 May 00:33
2a740cd

Choose a tag to compare

4.0.5 (2023-05-15)

v4.0.4

08 May 00:35
1cfdf17

Choose a tag to compare

4.0.4 (2023-05-08)

v4.0.3

01 May 00:36
fe70d9e

Choose a tag to compare

4.0.3 (2023-05-01)

v4.0.2

24 Apr 00:33
7d57561

Choose a tag to compare

4.0.2 (2023-04-24)