-
Notifications
You must be signed in to change notification settings - Fork 23
/
ui-lovelace.yaml
4244 lines (4244 loc) · 150 KB
/
ui-lovelace.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: Home
swipe_nav:
wrap: true
animate: swipe # could also use fade or flip
swipe_amount: 15
decluttering_templates:
decl_sonoff1:
card:
type: 'custom:config-template-card'
variables:
varDEVICE: 'parseFloat(states[''sensor.[[device]]_rssi''].state)'
entities:
- 'sensor.[[device]]_rssi'
- 'sensor.[[device]]_signal'
- 'sensor.[[device]]_mqtt_connect_count'
- 'sensor.[[device]]_wifi_connect_count'
- 'sensor.[[device_status]]_status'
- 'sensor.[[device_status]]_firmware'
card:
type: 'custom:mod-card'
style:
multiple-entity-row:
$:
hui-generic-entity-row:
$: |
.info.pointer .secondary {
{% if states('sensor.[[device]]_rssi')|int(0) >= 100 %}
color: green;
{% elif states('sensor.[[device]]_rssi')|int(0) >= 80 %}
color: orange;
{% elif states('sensor.[[device]]_rssi')|int(0) >= 60 %}
color: magenta;
{% else %}
color: red;
{% endif %}
}
card:
type: 'custom:multiple-entity-row'
entity: sensor.[[device_status]]_firmware
show_state: false
name: '[[device_name]]'
icon: >-
${varDEVICE >= 100 ? "mdi:wifi" : (varDEVICE >= 80 ?
"mdi:wifi-strength-3" : (varDEVICE >= 60 ? "mdi:wifi-strength-2" :
"mdi:wifi-strength-1")) }
secondary_info: >-
${ varDEVICE >= 100 ? "Excellent" : (varDEVICE >= 80 ? "Good" :
(varDEVICE >= 60 ? "Fair" : "Weak"))}
entities:
- entity: sensor.[[device_status]]_status
name: MQTT
styles:
width: 23px
- entity: sensor.[[device]]_wifi_connect_count
name: WiFi
styles:
width: 23px
- entity: sensor.[[device]]_signal
name: Signal
styles:
width: 48px
- entity: sensor.[[device]]_rssi
name: RSSI
styles:
width: 38px
decl_sonoff2:
card:
type: 'custom:config-template-card'
variables:
varDEVICE: 'parseFloat(states[''sensor.[[device]]_rssi''].state)'
entities:
- 'sensor.[[device]]_rssi'
- 'sensor.[[device]]_signal'
- 'sensor.[[device]]_mqtt_connect_count'
- 'sensor.[[device]]_wifi_connect_count'
- 'sensor.[[device_status]]_status'
- 'sensor.[[device_status]]_firmware'
card:
type: 'custom:mod-card'
style:
multiple-entity-row:
$:
hui-generic-entity-row: |
.entities-row div.entity:nth-child(4) div::before {
{% if states('sensor.[[device]]_rssi')|int(0) >= 100 %}
color: green;
content: "Excellent\A";
{% elif states('sensor.[[device]]_rssi')|int(0) >= 80 %}
color: orange;
content: "Good\A";
{% elif states('sensor.[[device]]_rssi')|int(0) >= 60 %}
color: magenta;
content: "Fair\A";
{% else %}
color: red;
content: "Weak\A";
{% endif %}
line-height: var(--mdc-typography-body1-line-height, 1.5rem);
text-align: center;
white-space: pre;
}
.entities-row div.entity:nth-child(4) div {
color: transparent;
line-height: 0px;
}
card:
type: 'custom:multiple-entity-row'
entity: sensor.[[device_status]]_firmware
show_state: false
name: '[[device_name]]'
icon: >-
${varDEVICE >= 100 ? "mdi:wifi" : (varDEVICE >= 80 ?
"mdi:wifi-strength-3" : (varDEVICE >= 60 ? "mdi:wifi-strength-2" :
"mdi:wifi-strength-1")) }
# secondary_info: last-changed
entities:
- entity: sensor.[[device_status]]_status
name: MQTT
styles:
width: 23px
- entity: sensor.[[device]]_wifi_connect_count
name: WiFi
styles:
width: 23px
- entity: sensor.[[device]]_signal
name: Signal
styles:
width: 55px
- entity: sensor.[[device]]_rssi
name: Quality
styles:
width: 55px
- entity: sensor.[[device]]_rssi
name: RSSI
styles:
width: 38px
views:
- title: Home Assistant
icon: mdi:home-assistant
path: home_assistant
cards:
- type: vertical-stack
cards:
- type: 'custom:config-template-card'
entities:
- sensor.last_successful_authentication
- sensor.cert_expiry_ha_domain_days
- sensor.cert_expiry_ha_domain
- sensor.select_value_sql_query
- sensor.cert_expiry_cockpit_days
- sensor.cert_expiry_cockpit
- sensor.cert_expiry_glances_days
- sensor.cert_expiry_glances
- sensor.cert_expiry_logviewer_days
- sensor.cert_expiry_logviewer
- sensor.cert_expiry_portainer_days
- sensor.cert_expiry_portainer
- sensor.cert_expiry_tasmoadmin_days
- sensor.cert_expiry_tasmoadmin
card:
type: 'custom:hui-entities-card'
title: System Information
show_header_toggle: false
entities:
- entity: sensor.last_successful_authentication
- sensor.select_value_sql_query
- entity: sensor.cert_expiry_ha_domain_days
name: "${'HA Certificate Expires in'}"
- entity: sensor.cert_expiry_ha_domain
name: "${'HA Certificate Expiry Date'}"
format: datetime
- type: custom:fold-entity-row
head:
type: section
label: Other SSL Certificates
padding: 0
entities:
- sensor.cert_expiry_cockpit_days
- entity: sensor.cert_expiry_cockpit
format: datetime
- sensor.cert_expiry_glances_days
- entity: sensor.cert_expiry_glances
format: datetime
- sensor.cert_expiry_logviewer_days
- entity: sensor.cert_expiry_logviewer
format: datetime
- sensor.cert_expiry_portainer_days
- entity: sensor.cert_expiry_portainer
format: datetime
- sensor.cert_expiry_tasmoadmin_days
- entity: sensor.cert_expiry_tasmoadmin
format: datetime
- type: entities
title: Tasmota
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Tasmota Firmware
padding: 0
entities:
- sensor.toothbrush_firmware
- sensor.xcy_mini_pc_firmware
- sensor.tv_switch_firmware
- sensor.garage_door_firmware
- sensor.alarm_firmware
- sensor.nodemcu_lounge_firmware
- sensor.nodemcu_bedroom_firmware
- sensor.artisan_software_version_installed
- entity: sensor.coffee_maker_firmware
tap_action:
action: navigate
navigation_path: /tasmoadmin
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states('binary_sensor.tasmota_update_available') == 'on' %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- entity: sensor.tasmota_firmware_version_available
tap_action:
action: url
url_path: https://github.com/arendst/Tasmota
- entity: binary_sensor.tasmota_update_available
tap_action:
action: navigate
navigation_path: /tasmoadmin
state_color: true
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states('binary_sensor.tasmota_update_available') == 'on' %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- entity: sensor.artisan_software_version
tap_action:
action: url
url_path: https://github.com/artisan-roaster-scope/artisan/releases
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if (states(config.entity) != states('sensor.artisan_software_version_installed')) and (states(config.entity) != 'continuous') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: horizontal-stack
cards:
- type: gauge
name: CPU Temperature
unit: °C
entity: sensor.cpu_temperature
severity:
green: 0
yellow: 50
red: 60
- type: gauge
name: Disk Usage
unit: '%'
entity: sensor.system_monitor_disk_use_percent_config
- type: horizontal-stack
cards:
- type: gauge
name: CPU Usage
unit: '%'
entity: sensor.processor_use
severity:
green: 0
yellow: 25
red: 50
- type: gauge
name: Memory Usage
unit: '%'
entity: sensor.memory_use_percent
severity:
green: 0
yellow: 35
red: 50
- type: custom:apexcharts-card
graph_span: 24h
header:
show: true
title: NUC Memory Graph
apex_config:
responsive:
- breakpoint: 765
options:
chart:
height: 500px
- breakpoint: 1025
options:
chart:
height: 400px
- breakpoint: 10000
options:
chart:
height: auto
stroke:
curve: smooth
chart:
zoom:
enabled: true
toolbar:
show: true
tools:
zoom: true
zoomin: true
zoomout: true
pan: true
reset: true
plotOptions:
bar:
columnWidth: '10%'
legend:
showForSingleSeries: true
series:
- entity: sensor.memory_use_percent
show:
extremas: true
stroke_width: 3
opacity: 0.2
name: Percent Memory Used
type: area
color: cyan
group_by:
func: raw
duration: 15min
- entity: sensor.nuc_memory_used_filtered
show:
extremas: true
stroke_width: 3
name: Memory Use Filtered
type: line
color: magenta
group_by:
func: raw
duration: 15min
- type: custom:apexcharts-card
graph_span: 24h
header:
show: true
title: NUC Processor Graph
apex_config:
responsive:
- breakpoint: 765
options:
chart:
height: 500px
- breakpoint: 1025
options:
chart:
height: 400px
- breakpoint: 10000
options:
chart:
height: auto
stroke:
curve: smooth
chart:
zoom:
enabled: true
toolbar:
show: true
tools:
zoom: true
zoomin: true
zoomout: true
pan: true
reset: true
plotOptions:
bar:
columnWidth: '10%'
legend:
showForSingleSeries: true
series:
- entity: sensor.processor_use
show:
extremas: true
stroke_width: 3
opacity: 0.2
name: Processor Used
type: area
color: cyan
group_by:
func: raw
duration: 15min
- entity: sensor.nuc_processor_used_filtered
show:
extremas: true
name: Processor Used Filtered
stroke_width: 3
type: line
color: magenta
group_by:
func: raw
duration: 15min
- type: entities
title: NUC Resources
show_header_toggle: false
entities:
- sensor.memory
- sensor.nuc_memory_used_filtered
- sensor.processor
- sensor.nuc_processor_used_filtered
- sensor.cpu_temperature
- sensor.system_monitor_disk_use_config
- sensor.system_monitor_disk_free_config
- sensor.system_monitor_disk_use_percent_config
- sensor.memory_use_percent
- sensor.memory_use
- sensor.memory_free
- sensor.swap_use_percent
- sensor.load
- sensor.processor_use
- sensor.ipv4_address_eno1
- sensor.wan_ip_address
- sensor.network_in_eno1
- sensor.network_out_eno1
- entity: sensor.last_boot
format: datetime
- entity: sensor.last_boot
format: relative
- entity: sensor.ha_uptime
format: relative
- type: vertical-stack
cards:
- type: entities
title: Updates
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Home Assistant
padding: 0
entities:
- sensor.hass_available_to_install_version
- sensor.current_ha_stable
- sensor.current_ha_beta
- sensor.current_ha_dev
- entity: sensor.hass_installed_version
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) != states('sensor.current_ha_beta') %}
var(--state-icon-active-color)
{% elif states(config.entity) != states('sensor.hass_available_to_install_version') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: Supervisor
padding: 0
entities:
- sensor.current_supervisor_stable
- sensor.current_supervisor_beta
- sensor.current_supervisor_dev
- entity: sensor.current_supervisor_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) < states('sensor.current_supervisor_beta') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: HA OS-Agent
padding: 0
entities:
- sensor.ha_os_agent_installed_version
- entity: sensor.github_ha_os_agent_available
tap_action:
action: url
url_path: https://github.com/home-assistant/os-agent/releases
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) > states('sensor.ha_os_agent_installed_version') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: DNS
padding: 0
entities:
- sensor.current_dns_stable
- sensor.current_dns_beta
- sensor.current_dns_dev
- entity: sensor.current_dns_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) < states('sensor.current_dns_beta') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: Audio
padding: 0
entities:
- sensor.current_audio_stable
- sensor.current_audio_beta
- sensor.current_audio_dev
- entity: sensor.current_audio_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) < states('sensor.current_audio_beta') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: CLI
padding: 0
entities:
- sensor.current_cli_stable
- sensor.current_cli_beta
- sensor.current_cli_dev
- entity: sensor.current_cli_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) < states('sensor.current_cli_beta') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: Multicast
padding: 0
entities:
- sensor.current_multicast_latest
- entity: sensor.current_multicast_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) < states('sensor.current_multicast_latest') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:fold-entity-row
head:
type: section
label: Observer
padding: 0
entities:
- sensor.current_observer_latest
- entity: sensor.current_observer_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) < states('sensor.current_observer_latest') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: entities
show_header_toggle: false
title: Docker Updates and Github Calls
entities:
- type: custom:fold-entity-row
head:
type: section
label: Versions
padding: 0
entities:
- sensor.docker_ce_version_installed
# - sensor.docker_ce_version_available
- sensor.docker_ce_version_moby_available
- sensor.docker_version_available # repo via mqtt
- sensor.github_docker_ce_available
- sensor.docker_compose_version_installed
- sensor.docker_compose_latest_tag
- entity: sensor.docker_compose_version_available
tap_action:
action: url
url_path: https://github.com/docker/compose/releases
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states('sensor.docker_compose_version_available') != states('sensor.docker_compose_version_installed') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- entity: sensor.docker_ce_version_available
tap_action:
action: url
url_path: https://github.com/moby/moby/releases
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states('sensor.docker_ce_version_available') != states('sensor.docker_ce_version_installed') %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- entity: binary_sensor.hass_update_available
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) == 'on' %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- entity: binary_sensor.home_assistant_website_update_available
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) == 'on' %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- entity: sensor.github_main
- entity: sensor.github_hacs
- type: entities
title: Addons
show_header_toggle: false
entities:
- entity: sensor.supervisor_installed
tap_action:
action: navigate
navigation_path: /config/dashboard
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity)|int(0) > 0 %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:list-card
entity: sensor.supervisor_installed
title: HA Addons
columns:
- {field: name, title: 'Addon', style: [text-align: left]}
- {field: version, title: 'Installed', style: [text-align: center]}
- {field: version_latest, title: 'Latest', style: [text-align: center]}
feed_attribute: addons
- type: entities
title: HACS
entities:
- entity: sensor.hacs
tap_action:
action: navigate
navigation_path: /hacs/entry
card_mod:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity)|int(0) > 0 %}
var(--state-icon-active-color)
{% else %}
var(--state-icon-color)
{% endif %}
;
}
- type: custom:list-card
entity: sensor.hacs
title: HA Community Store
columns:
- {field: name, title: 'Name', style: [text-align: left]}
- {field: installed_version, title: 'Installed', style: [text-align: center]}
- {field: available_version, title: 'Latest', style: [text-align: center]}
feed_attribute: repositories
- type: horizontal-stack
cards:
- type: entity-button
entity: script.firmwarealltasmota
icon: mdi:check-decagram
name: Tasmota Firmware
tap_action:
action: call-service
service: script.firmwarealltasmota
- type: entity-button
entity: script.updateversions
icon: mdi:check-decagram
name: Update Versions
tap_action:
action: call-service
service: script.updateversions
- type: entity-button
entity: script.recorder_repack_db
icon: mdi:script-text-outline
name: Repack Database
tap_action:
action: call-service
service: script.recorder_repack_db
- type: custom:apexcharts-card
graph_span: 24h
header:
show: true
title: Media Management
apex_config:
responsive:
- breakpoint: 765
options:
chart:
height: 500px
- breakpoint: 1025
options:
chart:
height: 400px
- breakpoint: 10000
options:
chart:
height: auto
stroke:
curve: smooth
chart:
zoom:
enabled: true
toolbar:
show: true
tools:
zoom: true
zoomin: true
zoomout: true
pan: true
reset: true
plotOptions:
bar:
columnWidth: '50%'
series:
- entity: sensor.sabnzbd_memory
show:
extremas: true
stroke_width: 3
name: Sabnzbd
type: line
group_by:
func: avg
duration: 1h
- entity: sensor.sonarr_memory
show:
extremas: true
stroke_width: 3
name: Sonarr
type: line
group_by:
func: avg
duration: 1h
- entity: sensor.radarr_memory
show:
extremas: true
stroke_width: 3
name: Radarr
type: line
group_by:
func: avg
duration: 1h
- type: entities
title: Docker Containers
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Containers
padding: 0
entities:
- input_boolean.retrigger
- script.restartvscode
- switch.ha_dockermon_sabnzbd
- switch.ha_dockermon_sonarr
- switch.ha_dockermon_radarr
- switch.ha_dockermon_lazylibrarian
- switch.ha_dockermon_portainer
- type: custom:flex-table-card
sort_by: name+
clickable: true
title: Docker Memory Now (MB)
entities:
include: sensor.*_memory
columns:
- name: Name
data: name
- name: Used Now
data: state
- type: custom:flex-table-card
sort_by: name+
clickable: true
title: Docker Memory Average (MB)
entities:
include: sensor.*_memory_average
columns:
- name: Name
data: name
- name: Minimum
data: min_value
- name: Average
data: state
- name: Maximum
data: max_value
- type: 'custom:config-template-card'
entities:
- device_tracker.davids_iphone
- device_tracker.david_s_ipad
- sensor.david_s_ipad_battery_level
- sensor.davids_iphone_battery_level
- sensor.davids_iphone_battery_state
- sensor.david_s_ipad_battery_state
card:
type: 'custom:hui-entities-card'
title: iOS Devices
show_header_toggle: false
entities:
- entity: person.david
- entity: sensor.travel_to_home_duration
- entity: person.liz
- entity: device_tracker.davids_iphone
- entity: sensor.davids_iphone_battery_level
name: "${'Battery Status:' + '\xa0'.repeat(5) + states['sensor.davids_iphone_battery_state'].state + '\xa0'.repeat(5) + 'Level:'}"
- entity: device_tracker.david_s_ipad
- entity: sensor.david_s_ipad_battery_level
name: "${'Battery Status:' + '\xa0'.repeat(5) + states['sensor.david_s_ipad_battery_state'].state + '\xa0'.repeat(5) + 'Level:'}"
- type: vertical-stack
cards:
- type: entities
title: Internet
show_header_toggle: false
entities:
- entity: sensor.speedtest_download
secondary_info: last-updated
- entity: sensor.speedtest_download_average
secondary_info: last-updated
- entity: sensor.speedtest_upload
secondary_info: last-updated
- entity: sensor.speedtest_upload_average
secondary_info: last-updated
- entity: sensor.speedtest_ping
secondary_info: last-updated
- entity: sensor.speedtest_lastrun
format: relative
- binary_sensor.fritz_box_7590_connection
- entity: sensor.nbn_status
- type: horizontal-stack
cards:
- type: gauge
name: Mbit/s Download
unit: ' '
min: 0
max: 50
severity:
red: 0
yellow: 30
green: 40
entity: sensor.speedtest_download
- type: gauge
name: Mbit/s Upload
unit: ' '
min: 0
max: 20
severity:
red: 0
yellow: 11
green: 15
entity: sensor.speedtest_upload
- type: custom:apexcharts-card
graph_span: 24h
header:
show: true
title: Speedtest
apex_config:
responsive:
- breakpoint: 765
options:
chart:
height: 500px
- breakpoint: 1025
options:
chart:
height: 400px
- breakpoint: 10000
options:
chart:
height: auto
stroke:
curve: smooth
chart:
zoom:
enabled: true
toolbar:
show: true
tools:
zoom: true
zoomin: true
zoomout: true
pan: true
reset: true
plotOptions:
bar:
columnWidth: '50%'
legend:
showForSingleSeries: true
series:
- entity: sensor.speedtest_download
show:
extremas: true
stroke_width: 3
fill_raw: last
name: Download
type: line
group_by:
func: raw
duration: 30min