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

Delete cisco_asa_connections.py

parent 84edae96
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Cisco ASA connections metrics plugin
#
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics import (
metric_info,
graph_info,
)
metric_info['fw_connections_active'] = {
'title': _('Active conections'),
'unit': 'count',
'color': '26/a',
}
metric_info['fw_connections_peak'] = {
'title': _('Peak conections'),
'unit': 'count',
'color': '16/a',
}
graph_info['cisco_asa_connections'] = {
'title': _('Firewall connections'),
'metrics': [
('fw_connections_active', 'line'),
('fw_connections_peak', 'area'),
],
'scalars': [
('fw_connections_active:crit', _('crit level')),
('fw_connections_active:warn', _('warn level')),
],
}
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