check_mk-exchange-database-.../web/plugins/wato/exchange_db_size_check_para...

19 lines
482 B
Python

#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# 2014 Marius Pana mp@sphs.ro
register_check_parameters(
subgroup_applications,
"exchange_db_size",
_("MS Exchange Database Size"),
Tuple(
title = _('Maximum Database Size'),
elements = [
Integer(title = _("Warning if above"), default_value = 20000 ),
Integer(title = _("Critical if above"), default_value = 25000 ),
]
),
None,
None,
)