├── LICENSE ├── README.md ├── agent_monitor ├── 60_agent_monitor.py ├── README.md └── agent_monitor.py ├── dns_bind9 ├── 60_named_stats.py └── README.md ├── solaris_collect ├── README.md └── solaris_collect.py ├── sw_ping_monitor └── README.md └── windows_collect ├── README.md └── windows_collect.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 一些配合 open-falcon 的监控脚本 -------------------------------------------------------------------------------- /agent_monitor/60_agent_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/agent_monitor/60_agent_monitor.py -------------------------------------------------------------------------------- /agent_monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/agent_monitor/README.md -------------------------------------------------------------------------------- /agent_monitor/agent_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/agent_monitor/agent_monitor.py -------------------------------------------------------------------------------- /dns_bind9/60_named_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/dns_bind9/60_named_stats.py -------------------------------------------------------------------------------- /dns_bind9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/dns_bind9/README.md -------------------------------------------------------------------------------- /solaris_collect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/solaris_collect/README.md -------------------------------------------------------------------------------- /solaris_collect/solaris_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/solaris_collect/solaris_collect.py -------------------------------------------------------------------------------- /sw_ping_monitor/README.md: -------------------------------------------------------------------------------- 1 | 不再需要 -------------------------------------------------------------------------------- /windows_collect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/windows_collect/README.md -------------------------------------------------------------------------------- /windows_collect/windows_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedomkk-qfeng/falcon-scripts/HEAD/windows_collect/windows_collect.py --------------------------------------------------------------------------------