- 授权协议: GPLv2
- 开发语言: Python
- 操作系统: Linux
- 软件首页: http://code.google.com/p/pynag/
- 软件文档: http://code.google.com/p/pynag/w/list
软件介绍
pynag (Python Nagios Modules) 提供了一个 Python 工具用来在程序中处理 Nagios 配置文件维护和插件开发。
示例代码:
from pynag import Model # Get all hosts all_hosts = Model.Host.objects.all for i in all_hosts: print i.host_name, i.contacts
