Merge "Expose metric delay processing metric"

This commit is contained in:
Jenkins 2017-05-03 21:14:31 +00:00 committed by Gerrit Code Review
commit d63b08db38
2 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,10 @@ parameters:
default: 'mysql'
description: The short name of the Gnocchi indexer backend to use.
type: string
MetricProcessingDelay:
default: 60
description: Delay between processing metrics.
type: number
GnocchiPassword:
description: The password for the gnocchi service and db account.
type: string
@ -65,6 +69,7 @@ outputs:
- '/gnocchi'
- '?read_default_file=/etc/my.cnf.d/tripleo.cnf&read_default_group=tripleo'
gnocchi::db::sync::extra_opts: '--skip-storage'
gnocchi::storage::metric_processing_delay: {get_param: MetricProcessingDelay}
gnocchi::storage::swift::swift_user: 'service:gnocchi'
gnocchi::storage::swift::swift_auth_version: 3
gnocchi::storage::swift::swift_key: {get_param: GnocchiPassword}

View File

@ -0,0 +1,3 @@
---
fixes:
- Expose metric_processing_delay to tweak gnocchi performance.