Back to Geneos FAQ

Disk - How to monitor Disk Inodes?

You can use Disk plugin to monitor the total nodes and free inodes.

Geneos - Disk - How to monitor Disk Inodes?

You can use Auto detect or configure manually the partitions.

Output:

Geneos - Disk - How to monitor Disk Inodes?

If you want to monitor specific inodes only you can use a script and a toolkit plugin.

Example Script that uses df -i command:

#!/bin/bash
echo "Filesystem,Inodes,Used,Free,Use%"
df -i | tail -n +2 | awk '{print $1 "," $2 "," $3 "," $4 "," $5}'

After creating the script in the server, you can use Toolkit sampler to integrate the newly created script.

Geneos - Disk - How to monitor Disk Inodes?

Output:

Geneos - Disk - How to monitor Disk Inodes?

["Geneos"] ["Geneos > Netprobe"] ["FAQ"]

Was this topic helpful?