Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbussdieker/vagrant-icinga
https://github.com/jbussdieker/vagrant-icinga
icinga puppet vagrant
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jbussdieker/vagrant-icinga
- Owner: jbussdieker
- Created: 2014-09-21T06:54:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-13T00:16:16.000Z (about 10 years ago)
- Last Synced: 2024-04-14T05:55:00.023Z (10 months ago)
- Topics: icinga, puppet, vagrant
- Language: Ruby
- Size: 156 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vagrant Icinga
## Install Dependencies
$ bundle
$ bundle exec librarian-puppet install## Start virtual machine
$ vagrant up
Once it's booted you should be able to visit http://localhost:8080/icinga. User is icingaadmin and password is password.
## Example config
define host {
host_name localhost
check_command check-host-alive
max_check_attempts 3
address 127.0.0.1
}define service {
service_description ssh server
host_name localhost
check_command check_ssh
max_check_attempts 3
}define service {
service_description root disk space
host_name localhost
check_command check_disk!20%!10%!/
max_check_attempts 3
}