1 Star 0 Fork 1

jsyey/librenms

forked from 周滔/librenms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
syslog.php 523 Bytes
一键复制 编辑 原始数据 按行查看 历史
Valery Kartel 提交于 2021-08-23 03:07 . Update syslog.php (#13150)
#!/usr/bin/env php
<?php
/**
* LibreNMS
*
* This file is part of LibreNMS.
*
* @copyright (C) 2006 - 2012 Adam Armstrong
*/
$init_modules = [];
require __DIR__ . '/includes/init.php';
$s = fopen('php://stdin', 'r');
while ($line = fgets($s)) {
//logfile($line);
[$entry['host'],$entry['facility'],$entry['priority'], $entry['level'], $entry['tag'], $entry['timestamp'], $entry['msg'], $entry['program']] = explode('||', trim($line));
process_syslog($entry, 1);
unset($entry);
unset($line);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yeyong/librenms.git
git@gitee.com:yeyong/librenms.git
yeyong
librenms
librenms
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385