summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2019-01-11 18:12:00 +0000
committerGerrit Code Review <review@openstack.org>2019-01-11 18:12:00 +0000
commit05a0ac415581ec197a06c82d45090b12400b9d92 (patch)
tree5e392ce23ec8d937344b43923da3a3eba989d1dc
parent97564b644f0446d03f8fab92632c84e9b2e43dec (diff)
parent5bdc7c60c574de96229b226b44d47047d47f596b (diff)
downloadosprofiler-05a0ac415581ec197a06c82d45090b12400b9d92.tar.gz
Merge "[devstack] Add support for elasticsearch backend"
-rw-r--r--devstack/lib/osprofiler17
1 files changed, 17 insertions, 0 deletions
diff --git a/devstack/lib/osprofiler b/devstack/lib/osprofiler
index 0627372..d5b75e3 100644
--- a/devstack/lib/osprofiler
+++ b/devstack/lib/osprofiler
@@ -69,6 +69,20 @@ function install_jaeger() {
pip_install jaeger-client
}
+function install_elasticsearch() {
+ if is_ubuntu; then
+ install_package docker.io
+ start_service docker
+ add_user_to_group $STACK_USER docker
+ # https://www.elastic.co/guide/en/elasticsearch/reference/5.6/docker.html#docker-cli-run-dev-mode
+ sg docker -c 'docker run -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:5.6.14'
+ else
+ exit_distro_not_supported "docker.io installation"
+ fi
+
+ pip_install elasticsearch
+}
+
function install_osprofiler_collector() {
if [ -z "$OSPROFILER_COLLECTOR" ]; then
OSPROFILER_CONNECTION_STRING=${OSPROFILER_CONNECTION_STRING:-"messaging://"}
@@ -78,6 +92,9 @@ function install_osprofiler_collector() {
elif [ "$OSPROFILER_COLLECTOR" == "jaeger" ]; then
install_jaeger
OSPROFILER_CONNECTION_STRING=${OSPROFILER_CONNECTION_STRING:-"jaeger://localhost:6831"}
+ elif [ "$OSPROFILER_COLLECTOR" == "elasticsearch" ]; then
+ install_elasticsearch
+ OSPROFILER_CONNECTION_STRING=${OSPROFILER_CONNECTION_STRING:-"elasticsearch://elastic:changeme@localhost:9200"}
else
die $LINENO "OSProfiler collector $OSPROFILER_COLLECTOR is not supported"
fi