This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
forked from StephenKing/chef-zabbix-custom-checks
-
Notifications
You must be signed in to change notification settings - Fork 2
/
metadata.rb
31 lines (27 loc) · 1.7 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name "zabbix-custom-checks"
maintainer "TYPO3 Association"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Adds custom checks for Zabbix monitoring"
long_description IO.read(File.join(File.dirname(__FILE__), "README.md"))
version IO.read(File.join(File.dirname(__FILE__), 'VERSION')) rescue '0.0.1'
recipe "zabbix-custom-checks::apache2", "Monitors Apache2 status"
recipe "zabbix-custom-checks::apt-update-check", "Monitors for system software updates"
recipe "zabbix-custom-checks::chef-client", "Monitors results und execution time of chef run (as Zabbix traps)"
recipe "zabbix-custom-checks::default", "Does currently nothing"
recipe "zabbix-custom-checks::git", "Git command tests"
recipe "zabbix-custom-checks::hwraid-adaptec-aac-raid", "Monitors AAC-RAID adapters using hwraid packages"
recipe "zabbix-custom-checks::hwraid-lsi-megaraid", "Monitors LSI Megaraid adapters using hwraid packages"
recipe "zabbix-custom-checks::nginx", "Monitors Nginx status"
recipe "zabbix-custom-checks::openvz-host", "Monitors OpenVZ host status"
recipe "zabbix-custom-checks::openvz-virtual", "Monitors OpenVZ guest status"
recipe "zabbix-custom-checks::pdsn", "Monitors PowerDNS server status"
recipe "zabbix-custom-checks::redis", "Monitors Redis status"
recipe "zabbix-custom-checks::varnish", "Monitors Varnish status"
# depends "apache2"
# depends "chef_handler"
# depends "nginx"
depends "sudo"
depends "zabbix"
# For compatibility with Chef 12.x
depends "seven_zip", "< 3.0.0"