Skip to content

Commit

Permalink
newdevice: Added Support for Radware / AlteonOS OS/Mem/Proc (#7220)
Browse files Browse the repository at this point in the history
* Added Support for Radware / AlteonsOS OS/Mem/Proc

* Discovery processors alteonos.inc.php

* Delete alteonos.inc.php

* file for discovery mempools

* File for discovery  processors alteonos.inc.php

* file for polling mempools alteonos.inc.php

* Update alteonos.inc.php
  • Loading branch information
sfini authored and laf committed Sep 1, 2017
1 parent 21283f4 commit b85269f
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 0 deletions.
17 changes: 17 additions & 0 deletions includes/discovery/mempools/alteonos.inc.php
@@ -0,0 +1,17 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Simone Fini <tomfordfirst@gmail.com>
* 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.
*/
if ($device['os'] == 'alteonos') {
$memutil = trim(snmp_get($device, '.1.3.6.1.4.1.1872.2.5.1.2.8.1.0', '-OvQ'));
if (is_numeric($memutil)) {
discover_mempool($valid_mempool, $device, 0, 'alteonos', 'Main Memory', '1', null, null);
}
}
16 changes: 16 additions & 0 deletions includes/discovery/processors/alteonos.inc.php
@@ -0,0 +1,16 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Simone Fini <tomfordfirst@gmail.com>
* 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.
*/
if ($device['os'] == 'alteonos') {
$oid = '.1.3.6.1.4.1.1872.2.5.1.2.2.1.0';
$usage = snmp_walk($device, $oid, '-Ovq');
discover_processor($valid['processor'], $device, $oid, 0, 'alteonos', 'Processor', '1', $usage);
}
26 changes: 26 additions & 0 deletions includes/polling/mempools/alteonos.inc.php
@@ -0,0 +1,26 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Simone Fini <tomfordfirst@gmail.com>
* 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.
*/

// AlteonOs Memory
// mpMemStatsTotal 1.3.6.1.4.1.1872.2.5.1.2.8.1.0
// mpMemStatsFree 1.3.6.1.4.1.1872.2.5.1.2.8.3.0

$total = snmp_get($device, ".1.3.6.1.4.1.1872.2.5.1.2.8.1.0", '-OvQ');
$free = snmp_get($device, ".1.3.6.1.4.1.1872.2.5.1.2.8.3.0", '-OvQ');
$perc = ($total / $free) * 100;
$used = ($total - $free);
if (is_numeric($used) && is_numeric($free) && is_numeric($perc)) {
$mempool['total'] = $total;
$mempool['free'] = $free;
$mempool['used'] = $used;
$mempool['perc'] = $perc;
}
18 changes: 18 additions & 0 deletions includes/polling/os/alteonos.inc.php
@@ -0,0 +1,18 @@
<?php
/**
* alteonos.inc.php
*
* LibreNMS os poller module for RADWARE/Alteon Application Switch
*
* Copyright (c) 2017 Simone Fini <tomfordfirst@gmail.com>
*
* 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.
*/
$hardware = trim(snmp_get($device, '1.3.6.1.4.1.1872.2.5.1.3.1.6.0', '-OQv', '', ''), '"').' Vers. '.trim(snmp_get($device, '1.3.6.1.4.1.1872.2.5.1.3.1.7.0', '-OQv', '', ''), '"');
$version = trim(snmp_get($device, '1.3.6.1.4.1.1872.2.5.1.1.1.10.0', '-OQv', '', ''), '"');
$features = 'Ver. '.trim(snmp_get($device, '1.3.6.1.4.1.1872.2.5.1.3.3.1.0', '-OQv', '', ''), '"');
$serial = trim(snmp_get($device, '1.3.6.1.4.1.1872.2.5.1.3.1.18.0', '-OQv', '', ''), '"');

0 comments on commit b85269f

Please sign in to comment.