Then in order to make sure that you have discovered all existing filesystems, you may need to re-initialize discovery of existing filesystems. This procedure describes how to do so.
The approach/process outlined here does not involve MCS.
UIM 8.x or higher
Component: UIMCDM
- configuration requirements/filesystem discovery
Simplified version using the clear tag for the fixed section - use the clear tag within the <fixed> section. This will remove existing disks, and force a rediscovery after the next restart of the cdm probe.
<disk> overwrite
<alarm>
<fixed> clear
</fixed>
</alarm>
</disk>
If you want to set a static threshold for a specific filesystem while resetting the rest to defaults, you can do so by including the filesystem threshold details. This must be placed after the <fixed> clear directive, and before <fixed_default>, as in the following example setting static alarm thresholds for a filesystem called "/data":
<disk> overwrite
<fixed> clear
</fixed>
<alarm> overwrite
active = yes
<fixed> overwrite
<#data> overwrite
active = yes
<error> overwrite
active = yes
message = DiskError
threshold = 20
</error>
<warning> overwrite
active = yes
message = DiskWarning
threshold = 10
</warning>
</#data>
</fixed>
</alarm>
<fixed_default> overwrite
Monitor_Newly_Discovered_Disk_OnTheFly = yes
(other defaults here)
</fixed_default>
</disk>