summaryrefslogtreecommitdiffstats
path: root/utils/dashboard/process_data.py
diff options
context:
space:
mode:
authorpanghao <shamrock.pang@huawei.com>2016-01-04 02:43:20 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-01-04 02:43:20 +0000
commit7f3a6fc12fd9f4195c13f6611e83a1f8ff7cbed1 (patch)
treef327002aebb99744d90adaf1eb8f901ba97262ff /utils/dashboard/process_data.py
parent9e0fdbac6e08d0f0e7b17f929725c2e2636599d6 (diff)
parentec9493c90982b71d3c09212b152085826012acc6 (diff)
Merge "add dashboard uploader for uploading results to community"
Diffstat (limited to 'utils/dashboard/process_data.py')
-rw-r--r--utils/dashboard/process_data.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/utils/dashboard/process_data.py b/utils/dashboard/process_data.py
new file mode 100644
index 00000000..7a7144f8
--- /dev/null
+++ b/utils/dashboard/process_data.py
@@ -0,0 +1,31 @@
+##############################################################################
+# Copyright (c) 2015 Huawei Technologies Co.,Ltd. and others
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+
+import subprocess as subp
+import sys
+from collector import Collector
+from uploader import Uploader
+
+
+#process data
+if len(sys.argv)!=3:
+ print "Wrong arguments, please input 2 parameters, 1st as raw data path; "\
+ "2nd as config yaml!!"
+ exit (1)
+data_home = sys.argv[1]
+conf = sys.argv[2]
+
+#1collect result
+result = Collector().collect_data(data_home)
+print "Result collected:\n%s" % result
+
+#2upload result
+Uploader(conf).upload_result("rubbos", result)
+