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

1 Respuesta
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
respondido hace 7 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas