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

Delete checkpoint_asg_path_distribution.py

parent 5173f0ca
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_path_distribution_acceleration'] = {
'title': _('Accelerated'),
'unit': 'count',
'color': '26/a',
}
metric_info['checkpoint_asg_path_distribution_medium'] = {
'title': _('Medium'),
'unit': 'count',
'color': '32/a',
}
metric_info['checkpoint_asg_path_distribution_firewall'] = {
'title': _('Firewall'),
'unit': 'count',
'color': '23/a',
}
metric_info['checkpoint_asg_path_distribution_dropped'] = {
'title': _('Dropped'),
'unit': 'count',
'color': '14/a',
}
graph_info['checkpoint_asg_path_distribution'] = {
'title': _('Check Point Path Distribution'),
'metrics': [
('checkpoint_asg_path_distribution_dropped', 'stack'),
('checkpoint_asg_path_distribution_firewall', 'stack'),
('checkpoint_asg_path_distribution_medium', 'stack'),
('checkpoint_asg_path_distribution_acceleration', 'stack'),
],
}
perfometer_info.append({
'type': 'linear',
'segments': [
'checkpoint_asg_path_distribution_acceleration',
'checkpoint_asg_path_distribution_medium',
'checkpoint_asg_path_distribution_firewall',
'checkpoint_asg_path_distribution_dropped',
],
# 'total': 100.0,
})
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