From 3c789831bfd9c5606ea3c12b033456b09c7fb37e Mon Sep 17 00:00:00 2001
From: thl-cmk <thl-cmk@outlook.com>
Date: Wed, 7 Jun 2023 15:05:54 +0000
Subject: [PATCH] Delete cisco_wlc_temp.py

---
 web/plugins/metrics/cisco_wlc_temp.py | 71 ---------------------------
 1 file changed, 71 deletions(-)
 delete mode 100644 web/plugins/metrics/cisco_wlc_temp.py

diff --git a/web/plugins/metrics/cisco_wlc_temp.py b/web/plugins/metrics/cisco_wlc_temp.py
deleted file mode 100644
index 30ec405..0000000
--- a/web/plugins/metrics/cisco_wlc_temp.py
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/usr/bin/python
-# -*- encoding: utf-8; py-indent-offset: 4 -*-
-#
-# Cisco wlc temperature metrics plugin
-#
-# Author: Th.L.
-# Date  : 2018-03-18
-#
-#
-
-#####################################################################################################################
-#
-# define units
-#
-#####################################################################################################################
-
-
-
-#####################################################################################################################
-#
-# define metrics
-#
-#####################################################################################################################
-
-metric_info['cisco_wlc_temp_celsius'] = {
-    'title': _('Internal temperature'),
-    'unit': 'c',
-    'color': '26/a',
-}
-
-######################################################################################################################
-#
-# map perfdata to metric
-#
-######################################################################################################################
-
-check_metrics['check_mk-cisco_wlc_temp'] = {
-    'celsius': {'name': 'cisco_wlc_temp_celsius', },
-}
-
-######################################################################################################################
-#
-# how to graph perdata
-#
-######################################################################################################################
-
-graph_info.append({
-    'title': _('WLAN controller internal temperature'),
-    'metrics': [
-        ('cisco_wlc_temp_celsius', 'area'),
-    ],
-    'range': (0, 'cisco_wlc_temp_celsius:max'),
-    'scalars': [
-        ('cisco_wlc_temp_celsius:crit', _('crit level')),
-        ('cisco_wlc_temp_celsius:warn', _('warn level')),
-    ],
-})
-
-
-######################################################################################################################
-#
-# define perf-o-meter
-#
-######################################################################################################################
-
-perfometer_info.append({
-    'type': 'logarithmic',
-    'metric': 'cisco_wlc_temp_celsius',
-    'half_value': 150,
-    'exponent': 2,
-})
-- 
GitLab