My CyberPower UPS units don't report power or energy consumption to NUT, which is connected to Home Assistant.
But they do report nominal power and load percentage, so I created 2 helper sensors: one that multiplies the load by the nominal power to get power consumption, and then an integral one on the power.
The template helper looks like this: `{{ (states('sensor.cp1500_load') | float(0) / 100 * states('sensor.cp1500_nominal_real_power') | float(0)) | round(1) }}`
Suddenly, the picture of what's drawing from the house batter becomes clearer.



