使用 PHP 从 Nagios 获取(原始)数据(?)
我正在研究 Nagios,在检查了他们的网站后,我发现了 2 个 PHP 中的 API,用于从 Nagios 获取/读取数据。
- sourceforge.net/projects/gwfoundation/
- naupy.sourceforge.net/
您是否知道 PHP 中允许解析/获取 Nagios 生成的数据的任何其他类似解决方案(api)?
正在寻找用 PHP 编写的任何内容,因此如果您知道某些内容,或者有推荐的内容,请告诉我们:)
I am looking into Nagios, and after checking their web site i came across 2 APIs in PHP for fetching/reading data from Nagios.
- sourceforge.net/projects/gwfoundation/
- naupy.sourceforge.net/
Do you happen to know any other similar solutions (apis) in PHP which allow parsing/fetching of data generated by Nagios?
Looking for anything written in PHP so if you know something, or have something to recommend, please do tell :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Nagios::Report 从
检索信息avail.cgi
它包含有很多示例。
Use Nagios::Report to retrieve information from
avail.cgi
It is included with a lot of examples.
如果您感兴趣的是获取基本状态信息,您可以使用 PHP 的 preg_match_all 轻松解析 nagios 的状态文件并获得您想要的信息。只需创建正则表达式来匹配您感兴趣的任何字段,您就可以做任何您想做的事情。如果您想要一个简单的示例,请告诉我,我可以破解一个。
If all you're interested is getting basic status information, you can just use PHP's preg_match_all to parse nagios' status file pretty easily and get what you want. Just create the regex to match whatever fields you're interested in and you can do whatever you want. If you want a simple example let me know and I can hack one up.