mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@2133 61d68cd4-352d-0410-923a-c4978735b2b8
73 lines
2.5 KiB
PHP
Executable File
73 lines
2.5 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
include("includes/defaults.inc.php");
|
|
include("config.php");
|
|
include("includes/functions.php");
|
|
include("includes/discovery/functions.inc.php");
|
|
|
|
include_once('Net/SmartIRC.php');
|
|
|
|
class observiumbot
|
|
{
|
|
function device_info(&$irc, &$data)
|
|
{
|
|
$hostname = $data->messageex[1];
|
|
|
|
$device = mysql_fetch_assoc(mysql_query("SELECT * FROM `devices` WHERE `hostname` = '".mres($hostname)."'"));
|
|
|
|
if ($device['status'] == 1) { $status = "Up " . formatUptime($device['uptime'] . " "); } else { $status = "Down "; }
|
|
if ($device['ignore']) { $status = "*Ignored*"; }
|
|
if ($device['disabled']) { $status = "*Disabled*"; }
|
|
|
|
$irc->message(SMARTIRC_TYPE_CHANNEL, $data->channel, '#'.$device['device_id'] . " " . $device['os'] . " " . $device['version'] . " " .
|
|
$device['features'] . " " . $status);
|
|
}
|
|
|
|
function port_info(&$irc, &$data)
|
|
{
|
|
$hostname = $data->messageex[1];
|
|
$ifname = $data->messageex[2];
|
|
|
|
$device = mysql_fetch_assoc(mysql_query("SELECT * FROM `devices` WHERE `hostname` = '".mres($hostname)."'"));
|
|
$port = mysql_fetch_assoc(mysql_query("SELECT * FROM `ports` WHERE `ifName` = '".mres($ifname)."' OR `ifDescr` = '".mres($ifname)."' AND device_id = '".$device['device_id']."'"));
|
|
|
|
$bps_in = formatRates($port['ifInOctets_rate']);
|
|
$bps_out = formatRates($port['ifOutOctets_rate']);
|
|
$pps_in = format_bi($port['ifInUcastPkts_rate']);
|
|
$pps_out = format_bi($port['ifOutUcastPkts_rate']);
|
|
|
|
$irc->message(SMARTIRC_TYPE_CHANNEL, $data->channel, '#' . $port['interface_id'] . " " . $port['ifAdminStatus'] . "/" . $port['ifOperStatus'] . " " .
|
|
$bps_in. " > bps > " . $bps_out . " | " . $pps_in. "pps > PPS > " . $pps_out ."pps");
|
|
}
|
|
|
|
function list_devices(&$irc, &$data)
|
|
{
|
|
$query = mysql_query("SELECT * FROM `devices`");
|
|
unset($message);
|
|
while($device = mysql_fetch_assoc($query))
|
|
{
|
|
$message .= $sep . $device['hostname'];
|
|
$sep = ", ";
|
|
}
|
|
$irc->message(SMARTIRC_TYPE_CHANNEL, $data->channel, $message);
|
|
unset($sep);
|
|
}
|
|
}
|
|
|
|
$bot = &new observiumbot();
|
|
$irc = &new Net_SmartIRC();
|
|
$irc->setUseSockets(TRUE);
|
|
|
|
$irc->registerActionhandler(SMARTIRC_TYPE_CHANNEL, '!listdevices', $bot, 'list_devices');
|
|
$irc->registerActionhandler(SMARTIRC_TYPE_CHANNEL, '!device', $bot, 'device_info');
|
|
$irc->registerActionhandler(SMARTIRC_TYPE_CHANNEL, '!port', $bot, 'port_info');
|
|
|
|
$irc->connect($config['irc_host'], $config['irc_port']);
|
|
$irc->login($config['irc_nick'], 'Observium Bot', 0, $config['irc_nick']);
|
|
$irc->join($config['irc_chan']);
|
|
$irc->listen();
|
|
$irc->disconnect();
|
|
|
|
?>
|