diff options
author | Shrenik <shrenik.jain@research.iiit.ac.in> | 2017-08-16 17:04:00 +0530 |
---|---|---|
committer | mbeierl <mark.beierl@dell.com> | 2017-08-23 12:52:56 -0400 |
commit | fc7ec1c0c73d2ecc52035634c8dd0ae6647273b1 (patch) | |
tree | 7fbeb19a723dded2a597aab78fb33d3ee6c34f15 /docker/storperf-graphite/etc/supervisord.conf | |
parent | 596470aa54a78537434343e6cd310b77128d2ad6 (diff) |
Graphite Standalone container
A new Graphite container is used
Metrics are sent to both Graphite instances
However, it seems that some metrics might be missing
This is however a direct plugin. There are differences in
carbon.conf, storage-schemas.conf and other files as well.
It is suggested to write own Dockerfile instead of using
the image available. We anyway have to do it with respect
ARM Support.
Change-Id: Id34c728f598150caac23ac167c3cce5eaf183a6c
JIRA: STORPERF-142
Signed-off-by: Shrenik <shrenik.jain@research.iiit.ac.in>
Signed-off-by: mbeierl <mark.beierl@dell.com>
Diffstat (limited to 'docker/storperf-graphite/etc/supervisord.conf')
-rw-r--r-- | docker/storperf-graphite/etc/supervisord.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docker/storperf-graphite/etc/supervisord.conf b/docker/storperf-graphite/etc/supervisord.conf new file mode 100644 index 0000000..01799ab --- /dev/null +++ b/docker/storperf-graphite/etc/supervisord.conf @@ -0,0 +1,26 @@ +[unix_http_server] +file=/run/supervisord.sock + +[supervisord] +user = root +nodaemon = true +logfile_maxbytes = 10MB +logfile_backups = 0 +pidfile = /tmp/supervisord.pid +logfile = /tmp/supervisord.log +environment = GRAPHITE_STORAGE_DIR='/opt/graphite/storage',GRAPHITE_CONF_DIR='/opt/graphite/conf' + +[rpcinterface:supervisor] +supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface + +[supervisorctl] +serverurl=unix:///run/supervisord.sock + +[eventlistener:stdout] +command = supervisor_stdout +buffer_size = 100 +events = PROCESS_LOG +result_handler = supervisor_stdout:event_handler + +[include] +files = /etc/supervisor.d/*.ini |