As far as I know,
@TedLasso the energy dashboard doesn't create the sensors, only displays them or they might be hidden. You need to create the sensors using,
https://www.home-assistant.io/integrations/utility_meter/. Here is a few examples of mine with the sunsynk addon.
YAML:
utility_meter:
daily_energy:
source: sensor.ss_total_load_energy
name: Daily Energy
cycle: daily
monthly_energy:
source: sensor.ss_total_load_energy
name: Monthly Energy
cycle: monthly
daily_solar_energy:
source: sensor.ss_total_pv_energy
name: Daily Solar Energy
cycle: daily
monthly_solar_energy:
source: sensor.ss_total_pv_energy
name: Monthly Solar Energy
cycle: monthly
daily_grid_energy:
source: sensor.ss_total_grid_import
name: Daily Grid Energy
cycle: daily
monthly_grid_energy:
source: sensor.ss_total_grid_import
name: Monthly Grid Energy
cycle: monthly
daily_battery_charge_energy:
source: sensor.ss_total_battery_charge
name: Daily Battery charge Energy
cycle: daily
monthly_battery_charge_energy:
source: sensor.ss_total_battery_charge
name: Monthly Battery charge Energy
cycle: monthly
daily_battery_discharge_energy:
source: sensor.ss_total_battery_discharge
name: Daily Battery discharge Energy
cycle: daily
monthly_battery_discharge_energy:
source: sensor.ss_total_battery_discharge
name: Monthly Battery discharge Energy
cycle: monthly
You would just need to replace the sensor.ss_xxxxxxxxx with your sensors