90 lines
2.2 KiB
PHP
90 lines
2.2 KiB
PHP
<?php
|
|
|
|
class WeatherMapDataSource_cactihost extends WeatherMapDataSource {
|
|
|
|
function Init(&$map)
|
|
{
|
|
if($map->context == 'cacti')
|
|
{
|
|
if( function_exists('db_fetch_row') )
|
|
{
|
|
return(TRUE);
|
|
}
|
|
else
|
|
{
|
|
wm_debug('ReadData CactiHost: Cacti database library not found.\n');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
wm_debug("ReadData CactiHost: Can only run from Cacti environment.\n");
|
|
}
|
|
|
|
return(FALSE);
|
|
}
|
|
|
|
function Recognise($targetstring)
|
|
{
|
|
if(preg_match("/^cactihost:(\d+)$/",$targetstring,$matches))
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
function ReadData($targetstring, &$map, &$item)
|
|
{
|
|
|
|
$data[IN] = NULL;
|
|
$data[OUT] = NULL;
|
|
$data_time = 0;
|
|
|
|
if(preg_match("/^cactihost:(\d+)$/",$targetstring,$matches))
|
|
{
|
|
$cacti_id = intval($matches[1]);
|
|
|
|
$SQL = "select * from host where id=$cacti_id";
|
|
// 0=disabled
|
|
// 1=down
|
|
// 2=recovering
|
|
// 3=up
|
|
|
|
$state = -1;
|
|
$result = db_fetch_row($SQL);
|
|
if(isset($result))
|
|
{
|
|
// create a note, which can be used in icon filenames or labels more nicely
|
|
if($result['status'] == 1) { $state = 1; $statename = 'down'; }
|
|
if($result['status'] == 2) { $state = 2; $statename = 'recovering'; }
|
|
if($result['status'] == 3) { $state = 3; $statename = 'up'; }
|
|
if($result['disabled']) { $state = 0; $statename = 'disabled'; }
|
|
|
|
$data[IN] = $state;
|
|
$data[OUT] = $state;
|
|
$item->add_note("state",$statename);
|
|
$item->add_note("cacti_description",$result['description']);
|
|
|
|
$item->add_note("cacti_hostname",$result['hostname']);
|
|
$item->add_note("cacti_curtime",$result['cur_time']);
|
|
$item->add_note("cacti_avgtime",$result['avg_time']);
|
|
$item->add_note("cacti_mintime",$result['min_time']);
|
|
$item->add_note("cacti_maxtime",$result['max_time']);
|
|
$item->add_note("cacti_availability",$result['availability']);
|
|
|
|
$item->add_note("cacti_faildate",$result['status_fail_date']);
|
|
$item->add_note("cacti_recdate",$result['status_rec_date']);
|
|
}
|
|
}
|
|
|
|
wm_debug ("CactiHost ReadData: Returning (".($data[IN]===NULL?'NULL':$data[IN]).",".($data[OUT]===NULL?'NULL':$data[OUT]).",$data_time)\n");
|
|
|
|
return( array($data[IN], $data[OUT], $data_time) );
|
|
}
|
|
}
|
|
|
|
|
|
// vim:ts=4:sw=4:
|