jkilpatr a8ef2462d7 Add StatsD support for Ironic
StatsD support works, working on dashboards

As documented here http://docs.openstack.org/developer/ironic/deploy/metrics.html
Ironic allows performance metrics to be dumped via StatsD, this installs StatsD
on the undercloud via epel, sets up a service for it, enables it, and updates
Ironic to use it.

Change-Id: I793d4d3211ecf6113bd4863a0672ea0cb0de9dd3
2017-02-01 20:49:35 +00:00

27 lines
501 B
Django/Jinja

# This is a systemd file to make statsd work well
# To make this work:
# * place this file in /etc/systemd/system and run the commands:
#
# Credit for this template goes to the venerable Kambiz
#
# systemctl daemon-reload
# systemctl enable graphite-web
# systemctl start graphite-web
#
[Unit]
Description=statsd
[Service]
Type=simple
TimeoutStartSec=5m
ExecStart=statsd /etc/statsd/conf.js
ExecReload=statsd /etc/statsd/conf.js
Restart=always
RestartSec=30
[Install]
WantedBy=default.target