Sensor.systemmonitor truncated in web UI

Using last_boot (and a few others) from https://home-assistant.io/components/sensor.systemmonitor/ get truncated in a circle and not readable.

Is there additional config needed?

sensor:
  - platform: systemmonitor
    resources:
      - type: disk_use_percent
        arg: c:\
      - type: disk_use
        arg: c:\
      - type: disk_free
        arg: c:\
      - type: memory_free
      - type: processor_use
      - type: last_boot
      - type: since_last_boot

You can put them in a group.

You :star:! That helped greatly, ended up going with:

# https://home-assistant.io/components/group/
group:
  machine_info:
    name: System Info
    entities:
      - sensor.disk_use_c
      - sensor.disk_use_c_2
      - sensor.disk_free_c
      - sensor.ram_free
      - sensor.cpu_use
      - sensor.last_boot
      - sensor.since_last_boot

Thank you.

The badges works fine for short, numerical values.