Problem/Question
I have a proxmox server with several lxc containers . These mount their storage from subvolumes of a disk under btrfs.
Examle:
/dev/sda /mnt/recordings btrfs rw,noatime,ssd,space_cache,subvolid=1167,subvol=/data/recordings 0 0
/dev/sda /mnt/music_export btrfs rw,noatime,ssd,space_cache,subvolid=1429,subvol=/data/music_export 0 0
/dev/sda /mnt/video btrfs rw,noatime,ssd,space_cache,subvolid=1432,subvol=/data/video 0 0
/dev/sda /mnt/audio btrfs rw,noatime,ssd,space_cache,subvolid=1428,subvol=/data/audio 0 0
/dev/sda /mnt/assets btrfs rw,noatime,ssd,space_cache,subvolid=1427,subvol=/data/assets 0 0
/dev/sda /mnt/text btrfs rw,noatime,ssd,space_cache,subvolid=1431,subvol=/data/text 0 0
/dev/sda /mnt/photo btrfs rw,noatime,ssd,space_cache,subvolid=1430,subvol=/data/photo 0 0
/dev/sda /mnt/technical btrfs rw,noatime,ssd,space_cache,subvolid=2789,subvol=/data/technical 0 0
In this case netdata show only /mnt/text
This is technically correct, because these subvolumes don’t have quota and indeed the full capacity of the volume /dev/sda is available.
It would be not better to show this capacity for every mountpoint (Or would it). But it seems random that just `text’ is shown here.
As I understand it the purpose of btrfs subvolumes is to separate several chunks of data and i wanted to make it visible which kind of data can be handled by which lxc container.
How do you handle sutuations like this ?