check_mk-exch-mbox/web/plugins/wato/exchange_mbx_size_check_par...

28 lines
687 B
Python
Raw Normal View History

2014-12-22 16:59:23 +02:00
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# 2014 Marius Pana mp@sphs.ro
register_check_parameters(
subgroup_applications,
"exchange_user_mbx_size",
_("MS Exchange User Mailbox Size"),
Dictionary(
elements = [
("Maximum Mailbox Size",
Integer(
title = _("Warning if above"),
unit = _("MB"),
default_value = 1500
),
Integer(
title = _("Critical if above"),
unit = _("MB"),
default_value = 2000
),
),
]
2014-12-22 16:59:23 +02:00
),
None,
"dict"
2014-12-22 16:59:23 +02:00
)