Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palourde/uchiwa-sensu
Sensu Chef cookbook for Uchiwa testing
https://github.com/palourde/uchiwa-sensu
Last synced: 10 days ago
JSON representation
Sensu Chef cookbook for Uchiwa testing
- Host: GitHub
- URL: https://github.com/palourde/uchiwa-sensu
- Owner: palourde
- License: other
- Created: 2014-07-22T23:29:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T23:07:01.000Z (about 9 years ago)
- Last Synced: 2024-11-28T22:11:58.466Z (2 months ago)
- Language: Ruby
- Size: 15.6 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uchiwa-sensu cookbook
This cookbook provides a standard Sensu environment for E2E testing of [Uchiwa](https://github.com/palourde/uchiwa).
# Requirements
* [sensu](https://github.com/sensu/sensu-chef) >= 1.0.0
# Usage
You should start both Sensu servers with: `vagrant up`
Or, if required, you can only start a specific version:
```
vagrant up server-0.12.6vagrant up server-0.13.0
```
# Recipes
### uchiwa-sensu::server
Installs Sensu server with specified version (`node['sensu']['version']`)
### uchiwa-sensu::client
Installs Sensu client
### uchiwa-sensu::checks
Installs mock checks for e2e testing
### uchiwa-sensu::plugins
Install mock plugin for e2e testing
# Uchiwa config.json
```
{
"sensu": [
{
"name": "0.12.6",
"host": "10.20.30.40",
"port": 4567,
"timeout": 5
},
{
"name": "0.16.0",
"host": "10.20.30.41",
"port": 4567,
"timeout": 5,
"user": "admin",
"pass": "secret"
}
],
"uchiwa": {
"host": "0.0.0.0",
"port": 3000,
"refresh": 5
}
}
```# Author
Author:: Simon Plourde ()