Hello,
I have a sensu cookbook which installs sensu-server, rabbitmq, uchiwa etc.
I want to integrate graphite for graphical dashboard for sensu.
What is the best possible way for this ?
Is there any cookbook ?
Hello,
I have a sensu cookbook which installs sensu-server, rabbitmq, uchiwa etc.
I want to integrate graphite for graphical dashboard for sensu.
What is the best possible way for this ?
Is there any cookbook ?
Several guides exists, e.g. https://blog.powerupcloud.com/step-by-step-install-and-configure-sensu-grafana-9cedca333396
(It is possible to feed it into Graphite using AMQP as well…)
I have this config for that:
{
“handlers”: {
“graphite”: {
“mutator”: “only_check_output”,
“type”: “transport”,
“pipe”: {
“type”: “topic”,
“name”: “metrics”,
“options”: {
“durable”: “true”
}
}
}
}
}
(Graphite (Carbon actually) then also need to be configured to obtain the metrics from the “metrics” topic)
That seems to be done in my case with these settings in carbon.conf (I inherited the setup and is not completely familiar with all the details…)
ENABLE_AMQP = True
AMQP_VERBOSE = True
AMQP_HOST =
AMQP_PORT = 5672
AMQP_VHOST = /sensu
AMQP_USER = sensu
AMQP_PASSWORD =
AMQP_EXCHANGE = metrics
AMQP_METRIC_NAME_IN_BODY = True
On Monday, November 20, 2017 at 9:32:17 AM UTC+2, praka...@firstfuel.com wrote:
Hello,
I have a sensu cookbook which installs sensu-server, rabbitmq, uchiwa etc.
I want to integrate graphite for graphical dashboard for sensu.
What is the best possible way for this ?
Is there any cookbook ?