A plugin (monitoring-plugin, not nagios-plugin, see also http://is.gd/PP1330) which checks various parameters of DB2 database servers. This plugin is also part of OMD, go to https://labs.consol.de/repo/, install OMD and there you have check_db2_health.
i have a large amount of DB2 tablespaces that are configured with:
Using automatic storage = No
Auto-resize enabled = Yes
In mode = dms-tablespace-free, all these tablespaces are still checked. I think theys should not be checked, becuase they are have auto-resize enabled.
next if ($params{mode} =~ /::dms::manual$/ && ($type ne 'dms' || $tbsp_using_auto_storage));
should be
next if ($params{mode} =~ /::dms::manual$/ && ($type ne 'dms' || $tbsp_using_auto_storage || $tbsp_auto_resize_enabled));
Hello,
i have a large amount of DB2 tablespaces that are configured with:
Using automatic storage = No Auto-resize enabled = Yes
In mode = dms-tablespace-free, all these tablespaces are still checked. I think theys should not be checked, becuase they are have auto-resize enabled.
next if ($params{mode} =~ /::dms::manual$/ && ($type ne 'dms' || $tbsp_using_auto_storage));
should be
next if ($params{mode} =~ /::dms::manual$/ && ($type ne 'dms' || $tbsp_using_auto_storage || $tbsp_auto_resize_enabled));
Regards, Carsten