https://github.com/jbussdieker/vagrant-icinga
https://github.com/jbussdieker/vagrant-icinga
icinga puppet vagrant
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jbussdieker/vagrant-icinga
- Owner: jbussdieker
- Created: 2014-09-21T06:54:22.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-13T00:16:16.000Z (over 10 years ago)
- Last Synced: 2025-02-02T05:18:31.125Z (5 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
}