forked from ianunruh/monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-all-server-with-kale.sh
executable file
·46 lines (36 loc) · 1.14 KB
/
install-all-server-with-kale.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
##
# Installs the Logstash and Sensu/Graphite stacks, along with the Kale stack
#
# Oculus requires the 0.90.x branch of Elasticsearch, so this script must be run instead of the
# `install-all-server.sh` script.
##
set -eux
source env.sh
$BASE_PATH/clean.sh
$BASE_PATH/generate-lumberjack-ssl.sh
$BASE_PATH/generate-sensu-ssl.sh
$BASE_PATH/install-elasticsearch-old.sh
$BASE_PATH/install-elasticsearch-hq.sh
$BASE_PATH/install-rabbitmq.sh
$BASE_PATH/install-redis.sh
$BASE_PATH/install-memcached.sh
$BASE_PATH/install-graphite-carbon.sh
$BASE_PATH/install-graphite-web.sh
$BASE_PATH/install-grafana.sh
$BASE_PATH/configure-rabbitmq-sensu.sh
$BASE_PATH/install-sensu.sh
$BASE_PATH/install-sensu-server.sh
$BASE_PATH/install-sensu-api.sh
$BASE_PATH/install-uchiwa.sh
$BASE_PATH/install-sensu-metrics-relay.sh
$BASE_PATH/configure-sensu-metrics-server.sh
$BASE_PATH/install-flapjack.sh
$BASE_PATH/install-sensu-flapjack.sh
$BASE_PATH/install-logstash.sh
$BASE_PATH/configure-logstash-indexer.sh
$BASE_PATH/install-kibana.sh
$BASE_PATH/install-skyline.sh
$BASE_PATH/configure-carbon-skyline.sh
$BASE_PATH/install-oculus.sh
$BASE_PATH/install-statsd.sh