mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added support Ericsson MINI-LINK (#10546)
* Added support Ericsson MINI-LINK * cleaning
This commit is contained in:
committed by
PipoCanaja
parent
259fc28b05
commit
f16805b71d
13
includes/definitions/ericsson-ml.yaml
Normal file
13
includes/definitions/ericsson-ml.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
os: ericsson-ml
|
||||
text: 'Ericsson MINI-LINK'
|
||||
type: wireless
|
||||
empty_ifdescr: true
|
||||
icon: ericsson
|
||||
over:
|
||||
- { graph: device_processor, text: 'CPU Usage' }
|
||||
- { graph: device_bits, text: 'Device Traffic' }
|
||||
discovery:
|
||||
- sysObjectID: .1.3.6.1.4.1.193.223.2.1
|
||||
mib_dir:
|
||||
- ericsson
|
||||
|
22
includes/discovery/sensors/temperature/ericsson-ml.inc.php
Normal file
22
includes/discovery/sensors/temperature/ericsson-ml.inc.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS
|
||||
*
|
||||
* Copyright (c) 2017 Martin Zatloukal <slezi2@pvfree.net>
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or (at your
|
||||
* option) any later version. Please see LICENSE.txt at the top level of
|
||||
* the source code distribution for details.
|
||||
*/
|
||||
|
||||
d_echo('ERICSSON-ML');
|
||||
$oid = ".1.3.6.1.4.1.193.223.2.4.1.1.2.1";
|
||||
$index = 0;
|
||||
$sensor_type = ' temperatureRadio';
|
||||
$descr = 'Internal Temp';
|
||||
$divisor = 1;
|
||||
$temperature = (snmp_get($device, $oid, '-Oqv', 'PT-MONITOR-MIB') / $divisor);
|
||||
if (is_numeric($temperature)) {
|
||||
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensor_type, $descr, $divisor, null, null, null, null, null, $temperature);
|
||||
}
|
Reference in New Issue
Block a user