AIX Disk
AIX Disk collector collects filesystem capacity and inode information through df, and supplements filesystem types through lsfs.
Configuration¶
[collectors.disk]
# Whether to enable the disk collector.
enabled = true
# Collection interval.
interval = "10s"
Command Dependencies¶
| Command | Description |
|---|---|
df -Pk |
Collect capacity information. |
df -k -i |
Collect inode information. |
lsfs -q |
Supplement fstype. |
Metrics¶
disk¶
| Tags & Fields | Description |
|---|---|
| device ( tag) |
Filesystem device name. |
| mount_point ( tag) |
Mount point. |
| fstype ( tag) |
Filesystem type; unknown when unavailable. |
| host ( tag) |
Hostname. |
| total | Total capacity. Type: int | (gauge) Unit: byte |
| used | Used capacity. Type: int | (gauge) Unit: byte |
| free | Available capacity. Type: int | (gauge) Unit: byte |
| used_percent | Capacity usage percentage. Type: float | (gauge) Unit: percent |
| inodes_total | Total number of inodes. Type: int | (gauge) Unit: count |
| inodes_free | Number of free inodes. Type: int | (gauge) Unit: count |
| inodes_used_percent | Inode usage percentage. Type: float | (gauge) Unit: percent |