-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathcloud-intelligence-dashboards.rss
More file actions
1070 lines (1035 loc) · 58.4 KB
/
cloud-intelligence-dashboards.rss
File metadata and controls
1070 lines (1035 loc) · 58.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>AWS Cloud Intelligence Dashboards</title>
<link>https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/</link>
<atom:link href="https://cid.workshops.aws.dev/feed/cloud-intelligence-dashboards.rss" rel="self" type="application/rss+xml"/>
<description>The Cloud Intelligence Dashboards is an open-source framework, lovingly cultivated and maintained by a group of customer-obsessed AWSers, that gives customers the power to get high-level and granular insight into their cost and usage data. Supported by the Well-Architected framework, the dashboards can be deployed by any customer using a CloudFormation template or a command-line tool in their environment in under 30 minutes. These dashboards help you to drive financial accountability, optimize cost, track usage goals, implement best-practices for governance, and achieve operational excellence across all your organization.</description>
<lastBuildDate>Wed, 25 Mar 2026 12:00:00 GMT</lastBuildDate>
<language>en-us</language>
<item>
<title>[Update] Extended Support Cost Projection - v5.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-extended-support-cost-projection.md#extended-support-cost-projection---v500
</link>
<pubDate>Wed, 25 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">efcedd3d-751d-4114-abf5-4182050afceb</guid>
<description>Extended Support Cost Projection - v5.0.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Added taxonomy (tagging) support, enabling tag-based cost analysis and filtering across all Extended Support sheets.</li>
<li>New tagging view and dataset for tag aggregation by service dimensions.</li>
<li>Existing RDS, EKS, OpenSearch and ElastiCache views now include tag data for use with taxonomy controls.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CUDOS Dashboard v5.7.3</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cudos.md#cudos---573
</link>
<pubDate>Thu, 20 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">e4f5a6b7-c8d9-0e1f-2a3b-4c5d6e7f8a9b</guid>
<description>CUDOS Dashboard v5.7.3</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>General:</strong> Added new services to Product Code calculated field and Service Category calculated field</li>
<li><strong>Executive: Billing Summary:</strong> Improved Billing Summary Group By calculated field to prioritize Discounts before Support in charge type ordering</li>
<li><strong>Databases:</strong> Added Charge Type Group filter control across multiple sheets for more granular filtering</li>
<li><strong>Compute:</strong> Removed duplicating charge_type filter on some visuals</li>
<li><strong>Compute:</strong> Fix for 'EKS Extended Support Cost' calculated field condition from Cost > 0 to Cost <> 0 to include discounts</li>
<li><strong>Databases:</strong> Fix for 'ElastiCache Redis Migration to Valkey' achieved savings calculation formula</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] FOCUS Dashboard v1.2.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-focus.md
</link>
<pubDate>Thu, 12 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">f1a2b3c4-d5e6-7f8a-9b0c-1d2e3f4a5b6c</guid>
<description>FOCUS Dashboard v1.2.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>General:</strong> Updated schema definitions to support FOCUS 1.2 specification</li>
<li><strong>General:</strong> Created dynamic focus_consolidation_view generation</li>
<li><strong>Billing Summary:</strong> Added new visuals and Group By controls to be able to visualize multiple dimensions including new FOCUS columns such as Invoice</li>
<li><strong>MoM Trends:</strong> In Detailed Resource View visual added skumeter column</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CUDOS Dashboard v5.7.2</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cudos.md#cudos---572
</link>
<pubDate>Tue, 10 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">d2e3f4a5-b6c7-8d9e-f0a1-b2c3d4e5f6a7</guid>
<description>CUDOS Dashboard v5.7.2</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>General:</strong> Removed redundant passthrough calculated fields for visuals based on resource_view and hourly_view datasets to use respective dataset columns directly</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Media Services Insights Hub v2.1.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-media-services-insights
</link>
<pubDate>>Mon, 9 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">a3f7c8d2-6b1e-4f5a-9d8c-e2b4a7f1c6d3</guid>
<description>Media Services Insights Hub v2.0.1</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>MediaLive:</strong>Fix EMT filtering issue</li>
</ul>
</div>
]]></content:encoded>
</item> <item>
<title>[Update] Media Services Insights Hub v2.0.1</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-media-services-insights
</link>
<pubDate>>Fri, 6 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">e7b8f9c1-4a2d-4e9b-b5c6-f8d2e3a4b9c0</guid>
<description>Media Services Insights Hub v2.0.1</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>MediaLive:</strong>Fix EMT filtering issue</li>
</ul>
</div>
]]></content:encoded>
</item> <item>
<title>[Update] TAO Dashboard v4.0.1</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-tao.md
</link>
<pubDate>Wed, 4 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">a3d7e1f2-5b8c-4a9d-b6e4-f2c8d9a1b3e5</guid>
<description>TAO Dashboard v4.0.1</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Security Hub Checks tab:</strong> Fixed action filter on Security Hub Checks focus area visual to apply to all visuals on the sheet</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Media Services Insights Hub v2.0.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-media-services-insights
</link>
<pubDate>>Mon, 2 Mar 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">e7b8f9c1-4a2d-4e9b-b5c6-f8d2e3a4b9c0</guid>
<description>Media Services Insights Hub v2.0.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>MediaLive:</strong>EML reservation revisions</li>
<li><strong>Other:</strong>UI enhncements</li>
<li><strong>Note:</strong>Requires --force --recursive for updating to incorporate dataset changes</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Media Services Insights Hub v1.2.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-media-services-insights
</link>
<pubDate>>Mon, 27 Jan 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">39ca37db-1813-4120-bc54-270ae162f6ca</guid>
<description>Media Services Insights Hub v1.2.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>MediaLive:</strong>EML reservation revisions</li>
<li><strong>Note:</strong>Requires --force --recursive for updating to incorporate dataset changes</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CUDOS Dashboard v5.7.1</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cudos.md#cudos---571
</link>
<pubDate>Mon, 27 Jan 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">c1d2e3f4-g5h6-7i8j-9k0l-m1n2o3p4q5r6</guid>
<description>CUDOS Dashboard v5.7.1</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Executive: Trends:</strong> Fix Week Number calculation to handle partial week at the end and beginning of the year</li>
<li><strong>Security:</strong> Fix for 'Shield Advanced Paid Subscriptions' visual to show only amount of paid subscriptions, fix for 'Shield Advanced Subscriptions per Payer Account' to show not only cost but also usage to see all the subscriptions across all payer accounts regardless if they are paid or not</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Guidance] Generative AI Assistant with Cloud Intelligence Dashboards and Amazon Quick Suite</title>
<link>
https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/generative-ai.html
</link>
<pubDate>Mon, 19 Jan 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Documentation]]></category>
<guid isPermaLink="false">6g9h0i1j-4k5l-7m8n-9o0p-1q2r3s4t5u6v</guid>
<description>Generative AI Assistant with Cloud Intelligence Dashboards and Amazon Quick Suite</description>
<content:encoded><![CDATA[
<div>
<p>
Unlock the power of generative AI for your cloud operations by integrating Cloud Intelligence Dashboards (CID) with Amazon Quick Suite generative AI capabilities. This innovative approach transforms how cloud operations teams analyze, understand, and optimize their AWS environments.
</p>
<p>
Instead of manually navigating through multiple dashboards and correlating data points, you can now ask natural language questions and receive intelligent, data-driven insights across FinOps, cost efficiency, security, performance, and operational excellence topics. The AI-powered CID Operations Advisor provides comprehensive analysis by understanding your specific cloud environment and delivering actionable recommendations tailored to your business needs.
</p>
<h3>Key benefits include:</h3>
<ul>
<li><strong>Intelligent Cross-Dashboard Analysis:</strong> Correlate insights across CUDOS, Cost Intelligence, KPI, CORA, TAO, AWS Health Events, Graviton Savings and more</li>
<li><strong>Natural Language Queries:</strong> Ask complex questions in plain English and receive detailed, data-backed responses</li>
<li><strong>Proactive Recommendations:</strong> Identify optimization opportunities, security risks, and operational improvements before they impact your business</li>
<li><strong>Team Productivity Enhancement:</strong> Accelerate cloud operations with AI-powered analysis and recommendations</li>
</ul>
<p>
To learn more follow <a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/generative-ai.html">https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/generative-ai.html</a>
</p>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CORA Dashboard v0.0.11</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cora.md#cora---v0011
</link>
<pubDate>Mon, 19 Jan 2026 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">5f8a9b2c-3d4e-6f7g-8h9i-0j1k2l3m4n5o</guid>
<description>CORA v0.0.11</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Fix for <strong>Top Potential Savings Over Time</strong> visual to show all data in the dataset</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Media Services Insights Hub v1.1.3</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-media-services-insights
</link>
<pubDate>Tue, 25 Nov 2024 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">1a2b3c4d-5e6f-7g8h-9i0j-k1l2m3n4o5p6</guid>
<description>Media Services Insights Hub v1.1.3</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>MediaLive:</strong> Improved reservation recommendation calculation</li>
<li><strong>Analytics:</strong> Small UI enhncements</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Extended Support Cost Projection - v4.0.4</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-extended-support-cost-projection.md#extended-support-cost-projection---v404</link>
<pubDate>Tue, 25 Nov 2024 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">a1b2c3d4-e5f6-7890-1234-567890abcdef</guid>
<description>Extended Support Cost Projection - v4.0.4</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Adjusting OpenSearch view query to resolve instance normalization factor based on CUR product_instance_type instead of the instance type retrieved from inventory data. The inventory data will continue to provide the different domains available.</li>
<li>Added OpenSearch version 1.1 to release calendar.</li>
<li>Added EKS Kubernetes versions 1.33 and 1.34 to release calendar.</li>
<li>Adjusted Aurora MySQL 3 year 1 start date to 2028-05-01.</li>
</ul>
</div>
]]>
</content:encoded>
</item>
<item>
<title>[Update] Graviton Savings Dashboard v3.0.0</title>
<link>https://github.com/gurajani-aws/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-graviton-savings.md</link>
<pubDate>Mon, 24 Nov 2025 09:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">b8g9f0e3-4d5c-6f7g-0b9c-2d3e4f5g6h7c</guid>
<description>Graviton Savings Dashboard v3.0.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Enhanced EC2 Analysis:</strong><br/>
• Added performance-based cost modeling with dynamic savings recalculation based on Normalized Instance Hours (NIH) reduction<br/>
• Implemented Graviton generation selection for modeling savings across different generations</li>
<li><strong>Graviton Mapping:</strong> Added new dedicated tab for comprehensive EC2 pricing reference and cross generational mapping</li>
<li><strong>Tag Integration:</strong> Enhanced filtering capabilities with support for customer-defined cost allocation tags, enabling workload-specific analysis and alignment with existing AWS cost management structure</li>
<li><strong>Summary View:</strong> Added new Summary tab providing consolidated view across EC2, RDS, ElastiCache, and OpenSearch services with unified savings analysis and adoption tracking</li>
<li><strong>Service Coverage:</strong> Extended analysis to include Reserved Instances for RDS, ElastiCache, and OpenSearch services, previously limited to On-Demand instances only</li>
<li><strong>Bug Fix:</strong> Corrected ElastiCache Valkey eligibility in Graviton migration analysis</li>
<li><strong>General:</strong> Updated documentation and user guides with new feature explanations and best practices</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CUDOS Dashboard v5.7.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cudos.md#cudos---570
</link>
<pubDate>Tue, 25 Nov 2025 06:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">a7f8e9d2-3c4b-5e6f-9a8b-1c2d3e4f5a6b</guid>
<description>CUDOS Dashboard v5.7.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Security:</strong> Added new AWS Shield and AWS Web Application Firewall section with comprehensive visuals including 'AWS Shield and AWS WAF Spend per Service', 'Shield Advanced Subscription Spend per Payer Account', 'Recommendations to consolidate Shield Advanced subscriptions', 'AWS Shield and AWS WAF Spend per Account', 'AWS Shield and AWS WAF Spend per Region', 'AWS Shield and AWS WAF Spend per Usage Type Group', 'AWS Shield and AWS WAF Detailed View', 'AWS Shield and AWS WAF Spend per Resource', 'AWS Shield and AWS WAF Resource Detailed View', 'Total Cost of Idle AWS WAF Web ACLs without Requests', and 'Idle AWS WAF Web ACLs without Requests'</li>
<li><strong>Analytics:</strong> Amazon QuickSight visuals renamed to Amazon QuickSight Suite. Improved Usage Type Group mappings and added visuals with Reader Pro and Author Pro users including 'QuickSight Suite Reader Users and Cost', 'QuickSight Suite Capacity Reader Sessions' and 'Q Questions Usage and Cost'</li>
<li><strong>Executive: RI/SP Summary:</strong> New section 'RI/SP - Unused Commitment(s) Insights' with visuals 'Monthly Unused RI/SP by Commitment Type', 'Unused RI / SP Detailed view' and 'Unused RI / SP - Commitment ARN Details'. Improved filters for 'Amortized Spend by Purchase Option' and 'Net Savings' visuals</li>
<li><strong>AI/ML:</strong> Added visuals for total AI/ML spend per service. Performance improvements for 'Bedrock Unit Cost' visual</li>
<li><strong>Executive: Trends:</strong> Added ability to switch trend view dimensions to Taxonomy fields and Service Category</li>
<li><strong>General:</strong> Updated Service Category mapping. Added Region filter in global controls</li>
<li><strong>Taxonomy Explorer:</strong> Added Service Category dimension to Group By control</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Graviton Savings Dashboard v2.2.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/add-resilience-hub/changes/CHANGELOG-graviton-savings.md
</link>
<pubDate>Thu, 06 Nov 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">8b2f9e6a-417b-4fff-ae02-db8c844991d2</guid>
<description>Graviton Savings Dashboard v2.2.0 - Update Release</description>
<content:encoded><![CDATA[
<div>
<p>
The <strong>Graviton Savings Dashboard (GSD)</strong> visualizes your current usage of AWS Graviton Processors and estimates potential cost savings when switching workloads to Graviton. It helps identify ideal workloads for Graviton migration through automated resource matching and data-driven visualizations.
</p>
<h3>New Features:</h3>
<ul>
<li><strong>Estimated Cost Savings due to performance:</strong> We've enhanced the dashboard with new features highlighting Normalized Instance Hours (NIH) analysis capabilities, allowing you to model potential savings based on both pricing benefits and compute hour reductions.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] SCAD Containers Cost Allocation Dashboard - v4.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-media-services-insights.md#media-services-insights-hub---v112
</link>
<pubDate>Fri, 31 Oct 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">32d1f523-496c-4fd2-9f22-73e6a45b78c3</guid>
<description>SCAD Containers Cost Allocation Dashboard - v4.0.0 - Update</description>
<content:encoded><![CDATA[
<div>
<h2>New features:</h2>
<p>You can now add your K8s pods labels to the Athena view and to the dashboard, and use them in visuals</p>
<p>The Kubernetes Recommended Labels, and the labels app, chart, release, version, component, type and created-by, are included by default in the Athena view and dashboard, in the "Workloads Explorer" sheet, as group-by dimensions and filters (activating their respective cost allocation tags is required)</p>
<h3>New "Labels/Tags Explorer" and "Data on EKS" sheets have been added to the dashboard, leveraging Kubernetes pods labels for their respective use-cases:</h3>
<h4>Total Cost of Ownership (TCO):</h4>
<p>As part of the new "Labels/Tags Explorer" sheet, you can now allocate the TCO of your applications running on EKS/ECS clusters, including both the split cost and the costs of other AWS resources, through consistent labeling/tagging of the pods/tasks and AWS resources</p>
<h4>Cost Allocation for Spark and Flink Applications Running on EKS:</h4>
<p>As part of the new "Data on EKS" sheet, you can now allocate costs to your Spark and Flink applications running on EKS or on EMR on EKS, using labels that are automatically applied to the pods when the jobs are submitted, and are used in the Athena view and dashboard by default</p>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Media Services Insights Hub v1.1.2</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-media-services-insights.md#media-services-insights-hub---v111
</link>
<pubDate>Fri, 17 Oct 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">b4c7d8e1-2f5a-4b9c-8e3d-1a6f9c2b5e8a</guid>
<description>Media Services Insights Hub v1.1.2 - Update</description>
<content:encoded><![CDATA[
<div>
<p>
This release includes the following:
</p>
<ul>
<li>Filters hourly view to last 30 days relative to the last data refresh, rather than current.</li>
<li>Minor UI text fixes</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Media Services Insights Hub v1.1.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-media-services-insights.md#media-services-insights-hub---v110
</link>
<pubDate>Fri, 17 Oct 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">f50ec0b7-f960-400d-91f0-c42a6d44e3d0</guid>
<description>Media Services Insights Hub v1.1.0 - Update</description>
<content:encoded><![CDATA[
<div>
<p>
This release includes the following
</p>
<h3>Key Tabs and Features:</h3>
<ul>
<li>Improves the performance of the main CUR query to work with very large account usage.</li>
<li>Corrects a filter for AEMX ingress bytes KPI</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Extended Support Cost Projection - v4.0.3</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-extended-support-cost-projection.md#extended-support-cost-projection---v403</link>
<pubDate>Thu, 09 Oct 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">fff64290-032b-4e87-82a0-65bef8461015</guid>
<description>Extended Support Cost Projection for Elasticache</description>
<content:encoded><![CDATA[
<p>
In this release, we have introduced projection of extended support costs for
<strong>Amazon Elasticache</strong>. The dashboard provides a clear view on
<strong>Elasticache</strong> clusters reaching
extended support in the next <strong>3, 6, 12 months</strong>, and beyond.
</p>
<p>
<strong>Important:</strong> This version requires the data collection version
<strong>3.2.0+</strong>. Update to this version requires a forced and recursive update.
If you have modified the Extended Support Cost Projection dashboard view queries,
they will be overridden when the dashboard is updated. Consider backing up the existing
view queries if they contain custom changes you want to keep so you can re-apply them after
the update takes place.
</p>
<p>
To update, run these commands in your CloudShell (recommended) or another terminal:
</p>
<pre>
python3 -m ensurepip --upgrade
pip3 install --upgrade cid-cmd
cid-cmd update --dashboard-id extended-support-cost-projection --force --recursive
</pre>
]]>
</content:encoded>
</item>
<item>
<title>[New Dashboard] Media Services Insights Hub v1.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/add-resilience-hub/changes/CHANGELOG-resiliencevue.md
</link>
<pubDate>Mon, 22 Sep 2025 12:00:00 GMT</pubDate>
<category><![CDATA[New Dashboard]]></category>
<guid isPermaLink="false">8b2f9e6a-417b-4fff-ae02-db8c844991d2</guid>
<description>Media Services Insights Hub v1.0.0 - Initial Release</description>
<content:encoded><![CDATA[
<div>
<p>
The <strong>Media Services Insights Hub (MSIH)</strong> dashboard provides comprehensive visibility into AWS Elemental Media Services usage, costs,
and performance metrics. This dashboard leverages AWS Cost and Usage Report (CUR) data to deliver actionable insights for
optimizing media workflows and managing costs across your media infrastructure.
</p>
<h3>Key Tabs and Features:</h3>
<ul>
<li><strong>Executive Summary:</strong> High-level overview of media services costs, usage trends, and key performance indicators.</li>
<li><strong>MediaLive Reservations & Savings:</strong> Deep-dive into current and potential savings achieved through AWS Elemental MediaLive reservations.</li>
<li><strong>MediaConnect:</strong> Detailed analysis of live video transport costs, connection usage, and data transfer metrics.</li>
<li><strong>MediaConvert:</strong> Comprehensive view of transcoding job costs, queue utilization, and processing time analysis.</li>
<li><strong>MediaLive:</strong> In-depth monitoring of live streaming costs, channel utilization, and reservation optimization opportunities.</li>
<li><strong>MediaTailor:</strong> Insights into ad insertion costs, session metrics, and revenue optimization opportunities.</li>
<li><strong>MediaPackage:</strong> Analysis of video packaging and origination costs, endpoint usage, and content delivery metrics.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] TAO v4.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-tao.md
</link>
<pubDate>Fri, 5 Sep 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">f5c65276-4c8f-4c93-af22-646eaf0653d9</guid>
<description>TAO Dashboard v4.0.0</description>
<content:encoded><![CDATA[
<div>
<h2>TAO Dashboard v4.0.0:</h2>
<p><strong>Important:</strong> Update to this version requires <a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/data-collection.html">CID Data Collection</a> v3.13.0 or above. Manual data collection is no longer supported. Before updating TAO dashboard to v4 make sure you <a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/data-collection-deployment.html">deployed</a> or <a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/data-collection-update.html">updated</a> Data Collection stacks. Once Data Collection is deployed you can update TAO dashboard to v4 by running these commands in your CloudShell (recommended) or other terminal:</p>
<pre><code>
python3 -m ensurepip --upgrade
pip3 install --upgrade cid-cmd
cid-cmd update --dashboard-id ta-organizational-view --recursive
</code></pre>
<p><strong>New tab TA Explorer:</strong> Trusted Advisor Explorer section which allows to interactively explore all flagged resources across all checks and accounts in a single place moved to separate tab</p>
<p><strong>New tab TA Priority:</strong> New visuals which show recommendations created by your account team via <a href="https://docs.aws.amazon.com/awssupport/latest/user/trusted-advisor-priority.html">Trusted Advisor Priority</a></p>
<p><strong>Cost Optimization tab:</strong> Native Trusted Advisor checks Low Utilization Amazon EC2 Instances, Underutilized Amazon EBS Volumes, Amazon RDS Idle DB Instances, AWS Lambda over-provisioned functions for memory size replaced by respective more accurate checks from Cost Optimization Hub. Read more details in the <a href="https://aws.amazon.com/blogs/aws-cloud-financial-management/optimize-your-aws-spend-with-new-cost-savings-features-in-aws-trusted-advisor/">blog post</a></p>
<p><strong>Security tab:</strong> AWS CloudTrail Logging check is replaced by AWS CloudTrail Management Event Logging check with improved accuracy</p>
</div>
]]></content:encoded>
</item>
<item>
<title>[New Dashboard] ResilienceVue Dashboard v1.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/add-resilience-hub/changes/CHANGELOG-resiliencevue.md
</link>
<pubDate>Wed, 2 Jul 2025 12:00:00 GMT</pubDate>
<category><![CDATA[New Dashboard]]></category>
<guid isPermaLink="false">a1b2c3d4-e5f6-7890-abcd-ef1234567890</guid>
<description>ResilienceVue Dashboard v1.0.0 - Initial Release</description>
<content:encoded><![CDATA[
<div>
<p>
The <strong>ResilienceVue Dashboard</strong> provides customers with a centralized "single pane of glass"
to efficiently track their Resilience posture and evaluate potential improvement opportunities using
<strong>Amazon ResilienceHub</strong> across the organization at scale.
</p>
<h3>Key Benefits:</h3>
<ul>
<li><strong>Centralized Visibility:</strong> Consolidates and tracks Amazon ResilienceHub Application assessments across multiple AWS accounts in a single view.</li>
<li><strong>Application Resilience Trends:</strong> Dedicated tab for Applications to review existing and past resilience trends, resilience score and other key metrics.</li>
<li><strong>Resource-Level Visibility:</strong> Provides granular visibility into suggested changes down to the resource level based on assessments.</li>
<li><strong>Projected Cost:</strong> Shows cost associated with suggested changes recommended by AWS Resilience Hub to meet resilience goals.</li>
<li><strong>Categorization of Effort:</strong> Categorizes recommendations based on Availability Architecture and Optimization Type.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CUDOS Dashboard v5.6.1</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-cudos.md#cudos---561
</link>
<pubDate>Mon, 16 Jun 2025 09:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">8f7d3b2e-9c6a-4f1d-b5e7-2d9a8c4f3b1a</guid>
<description>CUDOS Dashboard v5.6.1</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Executive:Trends:</strong> Fix sort order in Amortized Cost by Account visual. Excluded unused RI and SP costs in the current month.</li>
<li><strong>Databases:</strong> Excluded unused RI costs in the current month.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CORA Dashboard v0.0.9</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-cora.md#cora---v009
</link>
<pubDate>Tue, 10 Jun 2025 09:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">4e3c1f84-91c2-46ae-9f9f-bf8141c8c2a6</guid>
<description>CORA v0.0.9</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Improved the <strong>Resource</strong> calculated field to display the resource name instead of the id for AutoScaling Group recommendations.</li>
<li>Enhanced the <strong>ResourceType</strong> categorization to explicitly classify unattached EBS volumes using the new resource type: <em>"EBS Volume: Unattached"</em>.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[New significant feature] Add Organizational Taxonomy with cid-cmd without dashboard customization</title>
<link>
https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/add-org-taxonomy.html
</link>
<pubDate>Mon, 2 Jun 2025 09:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">7d2f3c91-8c10-4265-94e7-7e0c8ef61b58</guid>
<description>Add Organizational Taxonomy with cid-cmd without dashboard customization</description>
<content:encoded><![CDATA[
<div>
<p>Starting today, you can use <code>cid-cmd</code> to add organizational taxonomy—such as tags, cost categories, and account mappings to Cloud Intelligence Dashboards without needing to customize the dashboards, while retaining the ability to update to the latest versions.</p>
<p>Learn more in the new documentation guide:
<a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/add-org-taxonomy.html">Add Organizational Taxonomy</a>
</p>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CUDOS Dashboard v5.6.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-cudos.md#cudos---56
</link>
<pubDate>Mon, 2 Jun 2025 09:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">f3b5e9a2-1c4e-45fa-8c2a-9cf5a93e8e3a</guid>
<description>CUDOS Dashboard v5.6.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Executive: Trends</strong>: Sheet 'MoM Trends' renamed to 'Trends'. Added control <em>Trends Type</em> which allows switching between Monthly, Weekly and Daily Trends. Added control <em>Trends Time Range</em> to adjust the time period when switching between Trend Types. Changed positioning of Product and Account Trends visuals to effectively present more than 3 trends periods.</li>
<li><strong>Databases</strong>: Added '<em>Amazon ElastiCache Redis Migration to Valkey - Adoption Tracking and Potential Savings</em>' section with visuals:
<ul>
<li>'ElastiCache Redis vs Valkey: Cost Breakdown'</li>
<li>'ElastiCache Valkey: Achieved Cost Efficiency Gains vs Redis'</li>
<li>'Monthly Cost Savings Opportunities with Migration to Valkey'</li>
<li>'Redis Cache Instances and Serverless Cache: Cost Savings Opportunities with migration to Valkey'</li>
</ul>
</li>
<li><strong>Taxonomy Explorer</strong>: 'TAGSplorer' sheet completely redesigned and renamed to <em>Taxonomy Explorer</em>. Now allows interactive exploration of cost and usage across 2 Taxonomy Dimensions (e.g. tags and account-level mappings), added via the new
<a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/add-org-taxonomy.html">Add Organizational Taxonomy</a> capability.</li>
<li><strong>AI/ML</strong>: Added 'Amazon Bedrock Model Unit Cost' and 'Amazon Bedrock Cost per Legal Entity' visuals. Updated <em>Bedrock UsageType Group</em> for more accurate categorization. Added <em>Model Name</em> calculated field to group different model IDs on 'Amazon Bedrock Daily Cost per Resource'.</li>
<li><strong>Amazon S3 Summary</strong>: Added <em>'Group By'</em> control to switch between S3 Operation and S3 UsageType Group in the following visuals:
<ul>
<li>'Total Cost per Bucket by Operation'</li>
<li>'Daily Cost Bucket Explorer'</li>
<li>'Daily Storage Bucket Explorer'</li>
</ul>
</li>
<li><strong>Analytics</strong>: Added new AWS Glue section with visuals:
<ul>
<li>'AWS Glue Spend per Account'</li>
<li>'AWS Glue Spend per UsageType Group'</li>
<li>'AWS Glue Spend per Usage Type'</li>
<li>'AWS Glue Detailed Resource View'</li>
</ul>
</li>
<li><strong>Analytics</strong>: Added new Amazon EMR section with visuals:
<ul>
<li>'EMR Spend per Account'</li>
<li>'EMR Spend Per UsageType Group'</li>
<li>'EMR Spend Per UsageType Sub Group'</li>
<li>'EMR Spend Per Processor Type'</li>
<li>'EMR Daily Cost per Usage Type Sub Group'</li>
<li>'EMR Detailed Resource View (Top 20)'</li>
</ul>
</li>
<li><strong>Executive: RI/SP Summary</strong>: Added Amazon ElastiCache, OpenSearch, Redshift, DynamoDB, and MemoryDB services to the 'Savings Option for Compute by Owner / Consumer' visual.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Sustainability Proxy and Carbon emissions data Dashboard v4.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHAMGELOG-sustainability-proxy-metrics.md#sustainability-proxy-and-carbon-emissions-data-dashboard---v400
</link>
<pubDate>Wed, 23 Apr 2025 17:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">03f52db0-7991-4edd-bb0c-3da50a807ee0</guid>
<description>Sustainability Proxy and Carbon emissions data Dashboard v4.0.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li><strong>Removed</strong> option for using <code>experimental-programmatic-access-ccft</code> (Deprecated).</li>
<li><strong>Added</strong> dependency on the <em>Carbon Data export</em>.</li>
<li><strong>Updated</strong> datasets to gain data from the <em>Carbon Data export</em>.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Compute Optimizer Dashboard v5.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-cod.md#compute-optimizer-dashboard---v500
</link>
<pubDate>Tue, 01 Apr 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">35694f6f-1a4c-41a8-8fa5-9dbb6c7c87e2</guid>
<description>Compute Optimizer Dashboard v5.0.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Added support for <strong>License Optimization Recommendations</strong>.</li>
<li>Added support for <strong>Idle resources recommendations</strong>.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] CORA Dashboard v0.0.7</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-cora.md#cora---v007
</link>
<pubDate>Wed, 29 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">eee79a49-0e53-432a-bdc6-50a9ecf7f0fa</guid>
<description>CORA Dashboard v0.0.7</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Added support for <strong>Idle recommendations</strong>.</li>
<li>Added <strong>Resource ID filter</strong> on the <em>Usage Optimization</em> tab.</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Health Event Dashboard v2.1.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-hed.md#v210
</link>
<pubDate>Tue, 28 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">d80e1eec-6a25-4719-b1c2-cf34d3822e7f</guid>
<description>Health Event Dashboard v2.1.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>
Modified Athena query to include events ingested more than 90 days ago if they are not of closed status.
Although not a breaking change for the dashboard, you should update with the
<code>--force --recursive</code> flags to incorporate it.
</li>
<li>
Added guidance text for date range filtering.
</li>
<li>
Minor cosmetic and usability changes.
</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] Extended Support Cost Projection Dashboard v4.0.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-extended-support-cost-projection.md#extended-support-cost-projection---v402</link>
<pubDate>Thu, 23 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">e8b37795-d8e2-4de5-b72d-4e9c2c39b6f6</guid>
<description>Extended Support Cost Projection Dashboard v4.0.0</description>
<content:encoded><![CDATA[
<p>
In this release, we have introduced projection of extended support costs for
<strong>Amazon OpenSearch</strong>. The dashboard provides a clear view on
<strong>OpenSearch</strong> and <strong>ElasticSearch</strong> domains reaching
extended support in the next <strong>3, 6, 12 months</strong>, and beyond.
</p>
<p>
<strong>Important:</strong> This version requires the data collection version
<strong>3.2.0+</strong>. Update to this version requires a forced and recursive update.
If you have modified the Extended Support Cost Projection dashboard view queries,
they will be overridden when the dashboard is updated. Consider backing up the existing
view queries if they contain custom changes you want to keep so you can re-apply them after
the update takes place.
</p>
<p>
To update, run these commands in your CloudShell (recommended) or another terminal:
</p>
<pre>
pip3 install --upgrade cid-cmd
cid-cmd update --dashboard-id extended-support-cost-projection --force --recursive
</pre>
]]>
</content:encoded>
</item>
<item>
<title>[Update] Compute Optimizer Dashboard v3.1.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cod.md#compute-optimizer-dashboard---v310
</link>
<pubDate>Fri, 10 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">0b1703d0-4ef0-47be-9c8e-f6b91ed2f181</guid>
<description>Compute Optimizer Dashboard v3.1.0</description>
<content:encoded><![CDATA[Removed link to deprecated feedback form]]>
</content:encoded>
</item>
<item>
<title>[Update] KPI Dashboard v2.1.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-kpi.md#kpi---210
</link>
<pubDate>Fri, 10 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">94a85c27-53f1-4867-b882-e96ad7b019f8</guid>
<description>KPI Dashboard v2.1.0</description>
<content:encoded><![CDATA[Removed link to deprecated feedback form]]>
</content:encoded>
</item>
<item>
<title>[Update] Cost Intelligence Dashboard v3.5.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cid.md#cid---35
</link>
<pubDate>Fri, 10 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">f67bdfc1-211e-4f3f-970f-654d6e9070ae</guid>
<description>Cost Intelligence Dashboard v3.5.0</description>
<content:encoded><![CDATA[Removed link to deprecated feedback form]]>
</content:encoded>
</item>
<item>
<title>[Update] Amazon Connect Cost Insight Dashboard v1.1.0</title>
<link>
https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/connect-cost-insight.html
</link>
<pubDate>Fri, 10 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Dashboard Update]]></category>
<guid isPermaLink="false">3df5ff83-f28c-46aa-9ac8-04b9b15f8759</guid>
<description>Amazon Connect Cost Insight Dashboard v1.1.0</description>
<content:encoded><![CDATA[Removed link to deprecated feedback form]]>
</content:encoded>
</item>
<item>
<title>[New Dashboard] Amazon Connect Cost Insight Dashboard</title>
<link>
https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/connect-cost-insight.html
</link>
<pubDate>Wed, 18 Dec 2024 12:00:00 GMT</pubDate>
<category><![CDATA[New Dashboard]]></category>
<guid isPermaLink="false">9aaae12e-0fd3-4bb4-988f-7a1b45d5db87</guid>
<description>Announcing release of Amazon Connect Cost Insight Dashboard</description>
<content:encoded><![CDATA[
<div>
<p>
The Amazon Connect Cost Insight Dashboard leverages AWS Cost and Usage Report data to provide visualizations that help optimize cloud spending and enhance operational efficiency within the Amazon Connect contact center infrastructure.
</p>
<p>
The dashboard is organized into 6 intuitive tabs:
</p>
<ul>
<li>
<strong>Overview:</strong> A high-level summary of Amazon Connect and Contact Center Telecom charges.
</li>
<li>
<strong>Connect:</strong> Detailed view of Amazon Connect Voice service usage and costs.
</li>
<li>
<strong>Telecom Spend:</strong> Breakdown of contact center Telecommunications costs by number types and countries.
</li>
<li>
<strong>Daily Usage:</strong> 30-day trending data for costs and usage patterns with drill downs to inbound/outbound minutes and phone numbers usage.
</li>
<li>
<strong>Call Details:</strong> Key metrics about call patterns, durations, and regional distribution.
</li>
<li>
<strong>Contact Search:</strong> Detailed analysis of individual contacts and their characteristics, allowing you to focus on a particular contact and see detailed information.
</li>
</ul>
<p>
Each tab progressively moves from broad insights to specific details, helping you effectively monitor your contact center operations.
</p>
<p>
<a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/connect-cost-insight.html#example-dashboard" target="_blank">
Learn more
</a>
</p>
</div>
]]>
</content:encoded>
</item>
<item>
<title>[New Dashboard] AWS Support Cases Radar</title>
<link>
https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/support-cases-radar.html
</link>
<pubDate>Tue, 17 Dec 2024 12:00:00 GMT</pubDate>
<category><![CDATA[New Dashboard]]></category>
<guid isPermaLink="false">3a6331f1-c25b-49f0-91d1-4ce4dcd57f86</guid>
<description>Announcing release of AWS Support Cases Radar Dashboard</description>
<content:encoded><![CDATA[
<div>
<p>
The AWS Support Cases Radar Dashboard provides a centralized platform to consolidate, monitor, and analyze AWS Support Cases across all linked accounts and multiple AWS organizations.
</p>
<p>
With a unified view of all support cases, this dashboard empowers cloud governance teams to enhance operational efficiency and maximize the value delivered by AWS Support.
</p>
<p>
<a href="https://docs.aws.amazon.com/guidance/latest/cloud-intelligence-dashboards/support-cases-radar.html" target="_blank">
Learn more
</a>
</p>
</div>
]]>
</content:encoded>
</item>
<item>
<title>[Update] CUDOS v5.5.0</title>
<link>
https://github.com/aws-samples/aws-cudos-framework-deployment/blob/main/changes/CHANGELOG-cudos.md#cudos---55</link>
<pubDate>Fri, 29 Nov 2024 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">05a02b9d-3a28-42d2-8f2f-419b27b5ce4b</guid>
<description>CUDOS v5.5.0</description>
<content:encoded><![CDATA[
<div>
<h2>Release Updates</h2>
<ul>
<li>
<strong>DynamoDB:</strong> Refactored visuals to improve user experience and simplify navigation.<br/>
Replaced <em>'DynamoDB Accounts by Category'</em> visuals with <em>'DynamoDB Cost per Account'</em> and <em>'DynamoDB Cost per Usage Type Group'</em>.
</li>
<li>
<strong>DynamoDB:</strong> New section <em>'DynamoDB Provisioned Capacity - Reservations Savings Estimation'</em> which allows calculating estimated savings for Amazon DynamoDB reserved capacity based on a custom commitment amount.
</li>
<li>
<strong>DynamoDB:</strong> New section <em>'DynamoDB Provisioned Capacity - Reservation Coverage & Usage Monitoring'</em> which allows monitoring reserved capacity coverage per region and capacity type dimensions.
</li>
<li>
<strong>DynamoDB:</strong> New visual <em>'Infrequent Access Tables Cost and Cost Efficiency Gain/Loss vs Standard Storage'</em> which shows efficiency gains from Infrequent Access tables and identifies tables that could be migrated to Standard table class.
</li>
<li>
<strong>Monitoring and Observability:</strong> New section <em>'AWS Config Periodic Recording Savings Opportunities'</em> which shows potential savings from migrating to periodic configuration item recording.
</li>
<li>
<strong>Monitoring and Observability:</strong> New section <em>'Account and Regions without AWS Config'</em> which identifies accounts and regions with AWS service usage where AWS Config is not enabled.
</li>
<li>
<strong>Analytics:</strong> Improved <em>'QuickSight Usage Type Group'</em> calculated field to accommodate the latest QuickSight pricing constructs.
</li>
<li>
<strong>AI/ML:</strong> Added guardrails to the <em>'Bedrock UsageType Group'</em> calculated field.
</li>
<li>
<strong>Databases:</strong> Updated action filter on <em>'RI Coverage per region | engine | instance type or family'</em> applied to <em>'Top 20 instances'</em> to focus on resources belonging to a particular RI dimension.
</li>
<li>
<strong>Compute:</strong> Bug fix for <em>'EKS Extended Support Cost per Account'</em> visual by adding a missing filter for the Last 30 days.
</li>
</ul>
</div>
]]>
</content:encoded>
</item>
<item>
<title>[Update] FOCUS Dashboard v0.2.0</title>
<link>https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-focus.md#focus-dashboard-v020</link>
<pubDate>Fri, 19 Apr 2024 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">39499a91-d6be-4f6f-9f79-b0fcd9267ce3</guid>
<description>FOCUS Dashboard update v0.2.0</description>
<content:encoded><![CDATA[
<div>
<ul>
<li>Aligned with GA release of <strong>FOCUS 1.0</strong> in <em>AWS Data Exports</em>.</li>
<li>
<strong>MoM Trends:</strong> Bug fix for action filter and conditional formatting in the
<em>'Effective Cost per Sub Account in USD'</em> visual.
</li>
</ul>
</div>
]]></content:encoded>
</item>
<item>
<title>[Update] SCAD Containers Cost Allocation Dashboard v2.0.0</title>
<link>
https://github.com/aws-solutions-library-samples/cloud-intelligence-dashboards-framework/blob/main/changes/CHANGELOG-scad-cca.md#scad-containers-cost-allocation-dashboard---v200</link>
<pubDate>Sat, 18 Jan 2025 12:00:00 GMT</pubDate>
<category><![CDATA[Update]]></category>
<guid isPermaLink="false">79c8c314-f4f5-4743-b49d-2b53f9e33b9f</guid>
<description>SCAD Containers Cost Allocation Dashboard v2.0.0</description>
<content:encoded><![CDATA[
<div>
<h2>Update: AWS Split Cost Allocation Data (SCAD) for ECS</h2>
<ul>
<li>
All visuals now include SCAD ECS data (including AWS Batch on ECS), in addition to SCAD EKS data.
</li>
<li>
The <strong>"EKS Breakdown"</strong> sheet has been renamed to <strong>"Cluster Breakdown"</strong>.
</li>
<li>
<strong>CUR 2.0 support:</strong> The dashboard now defaults to CUR 2.0, and still supports legacy CUR.
</li>
<li>
The <code>scad_cca_summary_view</code> and <code>scad_cca_hourly_resource_view</code> Athena views have been merged into a single view.
</li>
<li>
Time and data granularity levels remain the same, now accessible from the unified view.
</li>
<li>
Hourly and resource-level visuals in the "Cluster Breakdown" sheet have been removed and combined with the "Workloads Explorer" tab, which now supports these levels alongside its existing granularity.
</li>
</ul>