diff options
author | rexlee8776 <limingjiang@huawei.com> | 2015-12-23 12:13:55 +0800 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2016-01-04 10:21:37 +0800 |
commit | ec9493c90982b71d3c09212b152085826012acc6 (patch) | |
tree | 6ab2be8508f86c27cb75e2cf29f7dec3947e424d /utils/dashboard/collector.py | |
parent | 8f1101df131a4d3e03b377738507d88b745831c0 (diff) |
add dashboard uploader for uploading results to community
JIRA:BOTTLENECK-30
Change-Id: Idb5d54026ccd77bb45cf67f65ca695988d22e55a
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'utils/dashboard/collector.py')
-rwxr-xr-x | utils/dashboard/collector.py | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/utils/dashboard/collector.py b/utils/dashboard/collector.py new file mode 100755 index 00000000..1687f80f --- /dev/null +++ b/utils/dashboard/collector.py @@ -0,0 +1,46 @@ +############################################################################## +# 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 + +def exec_shell(cmd): + out,err = subp.Popen(cmd, stdout=subp.PIPE, shell=True).communicate() + return out.strip() + + +def get_onetime_data(dir_name): + cmd = "grep -in 'remote client nodes' %s/index.html|awk '{print $5}'|awk -F '<' '{print $1}'" % dir_name + client_node_num = int(exec_shell(cmd)) + cmd = "grep -n 'Number of clients' %s/index.html|awk '{print $5}'|awk -F '<' '{print $1}'" % dir_name + each_client_num = int(exec_shell(cmd)) + total_client = (client_node_num+1) * each_client_num + cmd = 'grep -n "throughput" %s/stat_client*.html |awk -F "<B>" \'FNR%%4==0 {printf "%%s\\n", $3 }\'|awk \'BEGIN{sum=0;}{sum=sum+$1;}END{print sum}\'' % dir_name + throughput = int(exec_shell(cmd)) + + return total_client, throughput + + +class Collector(object): + + + def __init__(self): + pass + + + def collect_data(self, data_home): + cmd = 'ls -l %s |grep ^d|awk \'{print $9}\'' % data_home + result = [] + for subdir in exec_shell(cmd).split('\n'): + total_client, throughput = get_onetime_data(data_home+'/'+subdir) + result.append({'client':total_client, 'throughput':throughput}) + result.sort(key=lambda x:x['client']) + + return result; + |