Hi,
It is very strange. The uchiwa frontend can apparently display clients and events withno issue.
But when it comes to stash, I find a lot of error in the log:
{“Date”:“2015-03-03T20:20:53.70131664Z”,“Level”:“warning”,“Src”:{“Func”:“github.com/sensu/uchiwa/uchiwa.Build",“Line”:49},“Output”:"API call to “http://127.0.0.1:4567/stashes” returned: Get http://127.0.0.1:4567/stashes: dial tcp 127.0.0.1:4567: connection refused”}
Here is my config.json
{
“rabbitmq”: {
"host": "localhost",
"port": 5671,
"vhost": "/sensu",
"user": "sensu",
"password": "password",
"ssl": {
"cert_chain_file": "/etc/sensu/ssl/cert.pem",
"private_key_file": "/etc/sensu/ssl/key.pem"
}
},
“redis”: {
"host": "localhost",
"port": 6379
},
“api”: {
"host": "localhost",
"bind": "0.0.0.0",
"port": 4567
}
}
and here is my uchiwa config:
{
“uchiwa”: {
"user": "admin",
"pass": "password",
"refresh": 5,
"host": "0.0.0.0",
"port": 3000
},
“sensu”: [
{
"name": "Sensu",
"host": "127.0.0.1",
"port": 4567,
"path": "",
"ssl": false,
"timeout": 5
}
]
}
What did I miss in my configuration?