mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fixed syslog? why knows!
git-svn-id: http://www.observium.org/svn/observer/trunk@2405 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -30,6 +30,8 @@ function dbQuery($sql, $parameters = array()) {
|
|||||||
$time_start = microtime(true);
|
$time_start = microtime(true);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
# echo($fullSql);
|
||||||
|
|
||||||
$result = mysql_query($fullSql); // sets $this->result
|
$result = mysql_query($fullSql); // sets $this->result
|
||||||
/*
|
/*
|
||||||
if($this->logFile) {
|
if($this->logFile) {
|
||||||
@@ -79,6 +81,9 @@ function dbInsert($data, $table) {
|
|||||||
dbRollbackTransaction();
|
dbRollbackTransaction();
|
||||||
#$id = false;
|
#$id = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logfile($fullSql);
|
||||||
|
|
||||||
$time_end = microtime(true);
|
$time_end = microtime(true);
|
||||||
$db_stats['insert_sec'] += number_format($time_end - $time_start, 8);
|
$db_stats['insert_sec'] += number_format($time_end - $time_start, 8);
|
||||||
$db_stats['insert']++;
|
$db_stats['insert']++;
|
||||||
@@ -122,7 +127,7 @@ function dbUpdate($data, $table, $where = null, $parameters = array()) {
|
|||||||
if(dbQuery($sql, $data)) {
|
if(dbQuery($sql, $data)) {
|
||||||
$return = mysql_affected_rows();
|
$return = mysql_affected_rows();
|
||||||
} else {
|
} else {
|
||||||
echo("$fullSql");
|
#echo("$fullSql");
|
||||||
trigger_error('QDB - Update failed.', E_USER_WARNING);
|
trigger_error('QDB - Update failed.', E_USER_WARNING);
|
||||||
$return = false;
|
$return = false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,28 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
## FIXME : use db functions properly
|
||||||
|
|
||||||
|
# $device_id_host = @dbFetchCell("SELECT device_id FROM devices WHERE `hostname` = '".mres($entry['host'])."' OR `sysName` = '".mres($entry['host'])."'");
|
||||||
|
|
||||||
|
# $device_id_ip = @dbFetchCell("SELECT device_id FROM ipv4_addresses AS A, ports AS I WHERE A.ipv4_address = '" . $entry['host']."' AND I.interface_id = A.interface_id");
|
||||||
|
|
||||||
function get_cache($host, $value){
|
function get_cache($host, $value){
|
||||||
global $dev_cache;
|
global $dev_cache;
|
||||||
if(!isset($dev_cache[$host][$value])){
|
if(!isset($dev_cache[$host][$value])){
|
||||||
switch($value){
|
switch($value){
|
||||||
case 'device_id':
|
case 'device_id':
|
||||||
//Try by hostname
|
//Try by hostname
|
||||||
$dev_cache[$host]['device_id'] = dbFetchCell('SELECT `device_id` FROM devices WHERE `hostname`=\''.$host.'\' OR `sysName`=\''.$host.'\'');
|
$dev_cache[$host]['device_id'] = dbFetchCell('SELECT `device_id` FROM devices WHERE `hostname` = ? OR `sysName` = ?', array($host, $host));
|
||||||
//If failed, try by IP
|
//If failed, try by IP
|
||||||
if($dev_cache[$host]['device_id'] == null)
|
if(!is_numeric($dev_cache[$host]['device_id'])) {
|
||||||
$dev_cache[$host]['device_id'] = dbFetchCell('SELECT device_id FROM ipv4_addresses AS A, ports AS I WHERE A.ipv4_address = \'' . $entry['host'].'\' AND I.interface_id = A.interface_id');
|
$dev_cache[$host]['device_id'] = dbFetchCell('SELECT `device_id` FROM `ipv4_addresses` AS A, `ports` AS I WHERE A.ipv4_address = ? AND I.interface_id = A.interface_id', array($host));
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'os':
|
case 'os':
|
||||||
$dev_cache[$host]['os'] = dbFetchCell('SELECT `os` FROM devices WHERE `device_id`='.get_cache($host, 'device_id'));
|
$dev_cache[$host]['os'] = dbFetchCell('SELECT `os` FROM devices WHERE `device_id` = ?', array(get_cache($host, 'device_id')));
|
||||||
break;
|
break;
|
||||||
case 'version':
|
case 'version':
|
||||||
$dev_cache[$host]['version'] = dbFetchCell('SELECT `version` FROM devices WHERE `device_id`='.get_cache($host, 'device_id'));
|
$dev_cache[$host]['version'] = dbFetchCell('SELECT `version` FROM devices WHERE `device_id`= ?', array(get_cache($host, 'device_id')));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
@@ -24,10 +31,61 @@ function get_cache($host, $value){
|
|||||||
return $dev_cache[$host][$value];
|
return $dev_cache[$host][$value];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function process_syslog ($entry, $update) {
|
function process_syslog ($entry, $update) {
|
||||||
global $config;
|
global $config;
|
||||||
global $dev_cache;
|
global $dev_cache;
|
||||||
|
|
||||||
|
foreach($config['syslog_filter'] as $bi)
|
||||||
|
if(strpos($entry['msg'], $bi) !== FALSE){
|
||||||
|
print_r($entry);
|
||||||
|
echo('D-'.$bi);
|
||||||
|
return $entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
$entry['device_id'] = get_cache($entry['host'], 'device_id');
|
||||||
|
|
||||||
|
if($entry['device_id']) {
|
||||||
|
dbInsert(
|
||||||
|
array(
|
||||||
|
'device_id' => $entry['device_id'],
|
||||||
|
'host' => $entry['host'],
|
||||||
|
'program' => $entry['program'],
|
||||||
|
'facility' => $entry['facility'],
|
||||||
|
'priority' => $entry['priority'],
|
||||||
|
'level' => $entry['level'],
|
||||||
|
'tag' => $entry['tag'],
|
||||||
|
'msg' => $entry['msg'],
|
||||||
|
'datetime' => $entry['timestamp']
|
||||||
|
),
|
||||||
|
'logs'
|
||||||
|
);
|
||||||
|
|
||||||
|
dbInsert(
|
||||||
|
array(
|
||||||
|
'device_id' => $entry['device_id'],
|
||||||
|
'program' => $entry['program'],
|
||||||
|
'facility' => $entry['facility'],
|
||||||
|
'priority' => $entry['priority'],
|
||||||
|
'level' => $entry['level'],
|
||||||
|
'tag' => $entry['tag'],
|
||||||
|
'msg' => $entry['msg'],
|
||||||
|
'timestamp' => $entry['timestamp']
|
||||||
|
),
|
||||||
|
'syslog'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return $entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function process_syslog_old ($entry, $update) {
|
||||||
|
global $config;
|
||||||
|
global $dev_cache;
|
||||||
|
|
||||||
foreach($config['syslog_filter'] as $bi)
|
foreach($config['syslog_filter'] as $bi)
|
||||||
if(strpos($entry['msg'], $bi) !== FALSE){
|
if(strpos($entry['msg'], $bi) !== FALSE){
|
||||||
print_r($entry);
|
print_r($entry);
|
||||||
@@ -38,6 +96,7 @@ function process_syslog ($entry, $update) {
|
|||||||
$entry['device_id'] = get_cache($entry['host'], 'device_id');
|
$entry['device_id'] = get_cache($entry['host'], 'device_id');
|
||||||
if($entry['device_id']) {
|
if($entry['device_id']) {
|
||||||
$os = get_cache($entry['host'], 'os');
|
$os = get_cache($entry['host'], 'os');
|
||||||
|
|
||||||
if(in_array($os, array('ios', 'iosxe', 'catos'))){
|
if(in_array($os, array('ios', 'iosxe', 'catos'))){
|
||||||
$matches = array();
|
$matches = array();
|
||||||
if(preg_match('#%(?P<program>.*):( ?)(?P<msg>.*)#', $entry['msg'], $matches)){
|
if(preg_match('#%(?P<program>.*):( ?)(?P<msg>.*)#', $entry['msg'], $matches)){
|
||||||
@@ -45,6 +104,7 @@ function process_syslog ($entry, $update) {
|
|||||||
$entry['program'] = $matches['program'];
|
$entry['program'] = $matches['program'];
|
||||||
}
|
}
|
||||||
unset($matches);
|
unset($matches);
|
||||||
|
|
||||||
} elseif($os == 'linux' and get_cache($entry['host'], 'version') == 'Point'){
|
} elseif($os == 'linux' and get_cache($entry['host'], 'version') == 'Point'){
|
||||||
//Cisco WAP200 and similar
|
//Cisco WAP200 and similar
|
||||||
$matches = array();
|
$matches = array();
|
||||||
@@ -53,6 +113,7 @@ function process_syslog ($entry, $update) {
|
|||||||
$entry['program'] = $matches['program'];
|
$entry['program'] = $matches['program'];
|
||||||
}
|
}
|
||||||
unset($matches);
|
unset($matches);
|
||||||
|
|
||||||
} elseif($os == 'linux'){
|
} elseif($os == 'linux'){
|
||||||
$matches = array();
|
$matches = array();
|
||||||
//User_CommonName/123.213.132.231:39872 VERIFY OK: depth=1, /C=PL/ST=Malopolska/O=VLO/CN=v-lo.krakow.pl/emailAddress=root@v-lo.krakow.pl
|
//User_CommonName/123.213.132.231:39872 VERIFY OK: depth=1, /C=PL/ST=Malopolska/O=VLO/CN=v-lo.krakow.pl/emailAddress=root@v-lo.krakow.pl
|
||||||
@@ -82,12 +143,14 @@ function process_syslog ($entry, $update) {
|
|||||||
}
|
}
|
||||||
unset($matches);
|
unset($matches);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isset($entry['program'])){
|
if(!isset($entry['program'])){
|
||||||
$entry['program'] = $entry['msg'];
|
$entry['program'] = $entry['msg'];
|
||||||
unset($entry['msg']);
|
unset($entry['msg']);
|
||||||
}
|
}
|
||||||
$entry['program'] = strtoupper($entry['program']);
|
$entry['program'] = strtoupper($entry['program']);
|
||||||
array_walk($entry, 'trim');
|
array_walk($entry, 'trim');
|
||||||
|
|
||||||
if($update)
|
if($update)
|
||||||
dbInsert(
|
dbInsert(
|
||||||
array(
|
array(
|
||||||
|
|||||||
@@ -6,12 +6,14 @@ include("config.php");
|
|||||||
include("includes/syslog.php");
|
include("includes/syslog.php");
|
||||||
include("includes/dbFacile.php");
|
include("includes/dbFacile.php");
|
||||||
include("includes/common.php");
|
include("includes/common.php");
|
||||||
|
include("includes/functions.php");
|
||||||
|
|
||||||
$i = "1";
|
$i = "1";
|
||||||
|
|
||||||
$s = fopen('php://stdin','r');
|
$s = fopen('php://stdin','r');
|
||||||
while ($line = fgets($s))
|
while ($line = fgets($s))
|
||||||
{
|
{
|
||||||
|
logfile($line);
|
||||||
list($entry['host'],$entry['facility'],$entry['priority'], $entry['level'], $entry['tag'], $entry['timestamp'], $entry['msg'], $entry['program']) = explode("||", trim($line));
|
list($entry['host'],$entry['facility'],$entry['priority'], $entry['level'], $entry['tag'], $entry['timestamp'], $entry['msg'], $entry['program']) = explode("||", trim($line));
|
||||||
process_syslog($entry, 1);
|
process_syslog($entry, 1);
|
||||||
unset($entry); unset($line);
|
unset($entry); unset($line);
|
||||||
|
|||||||
Reference in New Issue
Block a user