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

Delete checkpoint_asg_resource.py

parent db529a39
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics import (
metric_info,
graph_info,
perfometer_info,
)
metric_info['checkpoint_asg_resource_percent_used'] = {
'title': _('Used'),
'unit': '%',
'color': '26/a',
}
graph_info['checkpoint_asg_resource_connections'] = {
'title': _('Check Point SMO Concurrent Connections'),
'metrics': [
('checkpoint_asg_resource_percent_used', 'area'),
],
'scalars': [
('checkpoint_asg_resource_percent_used:crit', _('crit')),
('checkpoint_asg_resource_percent_used:warn', _('warn')),
],
'range': (0, 110),
}
perfometer_info.append({
'type': 'linear',
'segments': ['checkpoint_asg_resource_percent_used'],
'total': 100,
})
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