No alerts generate when /app mount is full

  • KM1464356
  • 03-Sep-2012
  • 26-Sep-2012

Summary

When the mount point /app gets filled, OSSPI does not send any alert to the message browser.

Error

OSSPI does not send any alert when the mount point /app is full.

Cause

The monitor has become disabled in osspi_fsmon-hash.cfg file.

'/app' => {
'smessage' => 'undef',
'entry' => 'mtab',
'mntopts' => 'dev=4a03a98',
'monitor' => 'disabled',
'fsname' => '/app',
'thresholds' => '90/,95/,97/,99/',
'mntpoint' => '/app',
'mounted' => 'yes',
'imessage' => 'undef',
'spaceStat' => '44.73',
'inodeStat' => '1.90',
'fstype' => 'lofs'
}

Fix

Check "osspi_fs.pm" file in the /var/opt/OV/bin/instrumentation directory.

Go to the line no-31 and remove the FSTYPE "lofs" from the my $FSFILTER:

From:

my $FSFILTER="devpts|proc|swap|mntfs|noauto|tmpfs|dump|net|fd|autofs|namefs|NMP|ignore|NTY|cdfs|iso9660|cdrfs|usbdevfs|binfmt_misc|hsfs|ctfs|objfs|devfs|lofs";
To:

my $FSFILTER="devpts|proc|swap|mntfs|noauto|tmpfs|dump|net|fd|autofs|namefs|NMP|ignore|NTY|cdfs|iso9660|cdrfs|usbdevfs|binfmt_misc|hsfs|ctfs|objfs|devfs;

The monitor of the filesystem /app should be enabled in osspi_fsmon-hash.cfg file.