System Monitoring - How does yours look?

Would you mind sharing the config for temperature-humidity monitoring? Not sure how you got both data (Celcius and %) shown in there.

1 Like

Of course :slight_smile: :

card:
  color: white
  entities:
    - cards:
        - cards:
            - card:
                animate: true
                entities:
                  - entity: sensor.temperature_mi
                    name: hőmérséklet
                  - entity: sensor.humidity_mi
                    name: páratartalom
                    show_state: true
                font_size: 80
                hour24: true
                hours_to_show: 72
                icon: 'mdi:weather-partlycloudy'
                legend: true
                name: külső
                show:
                  graph: line
                type: 'custom:mini-graph-card'
              style:
                background-color: 'rgba(0,0,20,0.3)'
                background-repeat: no-repeat
                background-size: 100% 100%
                border: 'solid 1px rgba(57,128,228,0.4)'
                border-radius: 20px
                transform: scale(0.95)
              type: 'custom:card-modder'
          type: horizontal-stack
      type: 'custom:vertical-stack-in-card'
    - cards:
        - cards:
            - card:
                animate: true
                entities:
                  - entity: sensor.temperature_temperature
                    name: nappali
                    show_state: true
                  - entity: sensor.broadlink_sensor_temperature
                    name: szoba
                    show_state: true
                font_size: 75
                icon: 'mdi:home'
                name: hőmérséklet
                type: 'custom:mini-graph-card'
              style:
                background-color: 'rgba(0,0,20,0.3)'
                background-repeat: no-repeat
                background-size: 100% 100%
                border: 'solid 1px rgba(57,128,228,0.4)'
                border-radius: 20px
                transform: scale(0.95)
              type: 'custom:card-modder'
            - card:
                animate: true
                entities:
                  - entity: sensor.temperature_humidity
                    name: nappali
                    show_state: true
                  - entity: sensor.broadlink_sensor_humidity
                    name: szoba
                    show_state: true
                font_size: 75
                icon: 'mdi:home'
                name: páratartalom
                type: 'custom:mini-graph-card'
              style:
                background-color: 'rgba(0,0,20,0.3)'
                background-repeat: no-repeat
                background-size: 100% 100%
                border: 'solid 1px rgba(57,128,228,0.4)'
                border-radius: 20px
                transform: scale(0.95)
              type: 'custom:card-modder'
          type: horizontal-stack
      type: 'custom:vertical-stack-in-card'
  show_header_toggle: false
  type: entities
style:
  background-color: 'rgba(0,0,20,0.6)'
  background-image: url("/local/pictures/cardback.png")
  background-repeat: no-repeat
  background-size: 100% 100%
  border: 'solid 1px rgba(57,128,228,0.4)'
  border-radius: 20px
type: 'custom:card-modder'
5 Likes

I think mine is exactly the same as @krovachek

## Database size
- platform: sql
  db_url: !secret mariadb_url
  queries:
  - name: Database Size
    query: 'SELECT table_schema "database", Round(Sum(data_length + index_length) / 1048576, 2) "value" FROM information_schema.tables WHERE table_schema="homeassistant" GROUP BY table_schema'
    column: 'value'
    unit_of_measurement: MB

We must have stolen it from the same post :smile:

1 Like

Thank you guys I got it working!

it’s a wifi sensor

  - platform: command_line
    name: Wifi Signal
    command: 'iwconfig wlan0 |grep Signal|cut -d"=" -f3|cut -d" " -f1'
    unit_of_measurement: " dBm"
    value_template: '{{ value | round(1) }}'

image

3 Likes

I can’t work out how you got the border around the outside of your card (see, Card modder and vertical-stack-in-card )

In fact I can’t work out how you got your card to show at all. It looks like you have your vertical/horizontal stack in cards listed in an entities card but when I try that nothing shows up. Which is what I would expect. An entities card only supports lists of entities not cards.

Thank you for ideas :+1:
1080p not enough for all my sensors, Home Assistant needs 4k :sunglasses:

1 Like

Hey bro, how did you get the stats from your Eaton UPS?? I have a 5PX !

Used NUT addon from this repo: https://github.com/RoosterX/hassio-addons
with NUT sensor: https://www.home-assistant.io/components/nut/

how did u get the latest hass.io version sensor?

## HA version  
- platform: version

## HA available version
- platform: version
  name: Latest Available Version
  beta: false
  source: hassio
4 Likes

Simple and clean.

6 Likes

Can you provide the code for the github part. Thank you.

Got alot of inspiration from this thread! Thanks! working on sliming it down to fit the screen better :slight_smile:

I made an entity-row version of ljmerza’s github-card, so you can use either depending on how you want to display them.

3 Likes

Thank you. Looks great.

You can adjust the updater card background transparency if you wrap it in the custom card modder. Will make it fit in with your other cards better, I like your colour scheme btw.

1 Like

i have been trying to find how to do that, any pointers? :slight_smile:
I have only this today:

type: 'custom:card-modder'
style:
  background-color: 'rgba(0,0,0,0.50)'
  border-radius: 10px
card:
  type: 'custom:tracker-card'

edit:
Never mind, found it out:

type: 'custom:card-modder'
style:
  background-color: 'rgba(0,0,0,0.50)'
  '--paper-card-background-color': 'rgba(0,0,0,0.50)'
  '--secondary-background-color': 'rgba(0,0,0,0.10)'
  border-radius: 10px
card:
  type: 'custom:tracker-card'

3 Likes

Still work in progress

8 Likes

I’ve also got an unraid box and been trying to figure out how to get the total usage/free space across the array. Is that what the green unraid disk sensor is showing? If so, how did you get sensor?