Expose metric delay processing metric
authorPradeep Kilambi <pkilambi@redhat.com>
Fri, 21 Apr 2017 20:16:38 +0000 (16:16 -0400)
committerPradeep Kilambi <pkilambi@redhat.com>
Wed, 3 May 2017 15:29:33 +0000 (15:29 +0000)
For performance reasons we might want to tweak this param
lets expose this via tripleo. The puppet changes were
added in this patch I5de5283d1b14e0bba63d6d9a440611914ba86ca4

Change-Id: I72f1fe3a47060fe37602a70b8a74fba72209127c

puppet/services/gnocchi-base.yaml
releasenotes/notes/expose-metric-processing-delay-0c098d7ec0af0728.yaml [new file with mode: 0644]

index dc6daec..24f4157 100644 (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}
diff --git a/releasenotes/notes/expose-metric-processing-delay-0c098d7ec0af0728.yaml b/releasenotes/notes/expose-metric-processing-delay-0c098d7ec0af0728.yaml
new file mode 100644 (file)
index 0000000..1fc4f10
--- /dev/null
@@ -0,0 +1,3 @@
+---
+fixes:
+  - Expose metric_processing_delay to tweak gnocchi performance.