X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=utils%2Fdashboard%2Frubbos_collector.py;fp=utils%2Fdashboard%2Fcollector.py;h=c9851739948490e28aa59c8b217729a2d1fef1ae;hb=e2b73bf29779412d3b0ceb7742e6a4bdcecb7f74;hp=1687f80f7bcad9539e8f5d88f62f8f9c96e637d5;hpb=7d25232df2f07b9bb3c2820a1e248a8a95cbee28;p=bottlenecks.git diff --git a/utils/dashboard/collector.py b/utils/dashboard/rubbos_collector.py similarity index 62% rename from utils/dashboard/collector.py rename to utils/dashboard/rubbos_collector.py index 1687f80f..c9851739 100755 --- a/utils/dashboard/collector.py +++ b/utils/dashboard/rubbos_collector.py @@ -14,33 +14,36 @@ 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 "" \'FNR%%4==0 {printf "%%s\\n", $3 }\'|awk \'BEGIN{sum=0;}{sum=sum+$1;}END{print sum}\'' % dir_name + + cmd = 'grep -n "throughput" %s/stat_client*.html |awk -F "" \'{if (FNR%%2==0 && 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 + cmd = 'grep -n "Total" %s/stat_client*.html |awk -F "" \'{if (FNR==4) {printf "%%s\\n", $4}}\'|awk -F "" \'BEGIN{sum=0;}{sum=sum+$1;}END{print sum}\'' % dir_name + request = int(exec_shell(cmd)) + + cmd = 'grep -n "Total" %s/stat_client*.html |awk -F "" \'{if (FNR==4) {printf "%%s\\n", $5}}\'|awk -F "" \'BEGIN{sum=0;}{sum=sum+$1;}END{print sum}\'' % dir_name + error_request = int(exec_shell(cmd)) + return total_client, throughput, request, error_request -class Collector(object): +class RubbosCollector(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']) + total_client, throughput, request, error_request = get_onetime_data(data_home+'/'+subdir) + result.append({'client':total_client, 'throughput':throughput, 'request':request, 'error_request':error_request}) + result.sort(key=lambda x:x['client']) return result; -