- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there any possible solution to monitor the inode usage of linux system in Splunk?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you need to install an Add-on for Linux and modify/copy its df.sh script, change
CMD='df -TPh'
to
CMD='df -TPhi'
you can remove -h parameter too.
Output will be:
Filesystem Type Size Used Avail UsePct MountedOn
/dev/sda1 ext4 57G 19G 35G 36% /
and without -h:
Filesystem Type Size Used Avail UsePct MountedOn
/dev/sda1 ext4 7627488 104349 7523139 2% /
you can modify the FORMAT and HEADER variables in df.sh further to show Inodes/IUsed/IFree/IUse% instead of Size/Used/Avail/UsePct
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you need to install an Add-on for Linux and modify/copy its df.sh script, change
CMD='df -TPh'
to
CMD='df -TPhi'
you can remove -h parameter too.
Output will be:
Filesystem Type Size Used Avail UsePct MountedOn
/dev/sda1 ext4 57G 19G 35G 36% /
and without -h:
Filesystem Type Size Used Avail UsePct MountedOn
/dev/sda1 ext4 7627488 104349 7523139 2% /
you can modify the FORMAT and HEADER variables in df.sh further to show Inodes/IUsed/IFree/IUse% instead of Size/Used/Avail/UsePct
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@PavelP Thanks a lot, that works like a charm!!!
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thank you @Vinesh93 , please accept the answer as solution so everybody can benefit from it
