Skip to content

Commit

Permalink
Added RUM and Collectors.
Browse files Browse the repository at this point in the history
  • Loading branch information
fryckbos committed Jan 30, 2017
1 parent 81f1242 commit 9848a7c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
5 changes: 3 additions & 2 deletions conf.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export VERSION="3.1.0"
export VERSION="3.5.5"

export REGISTRY=docker.coscale.com:5000
export REGISTRY_USERNAME=
Expand All @@ -13,6 +13,8 @@ export API_URL=
export API_SUPER_USER=
export API_SUPER_PASSWD=
export APP_URL=
#RUM_URL has no protocol
export RUM_URL=

export [email protected]
export [email protected]
Expand All @@ -24,4 +26,3 @@ export MAIL_SSL=false
export MAIL_AUTH=false
export MAIL_USERNAME=
export MAIL_PASSWORD=

1 change: 1 addition & 0 deletions links/collector
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--link coscale_rabbitmq:rabbitmq
2 changes: 1 addition & 1 deletion links/haproxy
Original file line number Diff line number Diff line change
@@ -1 +1 @@
--link coscale_api:api --link coscale_app:app
--link coscale_api:api --link coscale_app:app --link coscale_rum:rum --link coscale_rumdatareceiver:rumdatareceiver
1 change: 1 addition & 0 deletions links/rumaggregator
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--link coscale_rabbitmq:rabbitmq
1 change: 1 addition & 0 deletions links/rumdatareceiver
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--link coscale_rabbitmq:rabbitmq
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function run {
echo "Starting $SERVICE:$IMAGE_VERSION"
docker run -d \
$LINKS $EXPOSED $VOLUMES $DNS_SWITCHES \
-e "API_URL=$API_URL" -e "API_SUPER_USER=$API_SUPER_USER" -e "API_SUPER_PASSWD=$API_SUPER_PASSWD" -e "APP_URL=$APP_URL" -e "MAIL_SERVER=$MAIL_SERVER" -e "FROM_EMAIL=$FROM_EMAIL" -e "SUPPORT_EMAIL=$SUPPORT_EMAIL" -e "ANOMALY_EMAIL=$ANOMALY_EMAIL" \
-e "API_URL=$API_URL" -e "API_SUPER_USER=$API_SUPER_USER" -e "API_SUPER_PASSWD=$API_SUPER_PASSWD" -e "APP_URL=$APP_URL" -e "MAIL_SERVER=$MAIL_SERVER" -e "FROM_EMAIL=$FROM_EMAIL" -e "SUPPORT_EMAIL=$SUPPORT_EMAIL" -e "RUM_URL=$RUM_URL" -e "ANOMALY_EMAIL=$ANOMALY_EMAIL" \
--name coscale_$SERVICE coscale/$SERVICE:$IMAGE_VERSION
}

Expand Down
2 changes: 1 addition & 1 deletion services.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
export DATA_SERVICES="rabbitmq cassandra memcached postgresql elasticsearch"
export LB_SERVICE="haproxy"
export COSCALE_SERVICES="anomalydetectorservice alerter analysismanager analysisworker api app cron datastore mailer pageminer reporter roller anomalymatcher triggermatcher"
export COSCALE_SERVICES="anomalydetectorservice alerter analysismanager analysisworker api app cron datastore mailer pageminer reporter roller anomalymatcher triggermatcher rum rumdatareceiver collector rumaggregator"

0 comments on commit 9848a7c

Please sign in to comment.