Files
librenms-librenms/LibreNMS/OS/SocomecUps.php
Peca Nesovanovic 390baa73fb add initial support for socomec-ups (#16018)
* [wip] add initial support for socomec-ups

based on: https://community.librenms.org/t/add-socomec-ups-with-netvision-snmp-card/24139

Signed-off-by: Peca Nesovanovic <peca.nesovanovic@sattrakt.com>

* ci

* drop cache/precache

* drop MIB definition

---------

Signed-off-by: Peca Nesovanovic <peca.nesovanovic@sattrakt.com>
2024-06-04 11:24:30 +02:00

41 lines
1.2 KiB
PHP

<?php
/*
* SocomecUps.php
*
* -Description-
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link https://www.librenms.org
* @copyright 2024 Peca Nesovanovic
* @author peca.nesovanovic@sattrakt.com
*/
namespace LibreNMS\OS;
use App\Models\Device;
use LibreNMS\OS;
class SocomecUps extends OS
{
public function discoverOS(Device $device): void
{
parent::discoverOS($device); // yaml
$data = intval(\SnmpQuery::get('SOCOMECUPS-MIB::upsConfigNomKva.0')->value());
$device->features = ($data / 10) . ' kVA';
}
}