Merge "adapt mong_to_elasticsearch.py to testAPI"
authorMorgan Richomme <morgan.richomme@orange.com>
Fri, 17 Jun 2016 10:06:24 +0000 (10:06 +0000)
committerGerrit Code Review <gerrit@172.30.200.206>
Fri, 17 Jun 2016 10:06:24 +0000 (10:06 +0000)
utils/test/scripts/mongo_to_elasticsearch.py

index caa68d8..8c36d30 100644 (file)
@@ -365,7 +365,7 @@ def modify_mongo_entry(testcase):
 def publish_mongo_data(output_destination):
     tmp_filename = 'mongo-{}.log'.format(uuid.uuid4())
     try:
-        subprocess.check_call(['mongoexport', '--db', 'test_results_collection', '-c', 'test_results', '--out',
+        subprocess.check_call(['mongoexport', '--db', 'test_results_collection', '-c', 'results', '--out',
                                tmp_filename])
         with open(tmp_filename) as fobj:
             for mongo_json_line in fobj:
@@ -379,7 +379,7 @@ def publish_mongo_data(output_destination):
 
 def get_mongo_data(days):
     past_time = datetime.datetime.today() - datetime.timedelta(days=days)
-    mongo_json_lines = subprocess.check_output(['mongoexport', '--db', 'test_results_collection', '-c', 'test_results',
+    mongo_json_lines = subprocess.check_output(['mongoexport', '--db', 'test_results_collection', '-c', 'results',
                                                 '--query', '{{"creation_date":{{$gt:"{}"}}}}'
                                                .format(past_time)]).splitlines()
 
@@ -428,7 +428,7 @@ if __name__ == '__main__':
                         help='the url of mongodb, defaults to http://localhost:8082')
 
     args = parser.parse_args()
-    base_elastic_url = urlparse.urljoin(args.elasticsearch_url, '/test_results/mongo2elastic')
+    base_elastic_url = urlparse.urljoin(args.elasticsearch_url, '/results/mongo2elastic')
     output_destination = args.output_destination
     days = args.merge_latest
     es_user = args.elasticsearch_username