Problem/Question
I have Netdata Cloud installed in a docker container. Everything is working great, but I’m not seeing disk space for my drives in raid 1 mounted in /mnt/md0. I do see I/O info for it within the disks section of Netdata. Storage space for my main drive is working and shown within disk.space.
Relevant docs you followed/actions you took to solve the issue
My docker-compose.yaml is:
version: '3'
services:
  netdata:
    image: netdata/netdata
    container_name: netdata
    hostname: deskmini # set to fqdn of host
    ports:
      - 19999:19999
    restart: unless-stopped
    cap_add:
      - SYS_PTRACE
    security_opt:
      - apparmor:unconfined
    volumes:
      - netdataconfig:/etc/netdata
      - netdatalib:/var/lib/netdata
      - netdatacache:/var/cache/netdata
      - /etc/passwd:/host/etc/passwd:ro
      - /etc/group:/host/etc/group:ro
      - /proc:/host/proc:ro
      - /sys:/host/sys:ro
      - /etc/os-release:/host/etc/os-release:ro
    environment:
      - NETDATA_CLAIM_TOKEN=removed
      - NETDATA_CLAIM_URL=https://app.netdata.cloud
      - NETDATA_CLAIM_ROOMS=
volumes:
  netdataconfig:
  netdatalib:
  netdatacache:
Any ideas?