diff options
author | Lingxian Kong <anlin.kong@gmail.com> | 2017-09-26 23:33:02 +1300 |
---|---|---|
committer | Lingxian Kong <anlin.kong@gmail.com> | 2017-09-27 11:20:34 +1300 |
commit | ab0be96b28c01bbe2004b057aa4943d35d5333b4 (patch) | |
tree | c7d2d16d48c6c697bf9164dfc945508ae0ce2121 | |
parent | f65359805a3a079bf952b39021be3b9c6ba61d61 (diff) | |
download | ceilometer-ab0be96b28c01bbe2004b057aa4943d35d5333b4.tar.gz |
Set default ceilometer storage backend to gnocchi
The default storage backend is always set in ceilometer gate job,
but it needs to be set to a sensible default value.
Closes-Bug: #1707713
Change-Id: Ibe3939f114e843810a12c2f27c35a8a91dbce6ac
-rw-r--r-- | devstack/settings | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devstack/settings b/devstack/settings index 1fd6dbf3..7c2bfb3c 100644 --- a/devstack/settings +++ b/devstack/settings @@ -12,7 +12,7 @@ CEILOMETER_AUTH_CACHE_DIR=${CEILOMETER_AUTH_CACHE_DIR:-/var/cache/ceilometer} CEILOMETER_WSGI_DIR=${CEILOMETER_WSGI_DIR:-/var/www/ceilometer} # Set up no backend -CEILOMETER_BACKEND=${CEILOMETER_BACKEND:-none} +CEILOMETER_BACKEND=${CEILOMETER_BACKEND:-gnocchi} if [ "$CEILOMETER_BACKEND" = "es" ] || [ "$CEILOMETER_BACKEND" = "mysql" ] || [ "$CEILOMETER_BACKEND" = "postgresql" ] || [ "$CEILOMETER_BACKEND" = "mongodb" ]; then enable_service ceilometer-api elif [ "$CEILOMETER_BACKEND" = "gnocchi" ]; then |