Keep Your Home In Check: System Monitor For Home Assistants

Поділитися
Вставка
  • Опубліковано 16 січ 2025

КОМЕНТАРІ • 52

  • @ronaldgaupin7060
    @ronaldgaupin7060 10 місяців тому +3

    The home assistant videos are always good. Nice work.

    • @BeardedTinker
      @BeardedTinker  10 місяців тому

      Glad you like them! And Thanks for becoming the member Ronald!!!

  • @JamesTenniswood
    @JamesTenniswood 3 місяці тому +1

    Glances is good if you use HA inside docker. Good for multiple machines too

  • @alexsimmons1803
    @alexsimmons1803 10 місяців тому +1

    Thanks for the tip. Installed and as a result I just noticed my VM disk was getting fuller than expected. Removed a couple of snapshots and freed up a stack of space. Will set up a warning automation to notify me when disk exceeds a threshold.

    • @BeardedTinker
      @BeardedTinker  10 місяців тому +1

      That's great!!! Thank you for the comment!!

  • @carltonwbrooks
    @carltonwbrooks 10 місяців тому +1

    Helped me tweak a few settings I did not know about.

  • @scantrain5007
    @scantrain5007 4 місяці тому +1

    Just been following your advises in this video. Did not expect that all working well. BUT: Surprise! Get all Datas I want from my Rapsberry Pi5!
    Many thanks, thumb up and abo...

  • @MartinHiggs84
    @MartinHiggs84 10 місяців тому +3

    Nice 😊 I can use this to control PWM Fan on RPI instead of always on based on CPU Temp

    • @BeardedTinker
      @BeardedTinker  10 місяців тому +1

      Nice - I use it for exactly the same thing - to control fan on RPi.

  • @ViktorPolyakov15
    @ViktorPolyakov15 9 місяців тому +1

    Thanks for your videos. You can explain topics very clearly and understandable. Could you tell us about how to control messages in the log file?
    Thanks!

    • @BeardedTinker
      @BeardedTinker  9 місяців тому

      Thank you very much. Next video (on Thursday) will be about Maintaining Home Assistant and I'll also talk about Log files there - among other things.

  • @waltervos8537
    @waltervos8537 9 місяців тому +1

    Thanks for another helpfull video! How I can get the Disk use in % instead of Gib?

    • @BeardedTinker
      @BeardedTinker  9 місяців тому

      Glad it was helpful! In my setup, sensor is called Disk Usage - it gives %, same as Memory Usage.

    • @waltervos8537
      @waltervos8537 9 місяців тому

      @@BeardedTinkerThanks for the answer. When I used the Dutch name (Schijfgebruik) instead of the english, the value in % was showned. Problem solved.

  • @ivicaglavan1409
    @ivicaglavan1409 3 місяці тому +1

    Kao i obično, izvrstan uradak.

  • @YossiTurbine13
    @YossiTurbine13 Місяць тому

    Do you have a video for noob for customizing the dashboard like this ?

  • @PatrickBulteel
    @PatrickBulteel 10 місяців тому +1

    Awesome. I can now avoid an issue I had - running out of disk space. Well, at least I get notified if it's over 85%.

    • @BeardedTinker
      @BeardedTinker  10 місяців тому

      Same here - I'm really pushing my HA Green - always above 80%
      And that reminds me - have to go clean it now :)

  • @davidprosen5637
    @davidprosen5637 8 місяців тому +1

    Ah, they did system monitor as an integration. (of course). Mini graph card is a good Good recommendation.

  • @scantrain5007
    @scantrain5007 4 місяці тому +1

    My knowledge of English language is not perfect. But I will try to take this video as a lesson for HA.
    With Greetings from Germany!

  • @M0PAX
    @M0PAX 10 місяців тому +1

    great video

  • @euhhhdouain5477
    @euhhhdouain5477 8 місяців тому +1

    Hi, nice video but do you know how to solve my issue, I don't find where i can change the update time (scan interval) of my sensors (cpu temp or usage disk or memory usage...) can you help me ?

    • @BeardedTinker
      @BeardedTinker  8 місяців тому

      Previously, when you were able to add them via YAML, you could have used scan_interval. Now, you can use build int option - check this documentation. I haven't tried, but this should work: www.home-assistant.io/common-tasks/general/#defining-a-custom-polling-interval

  • @xtremeideaz
    @xtremeideaz 10 місяців тому +1

    Thanks you the video, my biggest problem has been the disk usage. it seems to get filled up easily. Is there a way to free up space?
    I am running HA on Proxmox VM and i have been expanding the VM disk to mitigate this issue. Please me know if there's a way to free up the HA database or drive.

    • @BeardedTinker
      @BeardedTinker  9 місяців тому +1

      There is simple way to compact database and also to remove older database entities. This is what usually fills in storage. Planning to do video on that.

  • @KayStrobach
    @KayStrobach 10 місяців тому +3

    Please provide the yaml files for the dashboard 😊

    • @BeardedTinker
      @BeardedTinker  10 місяців тому +6

      This is full code (RAW from UI):
      path: default_view
      title: Home
      - icon: mdi:server-minus-outline
      cards:
      - type: horizontal-stack
      cards:
      - type: custom:mini-graph-card
      entities:
      - sensor.system_monitor_processor_temperature
      name: CPU temp
      line_color: red
      line_width: 8
      font_size: 75
      points_per_hour: 60
      hours_to_show: 5
      - type: custom:mini-graph-card
      entities:
      - sensor.memory_use_percent
      name: RAM used
      line_color: white
      line_width: 8
      font_size: 75
      points_per_hour: 60
      hours_to_show: 24
      - type: custom:mini-graph-card
      entities:
      - sensor.system_monitor_disk_use_percent
      name: Disk used
      line_color: blue
      line_width: 8
      font_size: 75
      points_per_hour: 60
      hours_to_show: 5
      - type: horizontal-stack
      cards:
      - type: custom:mini-graph-card
      entities:
      - entity: sensor.system_monitor_network_throughput_in_end0
      name: Throughput In
      hours_to_show: 4
      line_color: blue
      points_per_hour: 60
      - type: custom:mini-graph-card
      entities:
      - entity: sensor.system_monitor_network_throughput_out_end0
      name: Throughput Out
      hours_to_show: 4
      line_color: green
      points_per_hour: 60
      - type: custom:mini-graph-card
      name: CPU Load
      icon: mdi:server
      entities:
      - entity: sensor.load_1m
      name: 1m
      - entity: sensor.load_5m
      name: 5m
      - entity: sensor.load_15m
      name: 15m
      points_per_hour: 60
      hours_to_show: 8
      - type: vertical-stack
      cards:
      - type: tile
      entity: sensor.system_monitor_ipv4_address_end0
      color: green
      show_entity_picture: false
      hide_state: false
      vertical: false
      - type: tile
      entity: sensor.last_boot
      color: primary

    • @KayStrobach
      @KayStrobach 10 місяців тому +1

      @@BeardedTinkerAwesome - now i need to check everything, but it's an awesome insight.

    • @adfjasjhf
      @adfjasjhf 10 місяців тому +1

      @@BeardedTinkerThanks! Maybe it should be in the description as well so it can be easily found ;)

  • @loganboyd
    @loganboyd 10 місяців тому +1

    How do you get the links across the top toolbar?

    • @BeardedTinker
      @BeardedTinker  9 місяців тому

      Not sure I get what you are thinking off.

    • @loganboyd
      @loganboyd 9 місяців тому

      @@BeardedTinker I figured it out. When editing a dashboard you just add a new view or tab. Then those show up as clickable links across top menu bar

  • @danielroberts3844
    @danielroberts3844 7 місяців тому +1

    Which of the many network throughput options do you suggets?
    Network throughput in docker0
    Network throughput in end0
    Network throughput in hassio
    Network throughput in lo
    Network throughput out docker0
    Network throughput out end0
    Network throughput out hassio
    Network throughput out lo

    • @BeardedTinker
      @BeardedTinker  7 місяців тому

      Depends what you're running HA OS or Docker. But I would go for en0 - that should be your "external" connection form HA to world/network.

    • @danielroberts3844
      @danielroberts3844 7 місяців тому

      @@BeardedTinker Thank you for your reply - and the video itself. Do you mean end0?

  • @teddymller1656
    @teddymller1656 10 місяців тому +2

    Hi Bearded Tinker. first thanks for your videos! I would like to point you to another powerful app called glances. It works on both win and linux. You can even run it in a docker where it monitor the host. I use that setup on my unraid system. (Do not know about mac though) I find it better than system monitor. But depending how your Home Assistance instance is configured. I can see its merit.

    • @BeardedTinker
      @BeardedTinker  9 місяців тому

      Thanks - yes I've used glances but it's external to HA - this one is much simpler and great for just monitoring that system. Glances, same as UpTime Kuma are better in monitoring, but also more complex and required additional tools.

    • @teddymller1656
      @teddymller1656 9 місяців тому +1

      @@BeardedTinkerI see your point!

  • @squalazzo
    @squalazzo 9 місяців тому

    i see an inception there... what's the poing in having the ip address shown, if you need to access the UI through THAT ip address to see it? :D
    the only thing that can be useful is to get a notification if that changes (and in this case, you did bad configuration, not setting up a fixed ip and eventual dhcp reservation...)

    • @BeardedTinker
      @BeardedTinker  9 місяців тому +1

      If for example you use Nabu Casa internally and externally, that's a good way of shoving IP address. I'm using FQDN, so the same use case.

    • @squalazzo
      @squalazzo 9 місяців тому +1

      @@BeardedTinker i setup external access via cloudflare tunnel (domains with .xyz suffix cost just 1€ per year if JUST numeric, no alpha...), and local access via static ip out of dhcp range, work flawlessly

  • @die-a-tone
    @die-a-tone 11 днів тому

    4:44 is when he starts teling how to set it up to save you some time.

    • @BeardedTinker
      @BeardedTinker  11 днів тому

      Thanks for posting it - but video has index, you can simply click on it ;)

  • @mr.a5980
    @mr.a5980 9 місяців тому +1

    Bichitro from fiverr

  • @PedroSilva-fg9jn
    @PedroSilva-fg9jn 8 місяців тому +1

    Heey, I tried to replicate what you did but I don't get the notification if temperature goes above X value, here's my automation, am I missing something?
    - id: '1715039911353'
    alias: New automation
    description: ''
    trigger:
    - platform: numeric_state
    entity_id:
    - sensor.system_monitor_processor_temperature
    above: 19.6
    condition: []
    action:
    - service: notify.persistent_notification
    metadata: {}
    data:
    message: test
    mode: single
    My current temperature is around 40º never below that so I don't understand why I can't get the notification

    • @BeardedTinker
      @BeardedTinker  8 місяців тому +1

      Did it fall below and than go above again? Or is it constantly above?
      Trigger will only be triggered when it goes above, not if it is already above.

    • @PedroSilva-fg9jn
      @PedroSilva-fg9jn 8 місяців тому

      @@BeardedTinker you’re totally right, that was my problem!! Thank you so much 😄