How to set different time per widget in a cloud-watch dashboard

0

I have created a AWS cloud-watch dashboard, In that I have multiple widgets. I wanted to Know if there's a way to set a particular time for each widget in the dashboard

質問済み 7ヶ月前342ビュー
1回答
0

You can click on the widget's menu and edit it, when you edit the widget, you can modify the time range and check the "persist time range" checkbox. Then update your widget, check the display and save your dashboard.

Alternately, you can set it from the dashboard's JSON source code. For example, I have set a widget with a custom time range of latest 1 hour instead of latest 3 hours, my widget has 2 new properties called start and end:

{
            "height": 5,
            "width": 9,
            "y": 0,
            "x": 0,
            "type": "metric",
            "properties": {
                "metrics": [
                    [ { "expression": "…", "id": "e2", "region": "…" } ],
                    (…)
                ],
                "view": "timeSeries",
                "stacked": false,
                "region": "…",
                "stat": "Average",
                "period": 300,
                "title": "…",
                "start": "-PT1H",
                "end": "P0D"
            }
        },
profile pictureAWS
Jsc
回答済み 7ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ