From 42cd94047a0c2476721e2652b05bc7137c6d76ce Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Tue, 5 Mar 2024 09:24:02 -0500 Subject: [PATCH] Update energy.markdown for detail devices max_devices (#31731) --- source/_dashboards/energy.markdown | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/source/_dashboards/energy.markdown b/source/_dashboards/energy.markdown index 9e864f695f7..ca0f3467417 100644 --- a/source/_dashboards/energy.markdown +++ b/source/_dashboards/energy.markdown @@ -204,10 +204,19 @@ max_devices: 5 Screenshot of the detail devices energy graph card.

-The **Detail devices energy graph** card is similar to the **Devices energy graph** card, but shows the individual usage on a time scale. +The **Detail devices energy graph** card is similar to the **Devices energy graph** card, but shows the individual usage on a time scale. + +By default, this card will show all your devices. Optionally, the number of devices can be limited by adding the `max_devices` option and specifying the maximum number of devices to show. If there are more devices available than shown, the devices with the highest energy usage are shown. ### Examples ```yaml type: energy-devices-detail-graph ``` + +The following example limits the number of shown devices to 5: + +```yaml +type: energy-devices-detail-graph +max_devices: 5 +```