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 62031a52 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent aa204a8d
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,9 @@
# 2021-09-06: rewritten for CMK 2.0
# 2021-09-07: added WATO for check and discovery function
# renamed from checkpoint_vsx to checkpoint_vsx_system
# 2021-09-21: changed graph definition for packets graph to stack
# 2021-09-24: changed graph definition for connections graph to make it scale with
# the active connections (suggested by raulcurro[at]gmail[dot]com)
#
# snmpwalk sample
#
......
No preview for this file type
......@@ -15,7 +15,7 @@
'name': 'checkpoint_vsx_system',
'num_files': 3,
'title': 'Check Point VSX system status and counter',
'version': '20210921.v.0.3a',
'version': '20210924.v.0.3b',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
......@@ -16,6 +16,7 @@ from cmk.gui.plugins.metrics import (
metric_info,
graph_info,
perfometer_info,
check_metrics,
)
metric_info['checkpoint_vsx_connections'] = {
......@@ -77,19 +78,21 @@ metric_info['checkpoint_vsx_loggs_send'] = {
'color': '14/a',
}
check_metrics['check_mk-checkpoint_vsx_system'] = {
'checkpoint_vsx_connections_peak': {'auto_graph': False},
'checkpoint_vsx_connections_limit': {'auto_graph': False},
}
graph_info['checkpoint_vsx_connections'] = {
'title': _('Check Point VSX: Connections'),
'metrics': [
('checkpoint_vsx_connections_limit', 'line'),
('checkpoint_vsx_connections_peak', 'line'),
('checkpoint_vsx_connections', 'area'),
],
'scalars': [
('checkpoint_vsx_connections:crit', _('crit')),
('checkpoint_vsx_connections:warn', _('warn')),
],
'optional_metrics': [
'checkpoint_vsx_connections_limit'
('checkpoint_vsx_connections_limit', _('limit')),
('checkpoint_vsx_connections_peak', _('peak')),
],
}
......
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