lausser / check_db2_health

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.
https://omd.consol.de/docs/plugins/check_db2_health
GNU General Public License v2.0
8 stars 1 forks source link

DMS Tablespaces #4

Open Mikesch-mp opened 7 years ago

Mikesch-mp commented 7 years ago

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