From 5247f6fa6c29bbd83df1ba44d2360cbe20bf66a2 Mon Sep 17 00:00:00 2001 From: Joe Talerico Date: Fri, 17 Jun 2016 09:35:50 -0400 Subject: [PATCH] Rally's Elastic connector issue Rally would index errors as _type config, this is to fix that. Change-Id: I9a4565a816f6a8f2f8d90cbb9ff2cd29f38efe7f --- lib/Rally.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Rally.py b/lib/Rally.py index 601102d9b..7aed575fc 100644 --- a/lib/Rally.py +++ b/lib/Rally.py @@ -148,7 +148,7 @@ class Rally(WorkloadBase): 'timestamp': es_ts, 'scenario': scenario_name, } - self.elastic.index_result(error, 'config') + self.elastic.index_result(error, 'error') for workload in rally_data: if not type(rally_data[workload]) is dict: iteration = 1