From fc7ec1c0c73d2ecc52035634c8dd0ae6647273b1 Mon Sep 17 00:00:00 2001 From: Shrenik Date: Wed, 16 Aug 2017 17:04:00 +0530 Subject: 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 Signed-off-by: mbeierl --- docker/local-docker-compose.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'docker/local-docker-compose.yaml') diff --git a/docker/local-docker-compose.yaml b/docker/local-docker-compose.yaml index 97c77ec..fe83d22 100644 --- a/docker/local-docker-compose.yaml +++ b/docker/local-docker-compose.yaml @@ -17,11 +17,13 @@ services: args: ARCH: ${ARCH} ports: - - "8000:8000" + - "8001:8000" env_file: ${ENV_FILE} volumes: - ${CARBON_DIR}:/opt/graphite/storage/whisper - ./storperf-master/:/storperf + links: + - storperf-graphite storperf-reporting: container_name: "storperf-reporting" @@ -39,6 +41,12 @@ services: args: ARCH: ${ARCH} + storperf-graphite: + container_name: "storperf-graphite" + build: storperf-graphite + ports: + - "8080:8080" + storperf-httpfrontend: container_name: "storperf-httpfrontend" build: @@ -50,4 +58,5 @@ services: links: - storperf-master - storperf-reporting - - storperf-swaggerui \ No newline at end of file + - storperf-swaggerui + - storperf-graphite -- cgit 1.2.3-korg