diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-17 14:49:27 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-17 14:49:27 +0800 |
commit | eded85550df1dc11ebcd36757cadc7103fa9dca9 (patch) | |
tree | 49f87a10c270081277eb9252506789f71da9b246 /utils/test | |
parent | ad1e7d2a89db7a0b2f29208850f12eca644a9902 (diff) |
adapt mong_to_elasticsearch.py to testAPI
change test_results to results in the url
JIRA: FUNCTEST-321
Change-Id: I5621ec48ac0cfd6239a07fcd0b83b5418a1ed5f4
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test')
-rw-r--r-- | utils/test/scripts/mongo_to_elasticsearch.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/test/scripts/mongo_to_elasticsearch.py b/utils/test/scripts/mongo_to_elasticsearch.py index 51b6913f7..beae959e9 100644 --- a/utils/test/scripts/mongo_to_elasticsearch.py +++ b/utils/test/scripts/mongo_to_elasticsearch.py @@ -354,7 +354,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: @@ -368,7 +368,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() @@ -417,7 +417,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 |