@@ -28,6 +28,12 @@ The payload only contains **aggregated counts**, for example:
2828- total number of Powercalc entities
2929- counts per sensor type (e.g. virtual power, group, daily energy)
3030- counts per manufacturer and model (aggregated)
31+ - counts per device type (e.g. light, plug)
32+ - counts per calculation strategy (e.g. lut, fixed)
33+ - counts per source domain (e.g. light, switch)
34+ - counts per group type (e.g. custom, standby)
35+ - group sizes (number of entities in each group)
36+ - whether group includes are used
3137- Powercalc version and Home Assistant version
3238
3339No per-device identifiers are included.
@@ -53,16 +59,35 @@ No per-device identifiers are included.
5359 "by_manufacturer": {
5460 "shelly": 1,
5561 "signify": 4
62+ },
63+ "by_device_type": {
64+ "light": 4,
65+ "plug": 1
66+ },
67+ "by_strategy": {
68+ "lut": 4,
69+ "fixed": 1
70+ },
71+ "by_source_domain": {
72+ "light": 4,
73+ "switch": 1
74+ },
75+ "by_group_type": {
76+ "custom": 1,
77+ "standby": 1
5678 }
5779 },
5880 "ha_version": "2025.10.0.dev0",
5981 "install_id": "081ac191-2667-4242-8226-ecc66b1f7e9e",
60- "group_size_max": 2,
61- "group_size_min": 2,
82+ "group_sizes": {
83+ "2": 1,
84+ "5": 1
85+ },
6286 "powercalc_version": "0.1.1",
6387 "config_entry_count": 8,
6488 "custom_profile_count": 12,
65- "has_global_gui_config": true
89+ "has_global_gui_config": true,
90+ "has_group_include": false
6691 }
6792 ```
6893
0 commit comments