add log info when publish json to elasticsearch failed
[releng.git] / utils / test / scripts / mongo_to_elasticsearch.py
index a569ac6..2ffbc17 100644 (file)
@@ -395,7 +395,12 @@ def publish_mongo_data(output_destination):
             for mongo_json_line in fobj:
                 test_result = json.loads(mongo_json_line)
                 if modify_mongo_entry(test_result):
-                    shared_utils.publish_json(test_result, es_creds, output_destination)
+                    status, data = shared_utils.publish_json(test_result, es_creds, output_destination)
+                    if status > 300:
+                        project = test_result['project_name']
+                        case_name = test_result['case_name']
+                        logger.info('project {} case {} publish failed, due to [{}]'
+                                    .format(project, case_name, json.loads(data)['error']['reason']))
     finally:
         if os.path.exists(tmp_filename):
             os.remove(tmp_filename)