Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 972f88ca authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent f26a85d4
No related branches found
No related tags found
No related merge requests found
[PACKAGE]: ../../raw/master/mkp/checkpoint_securexl-0.2.0-20230529.mkp "checkpoint_securexl-0.2.0-20230529.mkp"
# SecureXL # SecureXL
Monitors status of Check Point SecureXL Monitors status of Check Point SecureXL
......
File deleted
File deleted
File moved
File added
...@@ -9,5 +9,5 @@ ...@@ -9,5 +9,5 @@
'title': 'Check Point SecureXL status', 'title': 'Check Point SecureXL status',
'version': '0.2.0-20230529', 'version': '0.2.0-20230529',
'version.min_required': '2.1.0b1', 'version.min_required': '2.1.0b1',
'version.packaged': '2.1.0p21', 'version.packaged': '2.2.0p24',
'version.usable_until': None} 'version.usable_until': None}
\ No newline at end of file
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2018-03-14
#
# Check Point SecureXL staus metrics plugin
# checkpoint_securexl
#
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics import (
metric_info,
graph_info,
perfometer_info,
)
metric_info['checkpoint_securexl_active'] = {
'title': _('Connections active'),
'unit': 'count',
'color': '26/a',
}
metric_info['checkpoint_securexl_added'] = {
'title': _('Connections added'),
'unit': '1/s',
'color': '21/a',
}
metric_info['checkpoint_securexl_deleted'] = {
'title': _('Connections deleted'),
'unit': '1/s',
'color': '31/a',
}
graph_info['checkpoint_securexl_connections_active'] = {
'title': _('Check Point SecureXL Connections active'),
'metrics': [
('checkpoint_securexl_active', 'area'),
],
}
graph_info['checkpoint_securexl_connections_rate'] = {
'title': _('Check Point SecureXL Connections added/deleted'),
'metrics': [
('checkpoint_securexl_deleted', '-area'),
('checkpoint_securexl_added', 'area'),
],
}
perfometer_info.append({
'type': 'logarithmic',
'metric': 'checkpoint_securexl_active',
'half_value': 2000.0,
'exponent': 2,
}, )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment