├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.m2e.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.wst.jsdt.ui.superType.name └── org.eclipse.wst.validation.prefs ├── README.md ├── pom.xml ├── src └── main │ ├── java │ └── com │ │ └── weibo │ │ └── ngrinder │ │ ├── NgrinderOutput.java │ │ └── ParseCsv.java │ └── resources │ ├── output.csv │ └── outputformat.csv └── target ├── classes ├── com │ └── weibo │ │ └── ngrinder │ │ ├── NgrinderOutput.class │ │ └── ParseCsv.class ├── output.csv └── outputformat.csv └── m2e-wtp └── web-resources └── META-INF ├── MANIFEST.MF └── maven └── com.weibo.ngrinder └── ngrinder-csv-analysis ├── pom.properties └── pom.xml /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngrinder-csv-analysis 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.wst.common.project.facet.core.builder 20 | 21 | 22 | 23 | 24 | org.eclipse.wst.validation.validationbuilder 25 | 26 | 27 | 28 | 29 | org.eclipse.m2e.core.maven2Builder 30 | 31 | 32 | 33 | 34 | 35 | org.eclipse.jem.workbench.JavaEMFNature 36 | org.eclipse.wst.common.modulecore.ModuleCoreNature 37 | org.eclipse.jdt.core.javanature 38 | org.eclipse.m2e.core.maven2Nature 39 | org.eclipse.wst.common.project.facet.core.nature 40 | org.eclipse.wst.jsdt.core.jsNature 41 | 42 | 43 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ngrinder-csv-analysis 2 | 解析ngrinder csv结果,统计TPS标准差,TPS波动率,最小/大RT,RT 25/50/75/80/85/90/95/99百分位数 3 | 4 | 5 | 1.将ngrinder 生成的csv文件:output.csv,放到工程src/main/resources下 6 | 7 | 2.执行src/main/java下ParseCsv.java文件 8 | 9 | Console输出结果: 10 | 11 | TPS平均值:257.88 12 | 13 | TPS标准差:33.10 14 | 15 | TPS波动率:12.84% 16 | 17 | RT平均响应时间:19.43 ms 18 | 19 | Min RT:14.90 ms 20 | 21 | RT 25百分位数:18.07 ms 22 | 23 | RT 50百分位数:19.14 ms 24 | 25 | RT 75百分位数:20.33 ms 26 | 27 | RT 80百分位数:20.78 ms 28 | 29 | RT 85百分位数:21.29 ms 30 | 31 | RT 90百分位数:21.86 ms 32 | 33 | RT 95百分位数:23.52 ms 34 | 35 | RT 99百分位数:25.91 ms 36 | 37 | Max RT:46.93 ms 38 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | com.weibo.ngrinder 5 | ngrinder-csv-analysis 6 | 0.0.1 7 | war 8 | 9 | 10 | 11 | 12 | com.fasterxml.jackson.dataformat 13 | jackson-dataformat-csv 14 | 2.5.3 15 | 16 | 17 | 18 | 19 | net.sf.supercsv 20 | super-csv 21 | 2.4.0 22 | 23 | 24 | 25 | 26 | 27 | org.apache.commons 28 | commons-math3 29 | 3.6 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/main/java/com/weibo/ngrinder/NgrinderOutput.java: -------------------------------------------------------------------------------- 1 | package com.weibo.ngrinder; 2 | 3 | public class NgrinderOutput { 4 | 5 | private String DateTime; 6 | private double vuser; 7 | private double Tests; 8 | private double Errors; 9 | private double Mean_Test_Time; 10 | private double Test_Time_Standard_Deviation; 11 | private double TPS; 12 | private double Mean_response_length; 13 | private double Response_bytes_per_second; 14 | private double Response_errors; 15 | private double Mean_time_to_resolve_host; 16 | private double Mean_time_to_establish_connection; 17 | private double Mean_time_to_first_byte; 18 | public String getDateTime() { 19 | return DateTime; 20 | } 21 | public void setDateTime(String dateTime) { 22 | DateTime = dateTime; 23 | } 24 | public double getVuser() { 25 | return vuser; 26 | } 27 | public void setVuser(double vuser) { 28 | this.vuser = vuser; 29 | } 30 | public double getTests() { 31 | return Tests; 32 | } 33 | public void setTests(double tests) { 34 | Tests = tests; 35 | } 36 | public double getErrors() { 37 | return Errors; 38 | } 39 | public void setErrors(double errors) { 40 | Errors = errors; 41 | } 42 | public double getMean_Test_Time() { 43 | return Mean_Test_Time; 44 | } 45 | public void setMean_Test_Time(double mean_Test_Time) { 46 | Mean_Test_Time = mean_Test_Time; 47 | } 48 | public double getTest_Time_Standard_Deviation() { 49 | return Test_Time_Standard_Deviation; 50 | } 51 | public void setTest_Time_Standard_Deviation(double test_Time_Standard_Deviation) { 52 | Test_Time_Standard_Deviation = test_Time_Standard_Deviation; 53 | } 54 | public double getTPS() { 55 | return TPS; 56 | } 57 | public void setTPS(double tPS) { 58 | TPS = tPS; 59 | } 60 | public double getMean_response_length() { 61 | return Mean_response_length; 62 | } 63 | public void setMean_response_length(double mean_response_length) { 64 | Mean_response_length = mean_response_length; 65 | } 66 | public double getResponse_bytes_per_second() { 67 | return Response_bytes_per_second; 68 | } 69 | public void setResponse_bytes_per_second(double response_bytes_per_second) { 70 | Response_bytes_per_second = response_bytes_per_second; 71 | } 72 | public double getResponse_errors() { 73 | return Response_errors; 74 | } 75 | public void setResponse_errors(double response_errors) { 76 | Response_errors = response_errors; 77 | } 78 | public double getMean_time_to_resolve_host() { 79 | return Mean_time_to_resolve_host; 80 | } 81 | public void setMean_time_to_resolve_host(double mean_time_to_resolve_host) { 82 | Mean_time_to_resolve_host = mean_time_to_resolve_host; 83 | } 84 | public double getMean_time_to_establish_connection() { 85 | return Mean_time_to_establish_connection; 86 | } 87 | public void setMean_time_to_establish_connection( 88 | double mean_time_to_establish_connection) { 89 | Mean_time_to_establish_connection = mean_time_to_establish_connection; 90 | } 91 | public double getMean_time_to_first_byte() { 92 | return Mean_time_to_first_byte; 93 | } 94 | public void setMean_time_to_first_byte(double mean_time_to_first_byte) { 95 | Mean_time_to_first_byte = mean_time_to_first_byte; 96 | } 97 | 98 | 99 | 100 | 101 | 102 | } 103 | -------------------------------------------------------------------------------- /src/main/java/com/weibo/ngrinder/ParseCsv.java: -------------------------------------------------------------------------------- 1 | package com.weibo.ngrinder; 2 | 3 | import java.io.BufferedReader; 4 | import java.io.FileOutputStream; 5 | import java.io.FileReader; 6 | import java.io.IOException; 7 | import java.io.PrintStream; 8 | import java.util.ArrayList; 9 | import java.util.Arrays; 10 | import java.util.List; 11 | 12 | import org.supercsv.cellprocessor.ParseDouble; 13 | import org.supercsv.cellprocessor.constraint.NotNull; 14 | import org.supercsv.cellprocessor.ift.CellProcessor; 15 | import org.supercsv.io.ICsvBeanReader; 16 | import org.supercsv.io.CsvBeanReader; 17 | import org.supercsv.prefs.CsvPreference; 18 | import org.apache.commons.math3.stat.descriptive.moment.Mean; 19 | import org.apache.commons.math3.stat.descriptive.moment.StandardDeviation; 20 | import org.apache.commons.math3.stat.descriptive.rank.Percentile; 21 | 22 | /** 23 | * 解析csv数据 24 | * 25 | * @author hugang 26 | * 27 | */ 28 | public class ParseCsv { 29 | 30 | private static CellProcessor[] getProcessors() { 31 | 32 | // final String emailRegex = "[a-z0-9\\._]+@[a-z0-9\\.]+"; // just an 33 | // example, not very robust! 34 | // StrRegEx.registerMessage(emailRegex, 35 | // "must be a valid email address"); 36 | 37 | // 定义javabean字段类型 38 | final CellProcessor[] processors = new CellProcessor[] { 39 | // new UniqueHashCode(), // customerNo (must be unique) 40 | // new NotNull(), // firstName 41 | // new NotNull(), // lastName 42 | // new ParseDate("dd/MM/yyyy"), // birthDate 43 | // new NotNull(), // mailingAddress 44 | // new Optional(new ParseBool()), // married 45 | // new Optional(new ParseInt()), // numberOfKids 46 | // new NotNull(), // favouriteQuote 47 | // new StrRegEx(emailRegex), // email 48 | // new LMinMax(0L, LMinMax.MAX_LONG) // loyaltyPoints 49 | new NotNull(), new ParseDouble(), new ParseDouble(), 50 | new ParseDouble(), new ParseDouble(), new ParseDouble(), 51 | new ParseDouble(), new ParseDouble(), new ParseDouble(), 52 | new ParseDouble(), new ParseDouble(), new ParseDouble(), 53 | new ParseDouble() }; 54 | 55 | return processors; 56 | } 57 | 58 | // 原始文件 59 | final static String CSV_FILENAME = "src/main/resources/output.csv"; 60 | // 将(ms)去掉 61 | final static String CSV_FORMAT_FILENAME = "src/main/resources/outputformat.csv"; 62 | 63 | // 将原始csv文件中,Mean_Test_Time_(ms),Test_Time_Standard_Deviation_(ms) 64 | // 改成Mean_Test_Time,Test_Time_Standard_Deviation, 因为解析csv是根据javabean, 65 | // 带()无法定义变量 66 | private static void formatCsv() throws IOException { 67 | BufferedReader br = new BufferedReader(new FileReader(CSV_FILENAME)); 68 | PrintStream ps = new PrintStream(new FileOutputStream( 69 | CSV_FORMAT_FILENAME)); 70 | try { 71 | String buffer = null; 72 | String firstStr = null; 73 | int index = 0; 74 | while ((buffer = br.readLine()) != null) { 75 | // 只改第一行 76 | if (0 == index) { 77 | firstStr = buffer.replace("Mean_Test_Time_(ms)", 78 | "Mean_Test_Time"); 79 | firstStr = firstStr.replace( 80 | "Test_Time_Standard_Deviation_(ms)", 81 | "Test_Time_Standard_Deviation"); 82 | ps.println(firstStr); 83 | } else { 84 | index++; 85 | ps.println(buffer); 86 | } 87 | } 88 | } catch (Exception e) { 89 | e.printStackTrace(); 90 | } finally { 91 | br.close(); 92 | ps.close(); 93 | } 94 | 95 | } 96 | 97 | private static void readWithCsvBeanReader() throws Exception { 98 | 99 | ICsvBeanReader beanReader = null; 100 | try { 101 | beanReader = new CsvBeanReader(new FileReader(CSV_FORMAT_FILENAME), 102 | CsvPreference.STANDARD_PREFERENCE); 103 | 104 | // the header elements are used to map the values to the bean (names 105 | // must match) 106 | final String[] header = beanReader.getHeader(true); 107 | final CellProcessor[] processors = getProcessors(); 108 | 109 | // tps list 110 | List tps = new ArrayList(); 111 | // rt list 112 | List meanTestTime = new ArrayList(); 113 | // javabean 对象 114 | NgrinderOutput output; 115 | int i = 0; 116 | int j = 0; 117 | while ((output = beanReader.read(NgrinderOutput.class, header, 118 | processors)) != null) { 119 | // System.out.println(String.format("lineNo=%s, rowNo=%s, output=%s", 120 | // beanReader.getLineNumber(), 121 | // beanReader.getRowNumber(), output)); 122 | // 无法使用数组,因为不知道个数,不能正常初始化数组大小,数组元素个数要精确 123 | tps.add(output.getTPS()); 124 | meanTestTime.add(output.getMean_Test_Time()); 125 | } 126 | 127 | // list转成数组, 标准库使用数组作为参数 128 | double[] tpsArray = new double[tps.size()]; 129 | for (double tpsNum : tps) { 130 | tpsArray[i++] = tpsNum; 131 | } 132 | 133 | // list转成数组 134 | double[] meanTestTimeArray = new double[meanTestTime.size()]; 135 | for (double meanTime : meanTestTime) { 136 | meanTestTimeArray[j++] = meanTime; 137 | } 138 | 139 | // tps 标准差 140 | double tpsStd = new StandardDeviation().evaluate(tpsArray); 141 | // tps 平均值 142 | double tpsMean = new Mean().evaluate(tpsArray, 0, tpsArray.length); 143 | 144 | System.out.println(String.format("TPS平均值:%.2f", tpsMean)); 145 | System.out.println(String.format("TPS标准差:%.2f", tpsStd)); 146 | System.out.println(String.format("TPS波动率:%.2f%%", 147 | ((tpsStd / tpsMean) * 100))); 148 | 149 | // meanTestTime 百分位数 150 | Percentile percentile = new Percentile(); 151 | // 先排序 152 | Arrays.sort(meanTestTimeArray); 153 | // meanTestTime最小值 154 | double MinMeanTime = meanTestTimeArray[0]; 155 | double TwentyFiveMeanTime = percentile.evaluate(meanTestTimeArray, 156 | 25); 157 | double FiftyMeanTime = percentile.evaluate(meanTestTimeArray, 50); 158 | double ServentyFiveMeanTime = percentile.evaluate( 159 | meanTestTimeArray, 75); 160 | double EightyMeanTime = percentile.evaluate(meanTestTimeArray, 80); 161 | double EightyFiveMeanTime = percentile.evaluate(meanTestTimeArray, 162 | 85); 163 | double NinetyMeanTime = percentile.evaluate(meanTestTimeArray, 90); 164 | double NinetyFiveMeanTime = percentile.evaluate(meanTestTimeArray, 165 | 95); 166 | double NinetyNineMeanTime = percentile.evaluate(meanTestTimeArray, 167 | 99); 168 | 169 | int length = meanTestTimeArray.length; 170 | // meanTestTime最高值 171 | double MaxMeanTime = meanTestTimeArray[length - 1]; 172 | // meanTestTime平均值 173 | double TimeMean = new Mean().evaluate(meanTestTimeArray, 0, 174 | meanTestTimeArray.length); 175 | 176 | // 格式化输出 177 | System.out.println(String.format("RT平均响应时间:%.2f ms", TimeMean)); 178 | System.out.println(String.format("Min RT:%.2f ms", MinMeanTime)); 179 | System.out.println(String.format("RT 25百分位数:%.2f ms", 180 | TwentyFiveMeanTime)); 181 | System.out.println(String 182 | .format("RT 50百分位数:%.2f ms", FiftyMeanTime)); 183 | System.out.println(String.format("RT 75百分位数:%.2f ms", 184 | ServentyFiveMeanTime)); 185 | System.out.println(String.format("RT 80百分位数:%.2f ms", 186 | EightyMeanTime)); 187 | System.out.println(String.format("RT 85百分位数:%.2f ms", 188 | EightyFiveMeanTime)); 189 | System.out.println(String.format("RT 90百分位数:%.2f ms", 190 | NinetyMeanTime)); 191 | System.out.println(String.format("RT 95百分位数:%.2f ms", 192 | NinetyFiveMeanTime)); 193 | System.out.println(String.format("RT 99百分位数:%.2f ms", 194 | NinetyNineMeanTime)); 195 | System.out.println(String.format("Max RT:%.2f ms", MaxMeanTime)); 196 | 197 | } finally { 198 | if (beanReader != null) { 199 | beanReader.close(); 200 | } 201 | } 202 | } 203 | 204 | public static void main(String[] args) { 205 | try { 206 | ParseCsv.formatCsv(); 207 | ParseCsv.readWithCsvBeanReader(); 208 | } catch (Exception e) { 209 | e.printStackTrace(); 210 | } 211 | } 212 | 213 | } 214 | -------------------------------------------------------------------------------- /src/main/resources/output.csv: -------------------------------------------------------------------------------- 1 | DateTime,vuser,Tests,Errors,Mean_Test_Time_(ms),Test_Time_Standard_Deviation_(ms),TPS,Mean_response_length,Response_bytes_per_second,Response_errors,Mean_time_to_resolve_host,Mean_time_to_establish_connection,Mean_time_to_first_byte 2 | 2016-02-15 16:10:52,2,176,0,23.312,31.182,88,7336.335,645597.5,0,0.307,1.403,22.409 3 | 2016-02-15 16:10:54,4,337,0,22.733,38.204,168.5,6335.273,1067493.5,0,0.142,1.19,22.045 4 | 2016-02-15 16:10:56,5,476,0,20.237,27.869,238,6978.468,1660875.5,0,0.107,1.162,19.666 5 | 2016-02-15 16:10:58,5,499,0,19.383,23.688,249.5,6766.864,1688332.5,0,0.072,1.14,18.754 6 | 2016-02-15 16:11:00,5,481,0,20.133,27.714,240.5,7121.05,1712612.5,0,0.044,1.048,19.605 7 | 2016-02-15 16:11:02,5,569,0,17.188,12.066,284.5,7488.376,2130443,0,0.035,1.046,16.64 8 | 2016-02-15 16:11:04,5,390,0,25.264,41.386,195,7390.533,1441154,0,0.023,1.036,24.708 9 | 2016-02-15 16:11:06,5,451,0,21.665,29.588,225.5,7029.186,1585081.5,0,0.029,1.064,21.166 10 | 2016-02-15 16:11:08,5,458,0,21.467,32.682,229,6719.055,1538663.5,0,0.037,1.066,20.996 11 | 2016-02-15 16:11:10,5,431,0,19.847,28.562,215.5,7465.698,1608858,0,0.03,1.058,19.304 12 | 2016-02-15 16:11:12,5,428,0,25.907,115.617,214,6937.306,1484583.5,0,0.044,1.044,25.439 13 | 2016-02-15 16:11:14,5,565,0,16.903,13.614,282.5,6725.6,1899982,0,0.019,1.035,16.407 14 | 2016-02-15 16:11:16,5,390,0,25.403,45.776,195,6549.115,1277077.5,0,0.018,1.018,24.936 15 | 2016-02-15 16:11:18,5,521,0,19.374,26.622,260.5,7332.393,1910088.5,0,0.021,1.058,18.896 16 | 2016-02-15 16:11:20,5,393,0,25.224,36.423,196.5,7084.628,1392129.5,0,0.013,1.056,24.735 17 | 2016-02-15 16:11:22,5,575,0,17.136,23.702,287.5,6437.191,1850692.5,0,0.037,1.045,16.303 18 | 2016-02-15 16:11:24,5,563,0,17.453,24.865,281.5,6695.575,1884804.5,0,0.02,1.034,17.007 19 | 2016-02-15 16:11:26,5,484,0,20.349,25.798,242,6967.826,1686214,0,0.014,1.041,19.855 20 | 2016-02-15 16:11:28,5,550,0,17.605,21.172,275,7627.636,2097600,0,0.013,1.033,17.058 21 | 2016-02-15 16:11:30,5,499,0,20.1,30.65,249.5,6923.261,1727353.5,0,0.012,1.056,19.631 22 | 2016-02-15 16:11:32,5,483,0,20.592,32.643,241.5,7268.975,1755457.5,0,0.01,1.029,20.081 23 | 2016-02-15 16:11:34,5,489,0,20.19,31.546,244.5,7374.397,1803040,0,0.035,1.055,19.687 24 | 2016-02-15 16:11:36,5,508,0,19.451,28.964,254,6780.081,1722140.5,0,0.061,1.057,19.041 25 | 2016-02-15 16:11:38,5,493,0,20.191,28.133,246.5,6882.661,1696576,0,0.065,1.043,19.744 26 | 2016-02-15 16:11:40,5,448,0,21.609,39.128,224,6631.801,1485523.5,0,0.074,1.062,21.147 27 | 2016-02-15 16:11:42,5,531,0,19.111,25.044,265.5,6999.394,1858339,0,0.049,1.019,18.667 28 | 2016-02-15 16:11:44,5,527,0,17.886,22.155,263.5,7317.96,1928282.5,0,0.047,1.013,17.414 29 | 2016-02-15 16:11:46,5,535,0,19.357,21.78,267.5,6911.297,1848772,0,0.041,1.017,18.933 30 | 2016-02-15 16:11:48,5,495,0,20.16,31.765,247.5,7243.257,1792706,0,0.04,1.034,19.685 31 | 2016-02-15 16:11:50,5,538,0,18.409,24.044,269,7047.825,1895865,0,0.067,1.045,17.987 32 | 2016-02-15 16:11:52,5,588,0,16.837,20.646,294,6838.65,2010563,0,0.056,1.051,16.42 33 | 2016-02-15 16:11:54,5,552,0,17.917,25.501,276,7056.054,1947471,0,0.047,1.011,17.475 34 | 2016-02-15 16:11:56,5,448,0,22.042,36.497,224,7023.386,1573238.5,0,0.027,1.002,21.583 35 | 2016-02-15 16:11:58,5,532,0,16.906,15.745,266,7142.585,1899927.5,0,0.051,1.021,16.489 36 | 2016-02-15 16:12:00,5,499,0,20.567,30.109,249.5,7135.184,1780228.5,0,0.016,0.96,20.106 37 | 2016-02-15 16:12:02,5,487,0,21.684,58.247,243.5,7264.918,1769007.5,0,0.004,3.014,21.209 38 | 2016-02-15 16:12:04,5,526,0,18.827,24.813,263,7641.289,2009659,0,0.021,0.994,18.352 39 | 2016-02-15 16:12:06,5,420,0,23.498,36.006,210,7264.205,1525483,0,0.012,0.99,23.014 40 | 2016-02-15 16:12:08,5,544,0,18.32,24.897,272,7016.939,1908607.5,0,0.004,1.006,17.846 41 | 2016-02-15 16:12:10,5,473,0,20.97,37.87,236.5,6756.186,1597838,0,0.017,0.994,19.888 42 | 2016-02-15 16:12:12,5,523,0,19.105,34.603,261.5,6860.033,1793898.5,0,0.017,1.013,18.66 43 | 2016-02-15 16:12:14,5,548,0,17.268,14.53,274,7676.673,2103408.5,0,0.015,0.998,16.797 44 | 2016-02-15 16:12:16,5,356,0,22.185,32.027,178,7098.61,1263552.5,0,0,1,21.742 45 | 2016-02-15 16:12:18,5,682,0,18.166,22.396,341,7426.925,2532581.5,0,0.023,0.979,17.718 46 | 2016-02-15 16:12:20,5,473,0,20.96,31.562,236.5,7098.651,1678831,0,0.008,0.992,20.535 47 | 2016-02-15 16:12:22,5,549,0,18.106,23.238,274.5,6482.709,1779503.5,0,0.002,0.976,17.705 48 | 2016-02-15 16:12:24,5,553,0,17.864,24.152,276.5,7082.676,1958360,0,0.025,0.984,17.43 49 | 2016-02-15 16:12:26,5,416,0,17.183,13.783,208,7198.361,1497259,0,0.043,1.019,16.745 50 | 2016-02-15 16:12:28,5,570,0,18.03,24.878,285,6946.654,1979796.5,0,0.016,1.023,17.582 51 | 2016-02-15 16:12:30,5,641,0,19.384,28.409,320.5,6907.315,2213794.5,0,0.003,0.988,18.973 52 | 2016-02-15 16:12:32,5,553,0,18,24.532,276.5,6900.637,1908026,0,0.022,0.991,17.566 53 | 2016-02-15 16:12:34,5,514,0,19.272,29.487,257,7811.909,2007660.5,0,0,0.94,18.778 54 | 2016-02-15 16:12:36,5,462,0,21.548,38.516,231,7246.355,1673908,0,0.022,1.009,21.1 55 | 2016-02-15 16:12:38,5,561,0,17.613,25.006,280.5,6437.964,1805849,0,0.011,0.957,17.207 56 | 2016-02-15 16:12:40,5,566,0,16.696,12.932,283,7376.435,2087531,0,0.016,1.027,16.228 57 | 2016-02-15 16:12:42,5,591,0,17.504,23.297,295.5,6957.479,2055935,0,0.019,0.983,17.068 58 | 2016-02-15 16:12:44,5,529,0,18.864,27.245,264.5,7095.391,1876731,0,0.004,0.992,18.397 59 | 2016-02-15 16:12:46,5,501,0,19.894,28.372,250.5,6550.908,1641002.5,0,0.006,1,19.499 60 | 2016-02-15 16:12:48,5,402,0,18.498,30.293,201,6288.316,1263951.5,0,0.005,0.98,18.085 61 | 2016-02-15 16:12:50,5,612,0,20.319,36.209,306,7056.505,2159290.5,0,0.007,0.972,19.869 62 | 2016-02-15 16:12:52,5,532,0,18.613,29.152,266,6815.912,1813032.5,0,0.032,1.024,18.201 63 | 2016-02-15 16:12:54,5,512,0,19.34,31.084,256,6942.234,1777212,0,0.023,1.012,18.93 64 | 2016-02-15 16:12:56,5,478,0,20.816,25.497,239,7300.722,1744872.5,0,0.021,0.998,20.345 65 | 2016-02-15 16:12:58,5,556,0,17.82,23.762,278,6844.079,1902654,0,0.016,0.989,17.406 66 | 2016-02-15 16:13:00,5,484,0,20.452,30.197,242,7410.06,1793234.5,0,0.004,0.973,19.981 67 | 2016-02-15 16:13:02,5,493,0,20.13,27.057,246.5,7442.698,1834625,0,0.01,0.953,19.667 68 | 2016-02-15 16:13:04,5,501,0,19.864,29.705,250.5,7111.984,1781552,0,0.006,0.96,19.417 69 | 2016-02-15 16:13:06,5,557,0,17.743,27.05,278.5,6563.732,1827999.5,0,0.007,0.95,17.35 70 | 2016-02-15 16:13:08,5,509,0,19.363,25.51,254.5,7769.269,1977279,0,0,0.965,18.886 71 | 2016-02-15 16:13:10,5,518,0,19.438,29.616,259,6825.245,1767738.5,0,0.031,1.01,19.008 72 | 2016-02-15 16:13:12,5,614,0,15.66,10.567,307,7138.901,2191642.5,0,0.003,0.98,15.204 73 | 2016-02-15 16:13:14,5,515,0,19.744,28.684,257.5,7479.122,1925874,0,0.017,0.963,19.285 74 | 2016-02-15 16:13:16,5,453,0,21.819,33.987,226.5,7031.684,1592676.5,0,0.038,0.993,21.404 75 | 2016-02-15 16:13:18,5,527,0,18.922,27.812,263.5,7408.803,1952219.5,0,0.019,0.989,18.461 76 | 2016-02-15 16:13:20,5,463,0,21.309,29.742,231.5,7462.762,1727629.5,0,0.009,0.994,20.853 77 | 2016-02-15 16:13:22,5,332,0,22.611,40.037,166,6417.292,1065270.5,0,0.024,0.982,22.226 78 | 2016-02-15 16:13:24,5,549,0,16.519,21.721,274.5,6861.832,1883573,0,0.035,0.995,16.117 79 | 2016-02-15 16:13:26,5,463,0,21.13,33.81,231.5,6922.566,1602574,0,0.004,0.974,20.67 80 | 2016-02-15 16:13:28,5,578,0,18.448,24.357,289,7446.635,2152077.5,0,0.012,0.969,17.984 81 | 2016-02-15 16:13:30,5,485,0,20.963,36.201,242.5,6726.907,1631275,0,0.019,1.019,20.526 82 | 2016-02-15 16:13:32,5,462,0,21.571,29.173,231,7456.976,1722561.5,0,0.004,0.983,21.102 83 | 2016-02-15 16:13:34,5,643,0,19.275,27.084,321.5,7384.613,2374153,0,0.005,0.955,18.792 84 | 2016-02-15 16:13:36,5,307,0,24.104,39.7,153.5,7714.208,1184131,0,0.02,0.977,23.612 85 | 2016-02-15 16:13:38,5,670,0,18.575,24.496,335,7067.991,2367777,0,0.016,0.994,18.139 86 | 2016-02-15 16:13:40,5,428,0,17.516,16.016,214,6931.369,1483313,0,0.026,1.009,17.086 87 | 2016-02-15 16:13:42,5,548,0,18.082,29.174,274,6672.157,1828171,0,0.004,0.929,17.646 88 | 2016-02-15 16:13:44,5,555,0,17.923,26.072,277.5,6671.831,1851433,0,0.023,0.978,17.515 89 | 2016-02-15 16:13:46,5,468,0,21.259,35.829,234,6736.365,1576309.5,0,0.019,0.996,20.833 90 | 2016-02-15 16:13:48,5,497,0,19.891,31.809,248.5,6817.632,1694181.5,0,0.014,1,19.477 91 | 2016-02-15 16:13:50,5,523,0,18.864,28.771,261.5,7047.811,1843002.5,0,0.021,0.989,18.409 92 | 2016-02-15 16:13:52,5,585,0,21.439,37.503,292.5,6818.66,1994458,0,0.026,1.009,21.027 93 | 2016-02-15 16:13:54,5,517,0,16.484,24.645,258.5,6885.439,1779886,0,0.004,0.956,16.015 94 | 2016-02-15 16:13:56,5,493,0,21.14,35.636,246.5,6872.517,1694075.5,0,0.006,1.022,20.712 95 | 2016-02-15 16:13:58,5,566,0,18.973,46.207,283,7023.615,1987683,0,0.018,2.767,18.544 96 | 2016-02-15 16:14:00,5,519,0,19.143,24.639,259.5,6805.877,1766125,0,0.021,1.008,18.696 97 | 2016-02-15 16:14:02,5,527,0,18.658,24.237,263.5,7168.317,1888851.5,0,0.008,0.968,18.231 98 | 2016-02-15 16:14:04,5,564,0,17.848,26.271,282,7017.083,1978817.5,0,0.002,0.973,17.401 99 | 2016-02-15 16:14:06,5,490,0,20.153,27.124,245,7874.906,1929352,0,0.018,0.996,19.663 100 | 2016-02-15 16:14:08,5,555,0,17.766,43.818,277.5,7258.519,2014239,0,0.018,2.798,17.305 101 | 2016-02-15 16:14:10,5,310,0,23.765,45.257,155,7475.316,1158674,0,0.01,0.945,23.316 102 | 2016-02-15 16:14:12,5,525,0,19.278,24.447,262.5,6655.156,1746978.5,0,0.006,0.989,18.853 103 | 2016-02-15 16:14:14,5,534,0,18.655,26.934,267,6768.629,1807224,0,0.007,0.933,18.221 104 | 2016-02-15 16:14:16,5,535,0,18.546,26.185,267.5,7022.693,1878570.5,0,0.004,0.966,18.095 105 | 2016-02-15 16:14:18,5,630,0,15.662,14.111,315,7042.998,2218544.5,0,0.013,0.975,15.237 106 | 2016-02-15 16:14:20,5,521,0,19.115,25.999,260.5,7693.186,2004075,0,0.004,0.933,18.672 107 | 2016-02-15 16:14:22,5,669,0,18.311,24.908,334.5,6793.824,2272534,0,0.022,0.969,17.892 108 | 2016-02-15 16:14:24,5,546,0,18.352,24.329,273,7289.61,1990063.5,0,0.005,0.962,17.916 109 | 2016-02-15 16:14:26,5,334,0,22.419,38.634,167,6828.829,1140414.5,0,0.009,0.97,21.964 110 | 2016-02-15 16:14:28,5,561,0,16.173,12.168,280.5,7431.33,2084488,0,0.005,0.955,15.702 111 | 2016-02-15 16:14:30,5,556,0,19.016,25.382,278,6794.099,1888759.5,0,0.018,0.986,18.597 112 | 2016-02-15 16:14:32,5,412,0,24.617,40.373,206,6778.857,1396444.5,0,0.005,0.951,24.204 113 | 2016-02-15 16:14:34,5,378,0,25.947,66.372,189,7088.455,1339718,0,0.024,1.011,25.466 114 | 2016-02-15 16:14:36,5,443,0,22.765,39.687,221.5,6431.44,1424564,0,0.018,1.002,22.357 115 | 2016-02-15 16:14:38,5,529,0,18.813,27.353,264.5,7050.917,1864967.5,0,0.008,0.94,18.372 116 | 2016-02-15 16:14:40,5,398,0,24.862,47.332,199,8354.264,1662498.5,0,0.005,0.965,24.367 117 | 2016-02-15 16:14:42,5,483,0,20.455,32.026,241.5,6716.354,1621999.5,0,0.002,1.002,20.027 118 | 2016-02-15 16:14:44,5,482,0,20.728,33.136,241,7585.151,1828021.5,0,0.004,0.963,20.28 119 | 2016-02-15 16:14:46,5,433,0,23.03,33.078,216.5,6875.229,1488487,0,0.023,0.986,22.612 120 | 2016-02-15 16:14:48,5,609,0,15.361,11.629,304.5,6928.53,2109737.5,0,0.01,0.99,14.921 121 | 2016-02-15 16:14:50,5,513,0,20.423,28.077,256.5,7316.635,1876717,0,0.016,1.01,19.984 122 | 2016-02-15 16:14:52,5,512,0,19.318,28.552,256,6794.93,1739502,0,0.016,0.977,18.906 123 | 2016-02-15 16:14:54,5,507,0,19.623,29.302,253.5,7476.974,1895413,0,0.02,1.01,18.761 124 | 2016-02-15 16:14:56,5,514,0,19.305,28.962,257,7374.274,1895188.5,0,0.008,0.975,18.846 125 | 2016-02-15 16:14:58,5,544,0,17.327,19.387,272,7587.763,2063871.5,0,0.011,0.985,16.853 126 | 2016-02-15 16:15:00,5,545,0,19.16,23.151,272.5,6794.782,1851578,0,0.006,0.963,18.745 127 | 2016-02-15 16:15:02,5,478,0,20.778,30.468,239,7374.297,1762457,0,0.017,0.998,20.328 128 | 2016-02-15 16:15:04,5,470,0,21.145,40.815,235,6991.706,1643051,0,0.019,0.983,20.719 129 | 2016-02-15 16:15:06,5,514,0,19.356,25.889,257,7429.776,1909452.5,0,0.002,0.957,18.866 130 | 2016-02-15 16:15:08,5,529,0,18.711,24.722,264.5,7314.357,1934647.5,0,0.011,1.002,18.257 131 | 2016-02-15 16:15:10,5,511,0,18.765,29.178,255.5,7405.865,1892198.5,0,0.004,0.986,18.319 132 | 2016-02-15 16:15:12,5,449,0,22.886,33.514,224.5,7346.176,1649216.5,0,0,0.982,22.412 133 | 2016-02-15 16:15:14,5,555,0,16.267,11.922,277.5,7393.079,2051579.5,0,0.022,0.969,15.809 134 | 2016-02-15 16:15:16,5,594,0,18.177,23.324,297,7210.906,2141639,0,0.015,1.005,17.34 135 | 2016-02-15 16:15:18,5,487,0,20.255,33.133,243.5,7135.641,1737528.5,0,0.006,0.969,19.807 136 | 2016-02-15 16:15:20,5,501,0,19.719,33.184,250.5,6694.9,1677072.5,0,0.02,0.974,19.325 137 | 2016-02-15 16:15:22,5,464,0,21.634,35.19,232,7224.36,1676051.5,0,0.002,0.953,21.192 138 | 2016-02-15 16:15:24,5,513,0,19.335,26.263,256.5,7530.926,1931682.5,0,0.021,0.967,18.877 139 | 2016-02-15 16:15:26,5,534,0,18.62,23.931,267,7489.994,1999828.5,0,0.002,0.964,18.157 140 | 2016-02-15 16:15:28,5,540,0,16.817,13.811,270,7152.474,1931168,0,0.011,0.963,16.348 141 | 2016-02-15 16:15:30,5,535,0,19.92,30.61,267.5,7187.413,1922633,0,0.007,0.972,19.08 142 | 2016-02-15 16:15:32,5,473,0,21.277,37.356,236.5,6624.816,1566769,0,0.021,0.975,20.886 143 | 2016-02-15 16:15:34,5,548,0,18.12,24.513,274,6941.575,1901991.5,0,0.024,0.973,17.699 144 | 2016-02-15 16:15:36,5,512,0,19.316,28.055,256,7047.266,1804100,0,0.016,0.996,18.875 145 | 2016-02-15 16:15:38,5,567,0,15.61,11.25,283.5,7000.912,1984758.5,0,0.019,0.951,15.196 146 | 2016-02-15 16:15:40,5,561,0,19.708,27.652,280.5,7232.307,2028662,0,0.002,0.941,19.255 147 | 2016-02-15 16:15:42,5,558,0,17.756,23.616,279,6667.832,1860325,0,0.005,0.97,17.341 148 | 2016-02-15 16:15:44,5,543,0,18.217,23.268,271.5,7306.343,1983672,0,0.017,0.985,17.753 149 | 2016-02-15 16:15:46,5,472,0,21.076,40.176,236,7394.591,1745123.5,0,0.036,0.992,20.612 150 | 2016-02-15 16:15:48,5,497,0,20.012,38.269,248.5,6964.596,1730702,0,0.022,0.968,19.596 151 | 2016-02-15 16:15:50,5,492,0,20.069,35.567,246,7520.701,1850092.5,0,0.006,0.949,19.612 152 | 2016-02-15 16:15:52,5,594,0,16.02,12.834,297,6765.694,2009411,0,0.002,0.944,15.609 153 | 2016-02-15 16:15:54,5,567,0,18.169,24.518,283.5,7147.515,2026320.5,0,0.004,0.949,17.734 154 | 2016-02-15 16:15:56,5,470,0,21.16,36.494,235,6468.796,1520167,0,0.021,1.011,20.768 155 | 2016-02-15 16:15:58,5,505,0,19.741,32.708,252.5,6894.877,1740956.5,0,0.006,0.972,19.305 156 | 2016-02-15 16:16:00,5,479,0,20.739,34.591,239.5,7401.113,1772566.5,0,0.019,1.008,20.305 157 | 2016-02-15 16:16:02,5,464,0,21.379,32.475,232,7085.14,1643752.5,0,0.022,0.987,20.955 158 | 2016-02-15 16:16:04,5,702,0,17.709,23.596,351,6857.054,2406826,0,0.007,0.962,17.312 159 | 2016-02-15 16:16:06,5,593,0,15.347,11.175,296.5,6864.796,2035412,0,0.005,0.978,14.933 160 | 2016-02-15 16:16:08,5,542,0,19.708,27.74,271,6927.991,1877485.5,0,0.017,0.967,19.286 161 | 2016-02-15 16:16:10,5,521,0,19.125,33.25,260.5,7089.138,1846720.5,0,0.002,0.948,18.714 162 | 2016-02-15 16:16:12,5,508,0,19.522,31.489,254,7581.291,1925648,0,0.01,0.994,19.022 163 | 2016-02-15 16:16:14,5,568,0,17.465,26.355,284,6505.479,1847556,0,0.018,0.975,17.069 164 | 2016-02-15 16:16:16,5,551,0,17.913,23.943,275.5,6668.105,1837063,0,0.015,0.984,17.486 165 | 2016-02-15 16:16:18,5,546,0,18.139,24.28,273,7155.835,1953543,0,0.037,1.004,17.672 166 | 2016-02-15 16:16:20,5,575,0,17.383,15.585,287.5,7248.831,2084039,0,0.002,0.944,16.918 167 | 2016-02-15 16:16:22,5,573,0,17.344,24.848,286.5,6638.305,1901874.5,0,0.016,0.976,16.934 168 | 2016-02-15 16:16:24,5,495,0,19.879,30.47,247.5,6577.008,1627809.5,0,0.018,1.002,19.473 169 | 2016-02-15 16:16:26,5,529,0,18.79,27.141,264.5,7104.845,1879231.5,0,0.002,0.972,18.338 170 | 2016-02-15 16:16:28,5,532,0,18.727,27.288,266,7215.009,1919192.5,0,0.015,0.976,18.273 171 | 2016-02-15 16:16:30,5,532,0,17.662,21.756,266,7294.056,1940219,0,0.017,0.976,17.212 172 | 2016-02-15 16:16:32,5,622,0,16.661,17.426,311,7006.114,2178901.5,0,0.011,0.974,16.217 173 | 2016-02-15 16:16:34,5,527,0,18.989,31.929,263.5,7016.964,1848970,0,0.017,0.97,18.569 174 | 2016-02-15 16:16:36,5,541,0,18.294,25.415,270.5,6798.109,1838888.5,0,0.007,0.946,17.869 175 | 2016-02-15 16:16:38,5,535,0,18.583,29.375,267.5,6878.505,1840000,0,0.021,0.987,18.153 176 | 2016-02-15 16:16:40,5,409,0,24.205,39.263,204.5,7025.017,1436616,0,0.022,1.002,23.76 177 | 2016-02-15 16:16:42,5,515,0,18.555,28.963,257.5,7560.621,1946860,0,0.016,0.984,18.118 178 | 2016-02-15 16:16:44,5,578,0,17.766,19,289,7419.119,2144125.5,0,0.003,0.972,17.329 179 | 2016-02-15 16:16:46,5,403,0,24.767,45.97,201.5,6712.424,1352553.5,0,0.017,1.03,24.37 180 | 2016-02-15 16:16:48,5,511,0,19.382,28.337,255.5,7182.395,1835102,0,0,0.963,18.9 181 | 2016-02-15 16:16:50,5,534,0,18.547,28.894,267,6715.206,1792960,0,0.021,1.006,18.137 182 | 2016-02-15 16:16:52,5,490,0,20.339,30.925,245,6643.58,1627677,0,0.018,0.957,19.955 183 | 2016-02-15 16:16:54,5,582,0,17.077,25.201,291,6744.089,1962530,0,0.003,0.952,16.644 184 | 2016-02-15 16:16:56,5,610,0,16.177,14.056,305,7013.482,2139112,0,0.005,0.979,15.731 185 | 2016-02-15 16:16:58,5,532,0,18.712,26.201,266,6538.239,1739171.5,0,0.011,0.972,18.288 186 | 2016-02-15 16:17:00,5,505,0,19.533,27.753,252.5,7253.79,1831582,0,0.032,0.956,19.097 187 | 2016-02-15 16:17:02,5,511,0,19.47,27.131,255.5,7080.526,1809074.5,0,0.02,0.986,19.031 188 | 2016-02-15 16:17:04,5,548,0,18.146,25.43,274,6790.036,1860470,0,0.005,0.934,17.706 189 | 2016-02-15 16:17:06,5,415,0,21.945,29.501,207.5,7001.058,1452719.5,0,0.002,0.986,21.489 190 | 2016-02-15 16:17:08,5,512,0,20.947,50.613,256,7217.783,1847752.5,0,0.02,2.916,20.525 191 | 2016-02-15 16:17:10,5,536,0,18.528,24.207,268,7083.256,1898312.5,0,0.021,0.97,18.09 192 | 2016-02-15 16:17:12,5,494,0,20.057,29.527,247,7291.83,1801082,0,0.022,1.071,19.569 193 | 2016-02-15 16:17:14,5,372,0,20.046,28.137,186,6906.196,1284552.5,0,0.008,1.102,19.581 194 | 2016-02-15 16:17:16,5,533,0,18.531,27.172,266.5,6554.523,1746780.5,0,0.032,1.011,18.128 195 | 2016-02-15 16:17:18,5,683,0,18.211,23.642,341.5,7375.561,2518754,0,0.015,0.99,17.783 196 | 2016-02-15 16:17:20,5,616,0,16.026,12.791,308,6740.076,2075943.5,0,0.003,0.966,15.558 197 | 2016-02-15 16:17:22,5,550,0,18.053,24.669,275,6937.987,1907946.5,0,0.004,0.978,17.629 198 | 2016-02-15 16:17:24,5,545,0,18.158,25.881,272.5,6902.481,1880926,0,0.013,0.996,17.719 199 | 2016-02-15 16:17:26,5,484,0,20.51,32.354,242,7226.289,1748762,0,0.021,0.957,20.041 200 | 2016-02-15 16:17:28,5,445,0,22.272,43.203,222.5,6827.209,1519054,0,0.016,0.993,21.876 201 | 2016-02-15 16:17:30,5,504,0,19.851,29.908,252,6786.95,1710311.5,0,0.014,0.982,19.446 202 | 2016-02-15 16:17:32,5,544,0,18.164,24.012,272,7220.675,1964023.5,0,0.026,0.982,17.728 203 | 2016-02-15 16:17:34,5,651,0,14.903,9.793,325.5,6891.054,2243038,0,0.023,0.998,14.461 204 | 2016-02-15 16:17:36,5,509,0,19.845,27.145,254.5,7098.314,1806521,0,0.022,0.965,19.397 205 | 2016-02-15 16:17:38,5,538,0,18.593,25.555,269,6962.039,1872788.5,0,0.004,0.965,18.132 206 | 2016-02-15 16:17:40,5,487,0,20.458,27.5,243.5,6963.271,1695556.5,0,0.012,0.979,20.027 207 | 2016-02-15 16:17:42,5,574,0,17.232,23.447,287,6887.045,1976582,0,0.002,0.962,16.829 208 | 2016-02-15 16:17:44,5,534,0,17.875,27.327,267,6515.637,1739675,0,0.03,0.994,17.367 209 | 2016-02-15 16:17:46,5,599,0,17.194,17.628,299.5,6554.192,1962980.5,0,0.003,1,16.785 210 | 2016-02-15 16:17:48,5,475,0,20.846,35.887,237.5,6853.259,1627649,0,0.004,0.962,20.394 211 | 2016-02-15 16:17:50,5,533,0,18.587,25.139,266.5,6841.058,1823142,0,0.017,0.979,18.176 212 | 2016-02-15 16:17:52,5,508,0,19.663,26.589,254,7447.514,1891668.5,0,0.022,1.01,19.22 213 | 2016-02-15 16:17:54,5,527,0,18.455,30.376,263.5,7547.247,1988699.5,0,0.023,1.002,17.987 214 | 2016-02-15 16:17:56,5,581,0,17.394,15.28,290.5,7141.222,2074525,0,0.015,0.986,16.954 215 | 2016-02-15 16:17:58,5,525,0,18.878,31.403,262.5,7107.358,1865681.5,0,0.021,0.994,18.419 216 | 2016-02-15 16:18:00,5,504,0,19.712,25.9,252,7198.137,1813930.5,0,0.03,1.022,19.288 217 | 2016-02-15 16:18:02,5,533,0,18.645,25.372,266.5,7151.278,1905815.5,0,0.019,0.989,18.195 218 | 2016-02-15 16:18:04,5,508,0,19.514,32.803,254,6999.868,1777966.5,0,0.006,0.978,19.075 219 | 2016-02-15 16:18:06,5,504,0,19.657,28.789,252,7164.954,1805568.5,0,0.004,0.994,19.171 220 | 2016-02-15 16:18:08,5,538,0,16.894,21.342,269,7063.368,1900046,0,0.007,0.976,16.437 221 | 2016-02-15 16:18:10,5,559,0,19.086,26.675,279.5,6888.585,1925359.5,0,0.018,0.964,18.66 222 | 2016-02-15 16:18:12,5,518,0,19.234,27.733,259,6979.384,1807660.5,0,0.019,0.986,18.849 223 | 2016-02-15 16:18:14,5,534,0,18.629,26.27,267,6977.564,1863009.5,0,0,0.983,18.159 224 | 2016-02-15 16:18:16,5,541,0,18.213,25.038,270.5,7274.362,1967715,0,0.004,0.952,17.758 225 | 2016-02-15 16:18:18,5,547,0,17.388,22.971,273.5,6925.093,1894013,0,0.016,0.963,16.98 226 | 2016-02-15 16:18:20,5,587,0,17.284,19.738,293.5,6928.835,2033613,0,0.017,0.99,16.869 227 | 2016-02-15 16:18:22,5,456,0,22.388,35.633,228,7046.357,1606569.5,0,0.011,0.998,21.95 228 | 2016-02-15 16:18:24,5,528,0,18.744,26.981,264,7442.536,1964829.5,0,0,0.955,18.294 229 | 2016-02-15 16:18:26,5,493,0,20.185,28.692,246.5,7233.185,1782980,0,0.02,0.996,19.7 230 | 2016-02-15 16:18:28,5,513,0,19.275,28.103,256.5,7635.595,1958530,0,0.018,1.016,18.774 231 | 2016-02-15 16:18:30,5,457,0,21.834,31.311,228.5,7725.433,1765261.5,0,0.018,1.018,21.383 232 | 2016-02-15 16:18:32,5,213,0,46.934,105.178,106.5,7635.272,813156.5,0,0.019,0.986,46.46 233 | 2016-02-15 16:18:34,5,501,0,19.79,35.005,250.5,7128.675,1785733,0,0,0.954,19.337 234 | 2016-02-15 16:18:36,5,584,0,15.943,13.703,292,7258.656,2119527.5,0,0.007,0.985,15.515 235 | 2016-02-15 16:18:38,5,553,0,19.007,30.485,276.5,7280.13,2012956,0,0.025,1.025,17.528 236 | 2016-02-15 16:18:40,5,412,0,24.148,41.098,206,7473.274,1539494.5,0,0.005,1.002,23.663 237 | 2016-02-15 16:18:42,5,498,0,20.046,30.083,249,6955.819,1731999,0,0.006,1.02,19.616 238 | 2016-02-15 16:18:44,5,464,0,21.362,34.068,232,6652.819,1543454,0,0.004,0.97,20.905 239 | 2016-02-15 16:18:46,5,486,0,20.42,28.928,243,6827.2,1659009.5,0,0.016,0.981,20.006 240 | 2016-02-15 16:18:48,5,594,0,15.862,11.515,297,7292.746,2165945.5,0,0.007,0.97,15.402 241 | 2016-02-15 16:18:50,5,534,0,19.442,23.504,267,6927.363,1849606,0,0.004,0.97,19.002 242 | 2016-02-15 16:18:52,5,510,0,19.522,31.974,255,7305.192,1862824,0,0.016,0.969,19.084 243 | 2016-02-15 16:18:54,5,483,0,20.511,30.431,241.5,7371.489,1780214.5,0,0.006,0.992,20.064 244 | 2016-02-15 16:18:56,5,465,0,21.404,33.164,232.5,7049.923,1639107,0,0.017,0.991,20.94 245 | 2016-02-15 16:18:58,5,519,0,19.135,31.572,259.5,7643.493,1983486.5,0,0.002,0.971,18.686 246 | 2016-02-15 16:19:00,5,537,0,18.449,24.978,268.5,6785.764,1821977.5,0,0.006,0.98,17.991 247 | 2016-02-15 16:19:02,5,551,0,18.064,26.735,275.5,6917.904,1905882.5,0,0.002,0.94,17.632 248 | 2016-02-15 16:19:04,5,549,0,17.956,22.985,274.5,7320.543,2009489,0,0.004,1.022,17.468 249 | 2016-02-15 16:19:06,5,455,0,21.945,34.138,227.5,7233.426,1645604.5,0,0.024,1.011,21.508 250 | 2016-02-15 16:19:08,5,518,0,19.139,36.988,259,6133.506,1588578,0,0.015,1.037,18.792 251 | 2016-02-15 16:19:10,5,532,0,18.414,24.919,266,7071.397,1880991.5,0,0.015,0.977,17.97 252 | 2016-02-15 16:19:12,5,535,0,18.774,27.439,267.5,7485.441,2002355.5,0,0.007,0.959,18.331 253 | 2016-02-15 16:19:14,5,600,0,15.417,9.716,300,6999.285,2099785.5,0,0.01,0.97,14.978 254 | 2016-02-15 16:19:16,5,597,0,17.752,24.718,298.5,6697.08,1999078.5,0,0.018,0.953,17.347 255 | 2016-02-15 16:19:18,5,523,0,18.939,29.716,261.5,7368.665,1926906,0,0.017,0.967,18.482 256 | 2016-02-15 16:19:20,5,501,0,19.675,28.022,250.5,7410.273,1856273.5,0,0.004,0.986,19.214 257 | 2016-02-15 16:19:22,5,527,0,19.019,26.03,263.5,7036.097,1854011.5,0,0.017,0.973,18.583 258 | 2016-02-15 16:19:24,5,494,0,19.968,39.557,247,7115.099,1757429.5,0,0.022,0.966,19.547 259 | 2016-02-15 16:19:26,5,613,0,16.181,11.741,306.5,6906.935,2116975.5,0,0.008,0.956,15.757 260 | 2016-02-15 16:19:28,5,464,0,21.06,31.368,232,7249.8,1681953.5,0,0.019,1.011,20.147 261 | 2016-02-15 16:19:30,5,527,0,19.055,26.069,263.5,6649.08,1752032.5,0,0.009,0.962,18.617 262 | 2016-02-15 16:19:32,5,562,0,17.822,26.414,281,6541.69,1838215,0,0.005,0.966,17.413 263 | 2016-02-15 16:19:34,5,504,0,19.651,33.845,252,7431.218,1872667,0,0.016,0.94,19.234 264 | 2016-02-15 16:19:36,5,554,0,17.81,23.409,277,6824.502,1890387,0,0.032,1.023,17.386 265 | 2016-02-15 16:19:38,5,608,0,16.095,13.994,304,7074.941,2150782,0,0.015,0.947,15.686 266 | 2016-02-15 16:19:40,5,516,0,19.653,27.863,258,6801.132,1754692,0,0.008,0.955,19.242 267 | 2016-02-15 16:19:42,5,407,0,24.435,75.975,203.5,6809.722,1385778.5,0,0.02,5.899,24.027 268 | 2016-02-15 16:19:44,5,541,0,18.294,26.553,270.5,6739.165,1822944,0,0.018,0.987,17.854 269 | 2016-02-15 16:19:46,5,497,0,19.966,33.1,248.5,6648.73,1652209.5,0,0.006,0.964,19.539 270 | 2016-02-15 16:19:48,5,515,0,19.32,34.627,257.5,6602.369,1700110,0,0.016,1.002,18.918 271 | 2016-02-15 16:19:50,5,566,0,15.991,14.047,283,6678.182,1889925.5,0,0.028,1.032,15.58 272 | 2016-02-15 16:19:52,5,535,0,20.254,29.615,267.5,7276.746,1946529.5,0,0.004,0.998,19.774 273 | 2016-02-15 16:19:54,5,651,0,15.111,10.358,325.5,6833.127,2224183,0,0.026,0.971,14.697 274 | 2016-02-15 16:19:56,5,495,0,20.19,32.629,247.5,7121.202,1762497.5,0,0.004,0.956,19.721 275 | 2016-02-15 16:19:58,5,534,0,18.592,23.689,267,7420.76,1981343,0,0.017,0.996,18.152 276 | 2016-02-15 16:20:00,5,540,0,18.337,26.375,270,6600.8,1782216,0,0.015,0.95,17.943 277 | 2016-02-15 16:20:02,5,511,0,19.45,27.92,255.5,7072.344,1806984,0,0.022,1.012,19.006 278 | 2016-02-15 16:20:04,5,549,0,16.53,14.82,274.5,7194.967,1975018.5,0,0.022,1.042,16.064 279 | 2016-02-15 16:20:06,5,597,0,18.022,23.914,298.5,7338.065,2190412.5,0,0,0.951,17.6 280 | 2016-02-15 16:20:08,5,488,0,20.184,34.616,244,7088.703,1729643.5,0,0.018,0.98,19.754 281 | 2016-02-15 16:20:10,5,518,0,19.299,28.526,259,7233.546,1873488.5,0,0.008,0.969,18.84 282 | 2016-02-15 16:20:12,5,541,0,18.322,24.012,270.5,7159.505,1936646,0,0.028,0.98,17.876 283 | 2016-02-15 16:20:14,5,455,0,21.648,32.512,227.5,7755.198,1764307.5,0,0.02,0.978,21.154 284 | 2016-02-15 16:20:16,5,544,0,17.893,23.58,272,6793.311,1847780.5,0,0.015,0.954,17.445 285 | 2016-02-15 16:20:18,5,612,0,16.533,15.778,306,7147.186,2187039,0,0.016,0.98,16.085 286 | 2016-02-15 16:20:20,5,501,0,19.906,27.669,250.5,6341.467,1588537.5,0,0.002,0.93,19.509 287 | 2016-02-15 16:20:22,5,529,0,18.467,26.279,264.5,7439.724,1967807,0,0.017,0.996,18.004 288 | 2016-02-15 16:20:24,5,491,0,20.554,28.345,245.5,7674.485,1884086,0,0.012,0.957,20.063 289 | 2016-02-15 16:20:26,5,432,0,22.947,38.246,216,7106.59,1535023.5,0,0,0.933,22.519 290 | 2016-02-15 16:20:28,5,496,0,20.095,29.831,248,7101.992,1761294,0,0.02,0.992,19.671 291 | 2016-02-15 16:20:30,5,612,0,16.212,11.89,306,7389.77,2261269.5,0,0.023,0.967,15.784 292 | 2016-02-15 16:20:32,5,486,0,20.21,29.537,243,7022.358,1706433,0,0.008,0.973,19.737 293 | 2016-02-15 16:20:34,5,536,0,18.651,29.676,268,7147.491,1915527.5,0,0.015,0.993,18.213 294 | 2016-02-15 16:20:36,5,477,0,20.774,31.337,238.5,7218.99,1721729,0,0,0.964,20.346 295 | 2016-02-15 16:20:38,5,527,0,18.723,30.673,263.5,6994.719,1843108.5,0,0.027,0.97,18.273 296 | 2016-02-15 16:20:40,5,524,0,18.676,28.667,262,6909.464,1810279.5,0,0.019,0.973,18.275 297 | 2016-02-15 16:20:42,5,518,0,17.616,13.254,259,8009.479,2074455,0,0.017,0.981,17.114 298 | 2016-02-15 16:20:44,5,567,0,18.102,25.652,283.5,6355.508,1801786.5,0,0.018,0.977,17.72 299 | -------------------------------------------------------------------------------- /src/main/resources/outputformat.csv: -------------------------------------------------------------------------------- 1 | DateTime,vuser,Tests,Errors,Mean_Test_Time,Test_Time_Standard_Deviation,TPS,Mean_response_length,Response_bytes_per_second,Response_errors,Mean_time_to_resolve_host,Mean_time_to_establish_connection,Mean_time_to_first_byte 2 | 2016-02-15 16:10:52,2,176,0,23.312,31.182,88,7336.335,645597.5,0,0.307,1.403,22.409 3 | 2016-02-15 16:10:54,4,337,0,22.733,38.204,168.5,6335.273,1067493.5,0,0.142,1.19,22.045 4 | 2016-02-15 16:10:56,5,476,0,20.237,27.869,238,6978.468,1660875.5,0,0.107,1.162,19.666 5 | 2016-02-15 16:10:58,5,499,0,19.383,23.688,249.5,6766.864,1688332.5,0,0.072,1.14,18.754 6 | 2016-02-15 16:11:00,5,481,0,20.133,27.714,240.5,7121.05,1712612.5,0,0.044,1.048,19.605 7 | 2016-02-15 16:11:02,5,569,0,17.188,12.066,284.5,7488.376,2130443,0,0.035,1.046,16.64 8 | 2016-02-15 16:11:04,5,390,0,25.264,41.386,195,7390.533,1441154,0,0.023,1.036,24.708 9 | 2016-02-15 16:11:06,5,451,0,21.665,29.588,225.5,7029.186,1585081.5,0,0.029,1.064,21.166 10 | 2016-02-15 16:11:08,5,458,0,21.467,32.682,229,6719.055,1538663.5,0,0.037,1.066,20.996 11 | 2016-02-15 16:11:10,5,431,0,19.847,28.562,215.5,7465.698,1608858,0,0.03,1.058,19.304 12 | 2016-02-15 16:11:12,5,428,0,25.907,115.617,214,6937.306,1484583.5,0,0.044,1.044,25.439 13 | 2016-02-15 16:11:14,5,565,0,16.903,13.614,282.5,6725.6,1899982,0,0.019,1.035,16.407 14 | 2016-02-15 16:11:16,5,390,0,25.403,45.776,195,6549.115,1277077.5,0,0.018,1.018,24.936 15 | 2016-02-15 16:11:18,5,521,0,19.374,26.622,260.5,7332.393,1910088.5,0,0.021,1.058,18.896 16 | 2016-02-15 16:11:20,5,393,0,25.224,36.423,196.5,7084.628,1392129.5,0,0.013,1.056,24.735 17 | 2016-02-15 16:11:22,5,575,0,17.136,23.702,287.5,6437.191,1850692.5,0,0.037,1.045,16.303 18 | 2016-02-15 16:11:24,5,563,0,17.453,24.865,281.5,6695.575,1884804.5,0,0.02,1.034,17.007 19 | 2016-02-15 16:11:26,5,484,0,20.349,25.798,242,6967.826,1686214,0,0.014,1.041,19.855 20 | 2016-02-15 16:11:28,5,550,0,17.605,21.172,275,7627.636,2097600,0,0.013,1.033,17.058 21 | 2016-02-15 16:11:30,5,499,0,20.1,30.65,249.5,6923.261,1727353.5,0,0.012,1.056,19.631 22 | 2016-02-15 16:11:32,5,483,0,20.592,32.643,241.5,7268.975,1755457.5,0,0.01,1.029,20.081 23 | 2016-02-15 16:11:34,5,489,0,20.19,31.546,244.5,7374.397,1803040,0,0.035,1.055,19.687 24 | 2016-02-15 16:11:36,5,508,0,19.451,28.964,254,6780.081,1722140.5,0,0.061,1.057,19.041 25 | 2016-02-15 16:11:38,5,493,0,20.191,28.133,246.5,6882.661,1696576,0,0.065,1.043,19.744 26 | 2016-02-15 16:11:40,5,448,0,21.609,39.128,224,6631.801,1485523.5,0,0.074,1.062,21.147 27 | 2016-02-15 16:11:42,5,531,0,19.111,25.044,265.5,6999.394,1858339,0,0.049,1.019,18.667 28 | 2016-02-15 16:11:44,5,527,0,17.886,22.155,263.5,7317.96,1928282.5,0,0.047,1.013,17.414 29 | 2016-02-15 16:11:46,5,535,0,19.357,21.78,267.5,6911.297,1848772,0,0.041,1.017,18.933 30 | 2016-02-15 16:11:48,5,495,0,20.16,31.765,247.5,7243.257,1792706,0,0.04,1.034,19.685 31 | 2016-02-15 16:11:50,5,538,0,18.409,24.044,269,7047.825,1895865,0,0.067,1.045,17.987 32 | 2016-02-15 16:11:52,5,588,0,16.837,20.646,294,6838.65,2010563,0,0.056,1.051,16.42 33 | 2016-02-15 16:11:54,5,552,0,17.917,25.501,276,7056.054,1947471,0,0.047,1.011,17.475 34 | 2016-02-15 16:11:56,5,448,0,22.042,36.497,224,7023.386,1573238.5,0,0.027,1.002,21.583 35 | 2016-02-15 16:11:58,5,532,0,16.906,15.745,266,7142.585,1899927.5,0,0.051,1.021,16.489 36 | 2016-02-15 16:12:00,5,499,0,20.567,30.109,249.5,7135.184,1780228.5,0,0.016,0.96,20.106 37 | 2016-02-15 16:12:02,5,487,0,21.684,58.247,243.5,7264.918,1769007.5,0,0.004,3.014,21.209 38 | 2016-02-15 16:12:04,5,526,0,18.827,24.813,263,7641.289,2009659,0,0.021,0.994,18.352 39 | 2016-02-15 16:12:06,5,420,0,23.498,36.006,210,7264.205,1525483,0,0.012,0.99,23.014 40 | 2016-02-15 16:12:08,5,544,0,18.32,24.897,272,7016.939,1908607.5,0,0.004,1.006,17.846 41 | 2016-02-15 16:12:10,5,473,0,20.97,37.87,236.5,6756.186,1597838,0,0.017,0.994,19.888 42 | 2016-02-15 16:12:12,5,523,0,19.105,34.603,261.5,6860.033,1793898.5,0,0.017,1.013,18.66 43 | 2016-02-15 16:12:14,5,548,0,17.268,14.53,274,7676.673,2103408.5,0,0.015,0.998,16.797 44 | 2016-02-15 16:12:16,5,356,0,22.185,32.027,178,7098.61,1263552.5,0,0,1,21.742 45 | 2016-02-15 16:12:18,5,682,0,18.166,22.396,341,7426.925,2532581.5,0,0.023,0.979,17.718 46 | 2016-02-15 16:12:20,5,473,0,20.96,31.562,236.5,7098.651,1678831,0,0.008,0.992,20.535 47 | 2016-02-15 16:12:22,5,549,0,18.106,23.238,274.5,6482.709,1779503.5,0,0.002,0.976,17.705 48 | 2016-02-15 16:12:24,5,553,0,17.864,24.152,276.5,7082.676,1958360,0,0.025,0.984,17.43 49 | 2016-02-15 16:12:26,5,416,0,17.183,13.783,208,7198.361,1497259,0,0.043,1.019,16.745 50 | 2016-02-15 16:12:28,5,570,0,18.03,24.878,285,6946.654,1979796.5,0,0.016,1.023,17.582 51 | 2016-02-15 16:12:30,5,641,0,19.384,28.409,320.5,6907.315,2213794.5,0,0.003,0.988,18.973 52 | 2016-02-15 16:12:32,5,553,0,18,24.532,276.5,6900.637,1908026,0,0.022,0.991,17.566 53 | 2016-02-15 16:12:34,5,514,0,19.272,29.487,257,7811.909,2007660.5,0,0,0.94,18.778 54 | 2016-02-15 16:12:36,5,462,0,21.548,38.516,231,7246.355,1673908,0,0.022,1.009,21.1 55 | 2016-02-15 16:12:38,5,561,0,17.613,25.006,280.5,6437.964,1805849,0,0.011,0.957,17.207 56 | 2016-02-15 16:12:40,5,566,0,16.696,12.932,283,7376.435,2087531,0,0.016,1.027,16.228 57 | 2016-02-15 16:12:42,5,591,0,17.504,23.297,295.5,6957.479,2055935,0,0.019,0.983,17.068 58 | 2016-02-15 16:12:44,5,529,0,18.864,27.245,264.5,7095.391,1876731,0,0.004,0.992,18.397 59 | 2016-02-15 16:12:46,5,501,0,19.894,28.372,250.5,6550.908,1641002.5,0,0.006,1,19.499 60 | 2016-02-15 16:12:48,5,402,0,18.498,30.293,201,6288.316,1263951.5,0,0.005,0.98,18.085 61 | 2016-02-15 16:12:50,5,612,0,20.319,36.209,306,7056.505,2159290.5,0,0.007,0.972,19.869 62 | 2016-02-15 16:12:52,5,532,0,18.613,29.152,266,6815.912,1813032.5,0,0.032,1.024,18.201 63 | 2016-02-15 16:12:54,5,512,0,19.34,31.084,256,6942.234,1777212,0,0.023,1.012,18.93 64 | 2016-02-15 16:12:56,5,478,0,20.816,25.497,239,7300.722,1744872.5,0,0.021,0.998,20.345 65 | 2016-02-15 16:12:58,5,556,0,17.82,23.762,278,6844.079,1902654,0,0.016,0.989,17.406 66 | 2016-02-15 16:13:00,5,484,0,20.452,30.197,242,7410.06,1793234.5,0,0.004,0.973,19.981 67 | 2016-02-15 16:13:02,5,493,0,20.13,27.057,246.5,7442.698,1834625,0,0.01,0.953,19.667 68 | 2016-02-15 16:13:04,5,501,0,19.864,29.705,250.5,7111.984,1781552,0,0.006,0.96,19.417 69 | 2016-02-15 16:13:06,5,557,0,17.743,27.05,278.5,6563.732,1827999.5,0,0.007,0.95,17.35 70 | 2016-02-15 16:13:08,5,509,0,19.363,25.51,254.5,7769.269,1977279,0,0,0.965,18.886 71 | 2016-02-15 16:13:10,5,518,0,19.438,29.616,259,6825.245,1767738.5,0,0.031,1.01,19.008 72 | 2016-02-15 16:13:12,5,614,0,15.66,10.567,307,7138.901,2191642.5,0,0.003,0.98,15.204 73 | 2016-02-15 16:13:14,5,515,0,19.744,28.684,257.5,7479.122,1925874,0,0.017,0.963,19.285 74 | 2016-02-15 16:13:16,5,453,0,21.819,33.987,226.5,7031.684,1592676.5,0,0.038,0.993,21.404 75 | 2016-02-15 16:13:18,5,527,0,18.922,27.812,263.5,7408.803,1952219.5,0,0.019,0.989,18.461 76 | 2016-02-15 16:13:20,5,463,0,21.309,29.742,231.5,7462.762,1727629.5,0,0.009,0.994,20.853 77 | 2016-02-15 16:13:22,5,332,0,22.611,40.037,166,6417.292,1065270.5,0,0.024,0.982,22.226 78 | 2016-02-15 16:13:24,5,549,0,16.519,21.721,274.5,6861.832,1883573,0,0.035,0.995,16.117 79 | 2016-02-15 16:13:26,5,463,0,21.13,33.81,231.5,6922.566,1602574,0,0.004,0.974,20.67 80 | 2016-02-15 16:13:28,5,578,0,18.448,24.357,289,7446.635,2152077.5,0,0.012,0.969,17.984 81 | 2016-02-15 16:13:30,5,485,0,20.963,36.201,242.5,6726.907,1631275,0,0.019,1.019,20.526 82 | 2016-02-15 16:13:32,5,462,0,21.571,29.173,231,7456.976,1722561.5,0,0.004,0.983,21.102 83 | 2016-02-15 16:13:34,5,643,0,19.275,27.084,321.5,7384.613,2374153,0,0.005,0.955,18.792 84 | 2016-02-15 16:13:36,5,307,0,24.104,39.7,153.5,7714.208,1184131,0,0.02,0.977,23.612 85 | 2016-02-15 16:13:38,5,670,0,18.575,24.496,335,7067.991,2367777,0,0.016,0.994,18.139 86 | 2016-02-15 16:13:40,5,428,0,17.516,16.016,214,6931.369,1483313,0,0.026,1.009,17.086 87 | 2016-02-15 16:13:42,5,548,0,18.082,29.174,274,6672.157,1828171,0,0.004,0.929,17.646 88 | 2016-02-15 16:13:44,5,555,0,17.923,26.072,277.5,6671.831,1851433,0,0.023,0.978,17.515 89 | 2016-02-15 16:13:46,5,468,0,21.259,35.829,234,6736.365,1576309.5,0,0.019,0.996,20.833 90 | 2016-02-15 16:13:48,5,497,0,19.891,31.809,248.5,6817.632,1694181.5,0,0.014,1,19.477 91 | 2016-02-15 16:13:50,5,523,0,18.864,28.771,261.5,7047.811,1843002.5,0,0.021,0.989,18.409 92 | 2016-02-15 16:13:52,5,585,0,21.439,37.503,292.5,6818.66,1994458,0,0.026,1.009,21.027 93 | 2016-02-15 16:13:54,5,517,0,16.484,24.645,258.5,6885.439,1779886,0,0.004,0.956,16.015 94 | 2016-02-15 16:13:56,5,493,0,21.14,35.636,246.5,6872.517,1694075.5,0,0.006,1.022,20.712 95 | 2016-02-15 16:13:58,5,566,0,18.973,46.207,283,7023.615,1987683,0,0.018,2.767,18.544 96 | 2016-02-15 16:14:00,5,519,0,19.143,24.639,259.5,6805.877,1766125,0,0.021,1.008,18.696 97 | 2016-02-15 16:14:02,5,527,0,18.658,24.237,263.5,7168.317,1888851.5,0,0.008,0.968,18.231 98 | 2016-02-15 16:14:04,5,564,0,17.848,26.271,282,7017.083,1978817.5,0,0.002,0.973,17.401 99 | 2016-02-15 16:14:06,5,490,0,20.153,27.124,245,7874.906,1929352,0,0.018,0.996,19.663 100 | 2016-02-15 16:14:08,5,555,0,17.766,43.818,277.5,7258.519,2014239,0,0.018,2.798,17.305 101 | 2016-02-15 16:14:10,5,310,0,23.765,45.257,155,7475.316,1158674,0,0.01,0.945,23.316 102 | 2016-02-15 16:14:12,5,525,0,19.278,24.447,262.5,6655.156,1746978.5,0,0.006,0.989,18.853 103 | 2016-02-15 16:14:14,5,534,0,18.655,26.934,267,6768.629,1807224,0,0.007,0.933,18.221 104 | 2016-02-15 16:14:16,5,535,0,18.546,26.185,267.5,7022.693,1878570.5,0,0.004,0.966,18.095 105 | 2016-02-15 16:14:18,5,630,0,15.662,14.111,315,7042.998,2218544.5,0,0.013,0.975,15.237 106 | 2016-02-15 16:14:20,5,521,0,19.115,25.999,260.5,7693.186,2004075,0,0.004,0.933,18.672 107 | 2016-02-15 16:14:22,5,669,0,18.311,24.908,334.5,6793.824,2272534,0,0.022,0.969,17.892 108 | 2016-02-15 16:14:24,5,546,0,18.352,24.329,273,7289.61,1990063.5,0,0.005,0.962,17.916 109 | 2016-02-15 16:14:26,5,334,0,22.419,38.634,167,6828.829,1140414.5,0,0.009,0.97,21.964 110 | 2016-02-15 16:14:28,5,561,0,16.173,12.168,280.5,7431.33,2084488,0,0.005,0.955,15.702 111 | 2016-02-15 16:14:30,5,556,0,19.016,25.382,278,6794.099,1888759.5,0,0.018,0.986,18.597 112 | 2016-02-15 16:14:32,5,412,0,24.617,40.373,206,6778.857,1396444.5,0,0.005,0.951,24.204 113 | 2016-02-15 16:14:34,5,378,0,25.947,66.372,189,7088.455,1339718,0,0.024,1.011,25.466 114 | 2016-02-15 16:14:36,5,443,0,22.765,39.687,221.5,6431.44,1424564,0,0.018,1.002,22.357 115 | 2016-02-15 16:14:38,5,529,0,18.813,27.353,264.5,7050.917,1864967.5,0,0.008,0.94,18.372 116 | 2016-02-15 16:14:40,5,398,0,24.862,47.332,199,8354.264,1662498.5,0,0.005,0.965,24.367 117 | 2016-02-15 16:14:42,5,483,0,20.455,32.026,241.5,6716.354,1621999.5,0,0.002,1.002,20.027 118 | 2016-02-15 16:14:44,5,482,0,20.728,33.136,241,7585.151,1828021.5,0,0.004,0.963,20.28 119 | 2016-02-15 16:14:46,5,433,0,23.03,33.078,216.5,6875.229,1488487,0,0.023,0.986,22.612 120 | 2016-02-15 16:14:48,5,609,0,15.361,11.629,304.5,6928.53,2109737.5,0,0.01,0.99,14.921 121 | 2016-02-15 16:14:50,5,513,0,20.423,28.077,256.5,7316.635,1876717,0,0.016,1.01,19.984 122 | 2016-02-15 16:14:52,5,512,0,19.318,28.552,256,6794.93,1739502,0,0.016,0.977,18.906 123 | 2016-02-15 16:14:54,5,507,0,19.623,29.302,253.5,7476.974,1895413,0,0.02,1.01,18.761 124 | 2016-02-15 16:14:56,5,514,0,19.305,28.962,257,7374.274,1895188.5,0,0.008,0.975,18.846 125 | 2016-02-15 16:14:58,5,544,0,17.327,19.387,272,7587.763,2063871.5,0,0.011,0.985,16.853 126 | 2016-02-15 16:15:00,5,545,0,19.16,23.151,272.5,6794.782,1851578,0,0.006,0.963,18.745 127 | 2016-02-15 16:15:02,5,478,0,20.778,30.468,239,7374.297,1762457,0,0.017,0.998,20.328 128 | 2016-02-15 16:15:04,5,470,0,21.145,40.815,235,6991.706,1643051,0,0.019,0.983,20.719 129 | 2016-02-15 16:15:06,5,514,0,19.356,25.889,257,7429.776,1909452.5,0,0.002,0.957,18.866 130 | 2016-02-15 16:15:08,5,529,0,18.711,24.722,264.5,7314.357,1934647.5,0,0.011,1.002,18.257 131 | 2016-02-15 16:15:10,5,511,0,18.765,29.178,255.5,7405.865,1892198.5,0,0.004,0.986,18.319 132 | 2016-02-15 16:15:12,5,449,0,22.886,33.514,224.5,7346.176,1649216.5,0,0,0.982,22.412 133 | 2016-02-15 16:15:14,5,555,0,16.267,11.922,277.5,7393.079,2051579.5,0,0.022,0.969,15.809 134 | 2016-02-15 16:15:16,5,594,0,18.177,23.324,297,7210.906,2141639,0,0.015,1.005,17.34 135 | 2016-02-15 16:15:18,5,487,0,20.255,33.133,243.5,7135.641,1737528.5,0,0.006,0.969,19.807 136 | 2016-02-15 16:15:20,5,501,0,19.719,33.184,250.5,6694.9,1677072.5,0,0.02,0.974,19.325 137 | 2016-02-15 16:15:22,5,464,0,21.634,35.19,232,7224.36,1676051.5,0,0.002,0.953,21.192 138 | 2016-02-15 16:15:24,5,513,0,19.335,26.263,256.5,7530.926,1931682.5,0,0.021,0.967,18.877 139 | 2016-02-15 16:15:26,5,534,0,18.62,23.931,267,7489.994,1999828.5,0,0.002,0.964,18.157 140 | 2016-02-15 16:15:28,5,540,0,16.817,13.811,270,7152.474,1931168,0,0.011,0.963,16.348 141 | 2016-02-15 16:15:30,5,535,0,19.92,30.61,267.5,7187.413,1922633,0,0.007,0.972,19.08 142 | 2016-02-15 16:15:32,5,473,0,21.277,37.356,236.5,6624.816,1566769,0,0.021,0.975,20.886 143 | 2016-02-15 16:15:34,5,548,0,18.12,24.513,274,6941.575,1901991.5,0,0.024,0.973,17.699 144 | 2016-02-15 16:15:36,5,512,0,19.316,28.055,256,7047.266,1804100,0,0.016,0.996,18.875 145 | 2016-02-15 16:15:38,5,567,0,15.61,11.25,283.5,7000.912,1984758.5,0,0.019,0.951,15.196 146 | 2016-02-15 16:15:40,5,561,0,19.708,27.652,280.5,7232.307,2028662,0,0.002,0.941,19.255 147 | 2016-02-15 16:15:42,5,558,0,17.756,23.616,279,6667.832,1860325,0,0.005,0.97,17.341 148 | 2016-02-15 16:15:44,5,543,0,18.217,23.268,271.5,7306.343,1983672,0,0.017,0.985,17.753 149 | 2016-02-15 16:15:46,5,472,0,21.076,40.176,236,7394.591,1745123.5,0,0.036,0.992,20.612 150 | 2016-02-15 16:15:48,5,497,0,20.012,38.269,248.5,6964.596,1730702,0,0.022,0.968,19.596 151 | 2016-02-15 16:15:50,5,492,0,20.069,35.567,246,7520.701,1850092.5,0,0.006,0.949,19.612 152 | 2016-02-15 16:15:52,5,594,0,16.02,12.834,297,6765.694,2009411,0,0.002,0.944,15.609 153 | 2016-02-15 16:15:54,5,567,0,18.169,24.518,283.5,7147.515,2026320.5,0,0.004,0.949,17.734 154 | 2016-02-15 16:15:56,5,470,0,21.16,36.494,235,6468.796,1520167,0,0.021,1.011,20.768 155 | 2016-02-15 16:15:58,5,505,0,19.741,32.708,252.5,6894.877,1740956.5,0,0.006,0.972,19.305 156 | 2016-02-15 16:16:00,5,479,0,20.739,34.591,239.5,7401.113,1772566.5,0,0.019,1.008,20.305 157 | 2016-02-15 16:16:02,5,464,0,21.379,32.475,232,7085.14,1643752.5,0,0.022,0.987,20.955 158 | 2016-02-15 16:16:04,5,702,0,17.709,23.596,351,6857.054,2406826,0,0.007,0.962,17.312 159 | 2016-02-15 16:16:06,5,593,0,15.347,11.175,296.5,6864.796,2035412,0,0.005,0.978,14.933 160 | 2016-02-15 16:16:08,5,542,0,19.708,27.74,271,6927.991,1877485.5,0,0.017,0.967,19.286 161 | 2016-02-15 16:16:10,5,521,0,19.125,33.25,260.5,7089.138,1846720.5,0,0.002,0.948,18.714 162 | 2016-02-15 16:16:12,5,508,0,19.522,31.489,254,7581.291,1925648,0,0.01,0.994,19.022 163 | 2016-02-15 16:16:14,5,568,0,17.465,26.355,284,6505.479,1847556,0,0.018,0.975,17.069 164 | 2016-02-15 16:16:16,5,551,0,17.913,23.943,275.5,6668.105,1837063,0,0.015,0.984,17.486 165 | 2016-02-15 16:16:18,5,546,0,18.139,24.28,273,7155.835,1953543,0,0.037,1.004,17.672 166 | 2016-02-15 16:16:20,5,575,0,17.383,15.585,287.5,7248.831,2084039,0,0.002,0.944,16.918 167 | 2016-02-15 16:16:22,5,573,0,17.344,24.848,286.5,6638.305,1901874.5,0,0.016,0.976,16.934 168 | 2016-02-15 16:16:24,5,495,0,19.879,30.47,247.5,6577.008,1627809.5,0,0.018,1.002,19.473 169 | 2016-02-15 16:16:26,5,529,0,18.79,27.141,264.5,7104.845,1879231.5,0,0.002,0.972,18.338 170 | 2016-02-15 16:16:28,5,532,0,18.727,27.288,266,7215.009,1919192.5,0,0.015,0.976,18.273 171 | 2016-02-15 16:16:30,5,532,0,17.662,21.756,266,7294.056,1940219,0,0.017,0.976,17.212 172 | 2016-02-15 16:16:32,5,622,0,16.661,17.426,311,7006.114,2178901.5,0,0.011,0.974,16.217 173 | 2016-02-15 16:16:34,5,527,0,18.989,31.929,263.5,7016.964,1848970,0,0.017,0.97,18.569 174 | 2016-02-15 16:16:36,5,541,0,18.294,25.415,270.5,6798.109,1838888.5,0,0.007,0.946,17.869 175 | 2016-02-15 16:16:38,5,535,0,18.583,29.375,267.5,6878.505,1840000,0,0.021,0.987,18.153 176 | 2016-02-15 16:16:40,5,409,0,24.205,39.263,204.5,7025.017,1436616,0,0.022,1.002,23.76 177 | 2016-02-15 16:16:42,5,515,0,18.555,28.963,257.5,7560.621,1946860,0,0.016,0.984,18.118 178 | 2016-02-15 16:16:44,5,578,0,17.766,19,289,7419.119,2144125.5,0,0.003,0.972,17.329 179 | 2016-02-15 16:16:46,5,403,0,24.767,45.97,201.5,6712.424,1352553.5,0,0.017,1.03,24.37 180 | 2016-02-15 16:16:48,5,511,0,19.382,28.337,255.5,7182.395,1835102,0,0,0.963,18.9 181 | 2016-02-15 16:16:50,5,534,0,18.547,28.894,267,6715.206,1792960,0,0.021,1.006,18.137 182 | 2016-02-15 16:16:52,5,490,0,20.339,30.925,245,6643.58,1627677,0,0.018,0.957,19.955 183 | 2016-02-15 16:16:54,5,582,0,17.077,25.201,291,6744.089,1962530,0,0.003,0.952,16.644 184 | 2016-02-15 16:16:56,5,610,0,16.177,14.056,305,7013.482,2139112,0,0.005,0.979,15.731 185 | 2016-02-15 16:16:58,5,532,0,18.712,26.201,266,6538.239,1739171.5,0,0.011,0.972,18.288 186 | 2016-02-15 16:17:00,5,505,0,19.533,27.753,252.5,7253.79,1831582,0,0.032,0.956,19.097 187 | 2016-02-15 16:17:02,5,511,0,19.47,27.131,255.5,7080.526,1809074.5,0,0.02,0.986,19.031 188 | 2016-02-15 16:17:04,5,548,0,18.146,25.43,274,6790.036,1860470,0,0.005,0.934,17.706 189 | 2016-02-15 16:17:06,5,415,0,21.945,29.501,207.5,7001.058,1452719.5,0,0.002,0.986,21.489 190 | 2016-02-15 16:17:08,5,512,0,20.947,50.613,256,7217.783,1847752.5,0,0.02,2.916,20.525 191 | 2016-02-15 16:17:10,5,536,0,18.528,24.207,268,7083.256,1898312.5,0,0.021,0.97,18.09 192 | 2016-02-15 16:17:12,5,494,0,20.057,29.527,247,7291.83,1801082,0,0.022,1.071,19.569 193 | 2016-02-15 16:17:14,5,372,0,20.046,28.137,186,6906.196,1284552.5,0,0.008,1.102,19.581 194 | 2016-02-15 16:17:16,5,533,0,18.531,27.172,266.5,6554.523,1746780.5,0,0.032,1.011,18.128 195 | 2016-02-15 16:17:18,5,683,0,18.211,23.642,341.5,7375.561,2518754,0,0.015,0.99,17.783 196 | 2016-02-15 16:17:20,5,616,0,16.026,12.791,308,6740.076,2075943.5,0,0.003,0.966,15.558 197 | 2016-02-15 16:17:22,5,550,0,18.053,24.669,275,6937.987,1907946.5,0,0.004,0.978,17.629 198 | 2016-02-15 16:17:24,5,545,0,18.158,25.881,272.5,6902.481,1880926,0,0.013,0.996,17.719 199 | 2016-02-15 16:17:26,5,484,0,20.51,32.354,242,7226.289,1748762,0,0.021,0.957,20.041 200 | 2016-02-15 16:17:28,5,445,0,22.272,43.203,222.5,6827.209,1519054,0,0.016,0.993,21.876 201 | 2016-02-15 16:17:30,5,504,0,19.851,29.908,252,6786.95,1710311.5,0,0.014,0.982,19.446 202 | 2016-02-15 16:17:32,5,544,0,18.164,24.012,272,7220.675,1964023.5,0,0.026,0.982,17.728 203 | 2016-02-15 16:17:34,5,651,0,14.903,9.793,325.5,6891.054,2243038,0,0.023,0.998,14.461 204 | 2016-02-15 16:17:36,5,509,0,19.845,27.145,254.5,7098.314,1806521,0,0.022,0.965,19.397 205 | 2016-02-15 16:17:38,5,538,0,18.593,25.555,269,6962.039,1872788.5,0,0.004,0.965,18.132 206 | 2016-02-15 16:17:40,5,487,0,20.458,27.5,243.5,6963.271,1695556.5,0,0.012,0.979,20.027 207 | 2016-02-15 16:17:42,5,574,0,17.232,23.447,287,6887.045,1976582,0,0.002,0.962,16.829 208 | 2016-02-15 16:17:44,5,534,0,17.875,27.327,267,6515.637,1739675,0,0.03,0.994,17.367 209 | 2016-02-15 16:17:46,5,599,0,17.194,17.628,299.5,6554.192,1962980.5,0,0.003,1,16.785 210 | 2016-02-15 16:17:48,5,475,0,20.846,35.887,237.5,6853.259,1627649,0,0.004,0.962,20.394 211 | 2016-02-15 16:17:50,5,533,0,18.587,25.139,266.5,6841.058,1823142,0,0.017,0.979,18.176 212 | 2016-02-15 16:17:52,5,508,0,19.663,26.589,254,7447.514,1891668.5,0,0.022,1.01,19.22 213 | 2016-02-15 16:17:54,5,527,0,18.455,30.376,263.5,7547.247,1988699.5,0,0.023,1.002,17.987 214 | 2016-02-15 16:17:56,5,581,0,17.394,15.28,290.5,7141.222,2074525,0,0.015,0.986,16.954 215 | 2016-02-15 16:17:58,5,525,0,18.878,31.403,262.5,7107.358,1865681.5,0,0.021,0.994,18.419 216 | 2016-02-15 16:18:00,5,504,0,19.712,25.9,252,7198.137,1813930.5,0,0.03,1.022,19.288 217 | 2016-02-15 16:18:02,5,533,0,18.645,25.372,266.5,7151.278,1905815.5,0,0.019,0.989,18.195 218 | 2016-02-15 16:18:04,5,508,0,19.514,32.803,254,6999.868,1777966.5,0,0.006,0.978,19.075 219 | 2016-02-15 16:18:06,5,504,0,19.657,28.789,252,7164.954,1805568.5,0,0.004,0.994,19.171 220 | 2016-02-15 16:18:08,5,538,0,16.894,21.342,269,7063.368,1900046,0,0.007,0.976,16.437 221 | 2016-02-15 16:18:10,5,559,0,19.086,26.675,279.5,6888.585,1925359.5,0,0.018,0.964,18.66 222 | 2016-02-15 16:18:12,5,518,0,19.234,27.733,259,6979.384,1807660.5,0,0.019,0.986,18.849 223 | 2016-02-15 16:18:14,5,534,0,18.629,26.27,267,6977.564,1863009.5,0,0,0.983,18.159 224 | 2016-02-15 16:18:16,5,541,0,18.213,25.038,270.5,7274.362,1967715,0,0.004,0.952,17.758 225 | 2016-02-15 16:18:18,5,547,0,17.388,22.971,273.5,6925.093,1894013,0,0.016,0.963,16.98 226 | 2016-02-15 16:18:20,5,587,0,17.284,19.738,293.5,6928.835,2033613,0,0.017,0.99,16.869 227 | 2016-02-15 16:18:22,5,456,0,22.388,35.633,228,7046.357,1606569.5,0,0.011,0.998,21.95 228 | 2016-02-15 16:18:24,5,528,0,18.744,26.981,264,7442.536,1964829.5,0,0,0.955,18.294 229 | 2016-02-15 16:18:26,5,493,0,20.185,28.692,246.5,7233.185,1782980,0,0.02,0.996,19.7 230 | 2016-02-15 16:18:28,5,513,0,19.275,28.103,256.5,7635.595,1958530,0,0.018,1.016,18.774 231 | 2016-02-15 16:18:30,5,457,0,21.834,31.311,228.5,7725.433,1765261.5,0,0.018,1.018,21.383 232 | 2016-02-15 16:18:32,5,213,0,46.934,105.178,106.5,7635.272,813156.5,0,0.019,0.986,46.46 233 | 2016-02-15 16:18:34,5,501,0,19.79,35.005,250.5,7128.675,1785733,0,0,0.954,19.337 234 | 2016-02-15 16:18:36,5,584,0,15.943,13.703,292,7258.656,2119527.5,0,0.007,0.985,15.515 235 | 2016-02-15 16:18:38,5,553,0,19.007,30.485,276.5,7280.13,2012956,0,0.025,1.025,17.528 236 | 2016-02-15 16:18:40,5,412,0,24.148,41.098,206,7473.274,1539494.5,0,0.005,1.002,23.663 237 | 2016-02-15 16:18:42,5,498,0,20.046,30.083,249,6955.819,1731999,0,0.006,1.02,19.616 238 | 2016-02-15 16:18:44,5,464,0,21.362,34.068,232,6652.819,1543454,0,0.004,0.97,20.905 239 | 2016-02-15 16:18:46,5,486,0,20.42,28.928,243,6827.2,1659009.5,0,0.016,0.981,20.006 240 | 2016-02-15 16:18:48,5,594,0,15.862,11.515,297,7292.746,2165945.5,0,0.007,0.97,15.402 241 | 2016-02-15 16:18:50,5,534,0,19.442,23.504,267,6927.363,1849606,0,0.004,0.97,19.002 242 | 2016-02-15 16:18:52,5,510,0,19.522,31.974,255,7305.192,1862824,0,0.016,0.969,19.084 243 | 2016-02-15 16:18:54,5,483,0,20.511,30.431,241.5,7371.489,1780214.5,0,0.006,0.992,20.064 244 | 2016-02-15 16:18:56,5,465,0,21.404,33.164,232.5,7049.923,1639107,0,0.017,0.991,20.94 245 | 2016-02-15 16:18:58,5,519,0,19.135,31.572,259.5,7643.493,1983486.5,0,0.002,0.971,18.686 246 | 2016-02-15 16:19:00,5,537,0,18.449,24.978,268.5,6785.764,1821977.5,0,0.006,0.98,17.991 247 | 2016-02-15 16:19:02,5,551,0,18.064,26.735,275.5,6917.904,1905882.5,0,0.002,0.94,17.632 248 | 2016-02-15 16:19:04,5,549,0,17.956,22.985,274.5,7320.543,2009489,0,0.004,1.022,17.468 249 | 2016-02-15 16:19:06,5,455,0,21.945,34.138,227.5,7233.426,1645604.5,0,0.024,1.011,21.508 250 | 2016-02-15 16:19:08,5,518,0,19.139,36.988,259,6133.506,1588578,0,0.015,1.037,18.792 251 | 2016-02-15 16:19:10,5,532,0,18.414,24.919,266,7071.397,1880991.5,0,0.015,0.977,17.97 252 | 2016-02-15 16:19:12,5,535,0,18.774,27.439,267.5,7485.441,2002355.5,0,0.007,0.959,18.331 253 | 2016-02-15 16:19:14,5,600,0,15.417,9.716,300,6999.285,2099785.5,0,0.01,0.97,14.978 254 | 2016-02-15 16:19:16,5,597,0,17.752,24.718,298.5,6697.08,1999078.5,0,0.018,0.953,17.347 255 | 2016-02-15 16:19:18,5,523,0,18.939,29.716,261.5,7368.665,1926906,0,0.017,0.967,18.482 256 | 2016-02-15 16:19:20,5,501,0,19.675,28.022,250.5,7410.273,1856273.5,0,0.004,0.986,19.214 257 | 2016-02-15 16:19:22,5,527,0,19.019,26.03,263.5,7036.097,1854011.5,0,0.017,0.973,18.583 258 | 2016-02-15 16:19:24,5,494,0,19.968,39.557,247,7115.099,1757429.5,0,0.022,0.966,19.547 259 | 2016-02-15 16:19:26,5,613,0,16.181,11.741,306.5,6906.935,2116975.5,0,0.008,0.956,15.757 260 | 2016-02-15 16:19:28,5,464,0,21.06,31.368,232,7249.8,1681953.5,0,0.019,1.011,20.147 261 | 2016-02-15 16:19:30,5,527,0,19.055,26.069,263.5,6649.08,1752032.5,0,0.009,0.962,18.617 262 | 2016-02-15 16:19:32,5,562,0,17.822,26.414,281,6541.69,1838215,0,0.005,0.966,17.413 263 | 2016-02-15 16:19:34,5,504,0,19.651,33.845,252,7431.218,1872667,0,0.016,0.94,19.234 264 | 2016-02-15 16:19:36,5,554,0,17.81,23.409,277,6824.502,1890387,0,0.032,1.023,17.386 265 | 2016-02-15 16:19:38,5,608,0,16.095,13.994,304,7074.941,2150782,0,0.015,0.947,15.686 266 | 2016-02-15 16:19:40,5,516,0,19.653,27.863,258,6801.132,1754692,0,0.008,0.955,19.242 267 | 2016-02-15 16:19:42,5,407,0,24.435,75.975,203.5,6809.722,1385778.5,0,0.02,5.899,24.027 268 | 2016-02-15 16:19:44,5,541,0,18.294,26.553,270.5,6739.165,1822944,0,0.018,0.987,17.854 269 | 2016-02-15 16:19:46,5,497,0,19.966,33.1,248.5,6648.73,1652209.5,0,0.006,0.964,19.539 270 | 2016-02-15 16:19:48,5,515,0,19.32,34.627,257.5,6602.369,1700110,0,0.016,1.002,18.918 271 | 2016-02-15 16:19:50,5,566,0,15.991,14.047,283,6678.182,1889925.5,0,0.028,1.032,15.58 272 | 2016-02-15 16:19:52,5,535,0,20.254,29.615,267.5,7276.746,1946529.5,0,0.004,0.998,19.774 273 | 2016-02-15 16:19:54,5,651,0,15.111,10.358,325.5,6833.127,2224183,0,0.026,0.971,14.697 274 | 2016-02-15 16:19:56,5,495,0,20.19,32.629,247.5,7121.202,1762497.5,0,0.004,0.956,19.721 275 | 2016-02-15 16:19:58,5,534,0,18.592,23.689,267,7420.76,1981343,0,0.017,0.996,18.152 276 | 2016-02-15 16:20:00,5,540,0,18.337,26.375,270,6600.8,1782216,0,0.015,0.95,17.943 277 | 2016-02-15 16:20:02,5,511,0,19.45,27.92,255.5,7072.344,1806984,0,0.022,1.012,19.006 278 | 2016-02-15 16:20:04,5,549,0,16.53,14.82,274.5,7194.967,1975018.5,0,0.022,1.042,16.064 279 | 2016-02-15 16:20:06,5,597,0,18.022,23.914,298.5,7338.065,2190412.5,0,0,0.951,17.6 280 | 2016-02-15 16:20:08,5,488,0,20.184,34.616,244,7088.703,1729643.5,0,0.018,0.98,19.754 281 | 2016-02-15 16:20:10,5,518,0,19.299,28.526,259,7233.546,1873488.5,0,0.008,0.969,18.84 282 | 2016-02-15 16:20:12,5,541,0,18.322,24.012,270.5,7159.505,1936646,0,0.028,0.98,17.876 283 | 2016-02-15 16:20:14,5,455,0,21.648,32.512,227.5,7755.198,1764307.5,0,0.02,0.978,21.154 284 | 2016-02-15 16:20:16,5,544,0,17.893,23.58,272,6793.311,1847780.5,0,0.015,0.954,17.445 285 | 2016-02-15 16:20:18,5,612,0,16.533,15.778,306,7147.186,2187039,0,0.016,0.98,16.085 286 | 2016-02-15 16:20:20,5,501,0,19.906,27.669,250.5,6341.467,1588537.5,0,0.002,0.93,19.509 287 | 2016-02-15 16:20:22,5,529,0,18.467,26.279,264.5,7439.724,1967807,0,0.017,0.996,18.004 288 | 2016-02-15 16:20:24,5,491,0,20.554,28.345,245.5,7674.485,1884086,0,0.012,0.957,20.063 289 | 2016-02-15 16:20:26,5,432,0,22.947,38.246,216,7106.59,1535023.5,0,0,0.933,22.519 290 | 2016-02-15 16:20:28,5,496,0,20.095,29.831,248,7101.992,1761294,0,0.02,0.992,19.671 291 | 2016-02-15 16:20:30,5,612,0,16.212,11.89,306,7389.77,2261269.5,0,0.023,0.967,15.784 292 | 2016-02-15 16:20:32,5,486,0,20.21,29.537,243,7022.358,1706433,0,0.008,0.973,19.737 293 | 2016-02-15 16:20:34,5,536,0,18.651,29.676,268,7147.491,1915527.5,0,0.015,0.993,18.213 294 | 2016-02-15 16:20:36,5,477,0,20.774,31.337,238.5,7218.99,1721729,0,0,0.964,20.346 295 | 2016-02-15 16:20:38,5,527,0,18.723,30.673,263.5,6994.719,1843108.5,0,0.027,0.97,18.273 296 | 2016-02-15 16:20:40,5,524,0,18.676,28.667,262,6909.464,1810279.5,0,0.019,0.973,18.275 297 | 2016-02-15 16:20:42,5,518,0,17.616,13.254,259,8009.479,2074455,0,0.017,0.981,17.114 298 | 2016-02-15 16:20:44,5,567,0,18.102,25.652,283.5,6355.508,1801786.5,0,0.018,0.977,17.72 299 | -------------------------------------------------------------------------------- /target/classes/com/weibo/ngrinder/NgrinderOutput.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neven7/ngrinder-csv-analysis/507bc04df3f1ddf04f8ab0856bc11aec11b06845/target/classes/com/weibo/ngrinder/NgrinderOutput.class -------------------------------------------------------------------------------- /target/classes/com/weibo/ngrinder/ParseCsv.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neven7/ngrinder-csv-analysis/507bc04df3f1ddf04f8ab0856bc11aec11b06845/target/classes/com/weibo/ngrinder/ParseCsv.class -------------------------------------------------------------------------------- /target/classes/output.csv: -------------------------------------------------------------------------------- 1 | DateTime,vuser,Tests,Errors,Mean_Test_Time_(ms),Test_Time_Standard_Deviation_(ms),TPS,Mean_response_length,Response_bytes_per_second,Response_errors,Mean_time_to_resolve_host,Mean_time_to_establish_connection,Mean_time_to_first_byte 2 | 2016-02-15 16:10:52,2,176,0,23.312,31.182,88,7336.335,645597.5,0,0.307,1.403,22.409 3 | 2016-02-15 16:10:54,4,337,0,22.733,38.204,168.5,6335.273,1067493.5,0,0.142,1.19,22.045 4 | 2016-02-15 16:10:56,5,476,0,20.237,27.869,238,6978.468,1660875.5,0,0.107,1.162,19.666 5 | 2016-02-15 16:10:58,5,499,0,19.383,23.688,249.5,6766.864,1688332.5,0,0.072,1.14,18.754 6 | 2016-02-15 16:11:00,5,481,0,20.133,27.714,240.5,7121.05,1712612.5,0,0.044,1.048,19.605 7 | 2016-02-15 16:11:02,5,569,0,17.188,12.066,284.5,7488.376,2130443,0,0.035,1.046,16.64 8 | 2016-02-15 16:11:04,5,390,0,25.264,41.386,195,7390.533,1441154,0,0.023,1.036,24.708 9 | 2016-02-15 16:11:06,5,451,0,21.665,29.588,225.5,7029.186,1585081.5,0,0.029,1.064,21.166 10 | 2016-02-15 16:11:08,5,458,0,21.467,32.682,229,6719.055,1538663.5,0,0.037,1.066,20.996 11 | 2016-02-15 16:11:10,5,431,0,19.847,28.562,215.5,7465.698,1608858,0,0.03,1.058,19.304 12 | 2016-02-15 16:11:12,5,428,0,25.907,115.617,214,6937.306,1484583.5,0,0.044,1.044,25.439 13 | 2016-02-15 16:11:14,5,565,0,16.903,13.614,282.5,6725.6,1899982,0,0.019,1.035,16.407 14 | 2016-02-15 16:11:16,5,390,0,25.403,45.776,195,6549.115,1277077.5,0,0.018,1.018,24.936 15 | 2016-02-15 16:11:18,5,521,0,19.374,26.622,260.5,7332.393,1910088.5,0,0.021,1.058,18.896 16 | 2016-02-15 16:11:20,5,393,0,25.224,36.423,196.5,7084.628,1392129.5,0,0.013,1.056,24.735 17 | 2016-02-15 16:11:22,5,575,0,17.136,23.702,287.5,6437.191,1850692.5,0,0.037,1.045,16.303 18 | 2016-02-15 16:11:24,5,563,0,17.453,24.865,281.5,6695.575,1884804.5,0,0.02,1.034,17.007 19 | 2016-02-15 16:11:26,5,484,0,20.349,25.798,242,6967.826,1686214,0,0.014,1.041,19.855 20 | 2016-02-15 16:11:28,5,550,0,17.605,21.172,275,7627.636,2097600,0,0.013,1.033,17.058 21 | 2016-02-15 16:11:30,5,499,0,20.1,30.65,249.5,6923.261,1727353.5,0,0.012,1.056,19.631 22 | 2016-02-15 16:11:32,5,483,0,20.592,32.643,241.5,7268.975,1755457.5,0,0.01,1.029,20.081 23 | 2016-02-15 16:11:34,5,489,0,20.19,31.546,244.5,7374.397,1803040,0,0.035,1.055,19.687 24 | 2016-02-15 16:11:36,5,508,0,19.451,28.964,254,6780.081,1722140.5,0,0.061,1.057,19.041 25 | 2016-02-15 16:11:38,5,493,0,20.191,28.133,246.5,6882.661,1696576,0,0.065,1.043,19.744 26 | 2016-02-15 16:11:40,5,448,0,21.609,39.128,224,6631.801,1485523.5,0,0.074,1.062,21.147 27 | 2016-02-15 16:11:42,5,531,0,19.111,25.044,265.5,6999.394,1858339,0,0.049,1.019,18.667 28 | 2016-02-15 16:11:44,5,527,0,17.886,22.155,263.5,7317.96,1928282.5,0,0.047,1.013,17.414 29 | 2016-02-15 16:11:46,5,535,0,19.357,21.78,267.5,6911.297,1848772,0,0.041,1.017,18.933 30 | 2016-02-15 16:11:48,5,495,0,20.16,31.765,247.5,7243.257,1792706,0,0.04,1.034,19.685 31 | 2016-02-15 16:11:50,5,538,0,18.409,24.044,269,7047.825,1895865,0,0.067,1.045,17.987 32 | 2016-02-15 16:11:52,5,588,0,16.837,20.646,294,6838.65,2010563,0,0.056,1.051,16.42 33 | 2016-02-15 16:11:54,5,552,0,17.917,25.501,276,7056.054,1947471,0,0.047,1.011,17.475 34 | 2016-02-15 16:11:56,5,448,0,22.042,36.497,224,7023.386,1573238.5,0,0.027,1.002,21.583 35 | 2016-02-15 16:11:58,5,532,0,16.906,15.745,266,7142.585,1899927.5,0,0.051,1.021,16.489 36 | 2016-02-15 16:12:00,5,499,0,20.567,30.109,249.5,7135.184,1780228.5,0,0.016,0.96,20.106 37 | 2016-02-15 16:12:02,5,487,0,21.684,58.247,243.5,7264.918,1769007.5,0,0.004,3.014,21.209 38 | 2016-02-15 16:12:04,5,526,0,18.827,24.813,263,7641.289,2009659,0,0.021,0.994,18.352 39 | 2016-02-15 16:12:06,5,420,0,23.498,36.006,210,7264.205,1525483,0,0.012,0.99,23.014 40 | 2016-02-15 16:12:08,5,544,0,18.32,24.897,272,7016.939,1908607.5,0,0.004,1.006,17.846 41 | 2016-02-15 16:12:10,5,473,0,20.97,37.87,236.5,6756.186,1597838,0,0.017,0.994,19.888 42 | 2016-02-15 16:12:12,5,523,0,19.105,34.603,261.5,6860.033,1793898.5,0,0.017,1.013,18.66 43 | 2016-02-15 16:12:14,5,548,0,17.268,14.53,274,7676.673,2103408.5,0,0.015,0.998,16.797 44 | 2016-02-15 16:12:16,5,356,0,22.185,32.027,178,7098.61,1263552.5,0,0,1,21.742 45 | 2016-02-15 16:12:18,5,682,0,18.166,22.396,341,7426.925,2532581.5,0,0.023,0.979,17.718 46 | 2016-02-15 16:12:20,5,473,0,20.96,31.562,236.5,7098.651,1678831,0,0.008,0.992,20.535 47 | 2016-02-15 16:12:22,5,549,0,18.106,23.238,274.5,6482.709,1779503.5,0,0.002,0.976,17.705 48 | 2016-02-15 16:12:24,5,553,0,17.864,24.152,276.5,7082.676,1958360,0,0.025,0.984,17.43 49 | 2016-02-15 16:12:26,5,416,0,17.183,13.783,208,7198.361,1497259,0,0.043,1.019,16.745 50 | 2016-02-15 16:12:28,5,570,0,18.03,24.878,285,6946.654,1979796.5,0,0.016,1.023,17.582 51 | 2016-02-15 16:12:30,5,641,0,19.384,28.409,320.5,6907.315,2213794.5,0,0.003,0.988,18.973 52 | 2016-02-15 16:12:32,5,553,0,18,24.532,276.5,6900.637,1908026,0,0.022,0.991,17.566 53 | 2016-02-15 16:12:34,5,514,0,19.272,29.487,257,7811.909,2007660.5,0,0,0.94,18.778 54 | 2016-02-15 16:12:36,5,462,0,21.548,38.516,231,7246.355,1673908,0,0.022,1.009,21.1 55 | 2016-02-15 16:12:38,5,561,0,17.613,25.006,280.5,6437.964,1805849,0,0.011,0.957,17.207 56 | 2016-02-15 16:12:40,5,566,0,16.696,12.932,283,7376.435,2087531,0,0.016,1.027,16.228 57 | 2016-02-15 16:12:42,5,591,0,17.504,23.297,295.5,6957.479,2055935,0,0.019,0.983,17.068 58 | 2016-02-15 16:12:44,5,529,0,18.864,27.245,264.5,7095.391,1876731,0,0.004,0.992,18.397 59 | 2016-02-15 16:12:46,5,501,0,19.894,28.372,250.5,6550.908,1641002.5,0,0.006,1,19.499 60 | 2016-02-15 16:12:48,5,402,0,18.498,30.293,201,6288.316,1263951.5,0,0.005,0.98,18.085 61 | 2016-02-15 16:12:50,5,612,0,20.319,36.209,306,7056.505,2159290.5,0,0.007,0.972,19.869 62 | 2016-02-15 16:12:52,5,532,0,18.613,29.152,266,6815.912,1813032.5,0,0.032,1.024,18.201 63 | 2016-02-15 16:12:54,5,512,0,19.34,31.084,256,6942.234,1777212,0,0.023,1.012,18.93 64 | 2016-02-15 16:12:56,5,478,0,20.816,25.497,239,7300.722,1744872.5,0,0.021,0.998,20.345 65 | 2016-02-15 16:12:58,5,556,0,17.82,23.762,278,6844.079,1902654,0,0.016,0.989,17.406 66 | 2016-02-15 16:13:00,5,484,0,20.452,30.197,242,7410.06,1793234.5,0,0.004,0.973,19.981 67 | 2016-02-15 16:13:02,5,493,0,20.13,27.057,246.5,7442.698,1834625,0,0.01,0.953,19.667 68 | 2016-02-15 16:13:04,5,501,0,19.864,29.705,250.5,7111.984,1781552,0,0.006,0.96,19.417 69 | 2016-02-15 16:13:06,5,557,0,17.743,27.05,278.5,6563.732,1827999.5,0,0.007,0.95,17.35 70 | 2016-02-15 16:13:08,5,509,0,19.363,25.51,254.5,7769.269,1977279,0,0,0.965,18.886 71 | 2016-02-15 16:13:10,5,518,0,19.438,29.616,259,6825.245,1767738.5,0,0.031,1.01,19.008 72 | 2016-02-15 16:13:12,5,614,0,15.66,10.567,307,7138.901,2191642.5,0,0.003,0.98,15.204 73 | 2016-02-15 16:13:14,5,515,0,19.744,28.684,257.5,7479.122,1925874,0,0.017,0.963,19.285 74 | 2016-02-15 16:13:16,5,453,0,21.819,33.987,226.5,7031.684,1592676.5,0,0.038,0.993,21.404 75 | 2016-02-15 16:13:18,5,527,0,18.922,27.812,263.5,7408.803,1952219.5,0,0.019,0.989,18.461 76 | 2016-02-15 16:13:20,5,463,0,21.309,29.742,231.5,7462.762,1727629.5,0,0.009,0.994,20.853 77 | 2016-02-15 16:13:22,5,332,0,22.611,40.037,166,6417.292,1065270.5,0,0.024,0.982,22.226 78 | 2016-02-15 16:13:24,5,549,0,16.519,21.721,274.5,6861.832,1883573,0,0.035,0.995,16.117 79 | 2016-02-15 16:13:26,5,463,0,21.13,33.81,231.5,6922.566,1602574,0,0.004,0.974,20.67 80 | 2016-02-15 16:13:28,5,578,0,18.448,24.357,289,7446.635,2152077.5,0,0.012,0.969,17.984 81 | 2016-02-15 16:13:30,5,485,0,20.963,36.201,242.5,6726.907,1631275,0,0.019,1.019,20.526 82 | 2016-02-15 16:13:32,5,462,0,21.571,29.173,231,7456.976,1722561.5,0,0.004,0.983,21.102 83 | 2016-02-15 16:13:34,5,643,0,19.275,27.084,321.5,7384.613,2374153,0,0.005,0.955,18.792 84 | 2016-02-15 16:13:36,5,307,0,24.104,39.7,153.5,7714.208,1184131,0,0.02,0.977,23.612 85 | 2016-02-15 16:13:38,5,670,0,18.575,24.496,335,7067.991,2367777,0,0.016,0.994,18.139 86 | 2016-02-15 16:13:40,5,428,0,17.516,16.016,214,6931.369,1483313,0,0.026,1.009,17.086 87 | 2016-02-15 16:13:42,5,548,0,18.082,29.174,274,6672.157,1828171,0,0.004,0.929,17.646 88 | 2016-02-15 16:13:44,5,555,0,17.923,26.072,277.5,6671.831,1851433,0,0.023,0.978,17.515 89 | 2016-02-15 16:13:46,5,468,0,21.259,35.829,234,6736.365,1576309.5,0,0.019,0.996,20.833 90 | 2016-02-15 16:13:48,5,497,0,19.891,31.809,248.5,6817.632,1694181.5,0,0.014,1,19.477 91 | 2016-02-15 16:13:50,5,523,0,18.864,28.771,261.5,7047.811,1843002.5,0,0.021,0.989,18.409 92 | 2016-02-15 16:13:52,5,585,0,21.439,37.503,292.5,6818.66,1994458,0,0.026,1.009,21.027 93 | 2016-02-15 16:13:54,5,517,0,16.484,24.645,258.5,6885.439,1779886,0,0.004,0.956,16.015 94 | 2016-02-15 16:13:56,5,493,0,21.14,35.636,246.5,6872.517,1694075.5,0,0.006,1.022,20.712 95 | 2016-02-15 16:13:58,5,566,0,18.973,46.207,283,7023.615,1987683,0,0.018,2.767,18.544 96 | 2016-02-15 16:14:00,5,519,0,19.143,24.639,259.5,6805.877,1766125,0,0.021,1.008,18.696 97 | 2016-02-15 16:14:02,5,527,0,18.658,24.237,263.5,7168.317,1888851.5,0,0.008,0.968,18.231 98 | 2016-02-15 16:14:04,5,564,0,17.848,26.271,282,7017.083,1978817.5,0,0.002,0.973,17.401 99 | 2016-02-15 16:14:06,5,490,0,20.153,27.124,245,7874.906,1929352,0,0.018,0.996,19.663 100 | 2016-02-15 16:14:08,5,555,0,17.766,43.818,277.5,7258.519,2014239,0,0.018,2.798,17.305 101 | 2016-02-15 16:14:10,5,310,0,23.765,45.257,155,7475.316,1158674,0,0.01,0.945,23.316 102 | 2016-02-15 16:14:12,5,525,0,19.278,24.447,262.5,6655.156,1746978.5,0,0.006,0.989,18.853 103 | 2016-02-15 16:14:14,5,534,0,18.655,26.934,267,6768.629,1807224,0,0.007,0.933,18.221 104 | 2016-02-15 16:14:16,5,535,0,18.546,26.185,267.5,7022.693,1878570.5,0,0.004,0.966,18.095 105 | 2016-02-15 16:14:18,5,630,0,15.662,14.111,315,7042.998,2218544.5,0,0.013,0.975,15.237 106 | 2016-02-15 16:14:20,5,521,0,19.115,25.999,260.5,7693.186,2004075,0,0.004,0.933,18.672 107 | 2016-02-15 16:14:22,5,669,0,18.311,24.908,334.5,6793.824,2272534,0,0.022,0.969,17.892 108 | 2016-02-15 16:14:24,5,546,0,18.352,24.329,273,7289.61,1990063.5,0,0.005,0.962,17.916 109 | 2016-02-15 16:14:26,5,334,0,22.419,38.634,167,6828.829,1140414.5,0,0.009,0.97,21.964 110 | 2016-02-15 16:14:28,5,561,0,16.173,12.168,280.5,7431.33,2084488,0,0.005,0.955,15.702 111 | 2016-02-15 16:14:30,5,556,0,19.016,25.382,278,6794.099,1888759.5,0,0.018,0.986,18.597 112 | 2016-02-15 16:14:32,5,412,0,24.617,40.373,206,6778.857,1396444.5,0,0.005,0.951,24.204 113 | 2016-02-15 16:14:34,5,378,0,25.947,66.372,189,7088.455,1339718,0,0.024,1.011,25.466 114 | 2016-02-15 16:14:36,5,443,0,22.765,39.687,221.5,6431.44,1424564,0,0.018,1.002,22.357 115 | 2016-02-15 16:14:38,5,529,0,18.813,27.353,264.5,7050.917,1864967.5,0,0.008,0.94,18.372 116 | 2016-02-15 16:14:40,5,398,0,24.862,47.332,199,8354.264,1662498.5,0,0.005,0.965,24.367 117 | 2016-02-15 16:14:42,5,483,0,20.455,32.026,241.5,6716.354,1621999.5,0,0.002,1.002,20.027 118 | 2016-02-15 16:14:44,5,482,0,20.728,33.136,241,7585.151,1828021.5,0,0.004,0.963,20.28 119 | 2016-02-15 16:14:46,5,433,0,23.03,33.078,216.5,6875.229,1488487,0,0.023,0.986,22.612 120 | 2016-02-15 16:14:48,5,609,0,15.361,11.629,304.5,6928.53,2109737.5,0,0.01,0.99,14.921 121 | 2016-02-15 16:14:50,5,513,0,20.423,28.077,256.5,7316.635,1876717,0,0.016,1.01,19.984 122 | 2016-02-15 16:14:52,5,512,0,19.318,28.552,256,6794.93,1739502,0,0.016,0.977,18.906 123 | 2016-02-15 16:14:54,5,507,0,19.623,29.302,253.5,7476.974,1895413,0,0.02,1.01,18.761 124 | 2016-02-15 16:14:56,5,514,0,19.305,28.962,257,7374.274,1895188.5,0,0.008,0.975,18.846 125 | 2016-02-15 16:14:58,5,544,0,17.327,19.387,272,7587.763,2063871.5,0,0.011,0.985,16.853 126 | 2016-02-15 16:15:00,5,545,0,19.16,23.151,272.5,6794.782,1851578,0,0.006,0.963,18.745 127 | 2016-02-15 16:15:02,5,478,0,20.778,30.468,239,7374.297,1762457,0,0.017,0.998,20.328 128 | 2016-02-15 16:15:04,5,470,0,21.145,40.815,235,6991.706,1643051,0,0.019,0.983,20.719 129 | 2016-02-15 16:15:06,5,514,0,19.356,25.889,257,7429.776,1909452.5,0,0.002,0.957,18.866 130 | 2016-02-15 16:15:08,5,529,0,18.711,24.722,264.5,7314.357,1934647.5,0,0.011,1.002,18.257 131 | 2016-02-15 16:15:10,5,511,0,18.765,29.178,255.5,7405.865,1892198.5,0,0.004,0.986,18.319 132 | 2016-02-15 16:15:12,5,449,0,22.886,33.514,224.5,7346.176,1649216.5,0,0,0.982,22.412 133 | 2016-02-15 16:15:14,5,555,0,16.267,11.922,277.5,7393.079,2051579.5,0,0.022,0.969,15.809 134 | 2016-02-15 16:15:16,5,594,0,18.177,23.324,297,7210.906,2141639,0,0.015,1.005,17.34 135 | 2016-02-15 16:15:18,5,487,0,20.255,33.133,243.5,7135.641,1737528.5,0,0.006,0.969,19.807 136 | 2016-02-15 16:15:20,5,501,0,19.719,33.184,250.5,6694.9,1677072.5,0,0.02,0.974,19.325 137 | 2016-02-15 16:15:22,5,464,0,21.634,35.19,232,7224.36,1676051.5,0,0.002,0.953,21.192 138 | 2016-02-15 16:15:24,5,513,0,19.335,26.263,256.5,7530.926,1931682.5,0,0.021,0.967,18.877 139 | 2016-02-15 16:15:26,5,534,0,18.62,23.931,267,7489.994,1999828.5,0,0.002,0.964,18.157 140 | 2016-02-15 16:15:28,5,540,0,16.817,13.811,270,7152.474,1931168,0,0.011,0.963,16.348 141 | 2016-02-15 16:15:30,5,535,0,19.92,30.61,267.5,7187.413,1922633,0,0.007,0.972,19.08 142 | 2016-02-15 16:15:32,5,473,0,21.277,37.356,236.5,6624.816,1566769,0,0.021,0.975,20.886 143 | 2016-02-15 16:15:34,5,548,0,18.12,24.513,274,6941.575,1901991.5,0,0.024,0.973,17.699 144 | 2016-02-15 16:15:36,5,512,0,19.316,28.055,256,7047.266,1804100,0,0.016,0.996,18.875 145 | 2016-02-15 16:15:38,5,567,0,15.61,11.25,283.5,7000.912,1984758.5,0,0.019,0.951,15.196 146 | 2016-02-15 16:15:40,5,561,0,19.708,27.652,280.5,7232.307,2028662,0,0.002,0.941,19.255 147 | 2016-02-15 16:15:42,5,558,0,17.756,23.616,279,6667.832,1860325,0,0.005,0.97,17.341 148 | 2016-02-15 16:15:44,5,543,0,18.217,23.268,271.5,7306.343,1983672,0,0.017,0.985,17.753 149 | 2016-02-15 16:15:46,5,472,0,21.076,40.176,236,7394.591,1745123.5,0,0.036,0.992,20.612 150 | 2016-02-15 16:15:48,5,497,0,20.012,38.269,248.5,6964.596,1730702,0,0.022,0.968,19.596 151 | 2016-02-15 16:15:50,5,492,0,20.069,35.567,246,7520.701,1850092.5,0,0.006,0.949,19.612 152 | 2016-02-15 16:15:52,5,594,0,16.02,12.834,297,6765.694,2009411,0,0.002,0.944,15.609 153 | 2016-02-15 16:15:54,5,567,0,18.169,24.518,283.5,7147.515,2026320.5,0,0.004,0.949,17.734 154 | 2016-02-15 16:15:56,5,470,0,21.16,36.494,235,6468.796,1520167,0,0.021,1.011,20.768 155 | 2016-02-15 16:15:58,5,505,0,19.741,32.708,252.5,6894.877,1740956.5,0,0.006,0.972,19.305 156 | 2016-02-15 16:16:00,5,479,0,20.739,34.591,239.5,7401.113,1772566.5,0,0.019,1.008,20.305 157 | 2016-02-15 16:16:02,5,464,0,21.379,32.475,232,7085.14,1643752.5,0,0.022,0.987,20.955 158 | 2016-02-15 16:16:04,5,702,0,17.709,23.596,351,6857.054,2406826,0,0.007,0.962,17.312 159 | 2016-02-15 16:16:06,5,593,0,15.347,11.175,296.5,6864.796,2035412,0,0.005,0.978,14.933 160 | 2016-02-15 16:16:08,5,542,0,19.708,27.74,271,6927.991,1877485.5,0,0.017,0.967,19.286 161 | 2016-02-15 16:16:10,5,521,0,19.125,33.25,260.5,7089.138,1846720.5,0,0.002,0.948,18.714 162 | 2016-02-15 16:16:12,5,508,0,19.522,31.489,254,7581.291,1925648,0,0.01,0.994,19.022 163 | 2016-02-15 16:16:14,5,568,0,17.465,26.355,284,6505.479,1847556,0,0.018,0.975,17.069 164 | 2016-02-15 16:16:16,5,551,0,17.913,23.943,275.5,6668.105,1837063,0,0.015,0.984,17.486 165 | 2016-02-15 16:16:18,5,546,0,18.139,24.28,273,7155.835,1953543,0,0.037,1.004,17.672 166 | 2016-02-15 16:16:20,5,575,0,17.383,15.585,287.5,7248.831,2084039,0,0.002,0.944,16.918 167 | 2016-02-15 16:16:22,5,573,0,17.344,24.848,286.5,6638.305,1901874.5,0,0.016,0.976,16.934 168 | 2016-02-15 16:16:24,5,495,0,19.879,30.47,247.5,6577.008,1627809.5,0,0.018,1.002,19.473 169 | 2016-02-15 16:16:26,5,529,0,18.79,27.141,264.5,7104.845,1879231.5,0,0.002,0.972,18.338 170 | 2016-02-15 16:16:28,5,532,0,18.727,27.288,266,7215.009,1919192.5,0,0.015,0.976,18.273 171 | 2016-02-15 16:16:30,5,532,0,17.662,21.756,266,7294.056,1940219,0,0.017,0.976,17.212 172 | 2016-02-15 16:16:32,5,622,0,16.661,17.426,311,7006.114,2178901.5,0,0.011,0.974,16.217 173 | 2016-02-15 16:16:34,5,527,0,18.989,31.929,263.5,7016.964,1848970,0,0.017,0.97,18.569 174 | 2016-02-15 16:16:36,5,541,0,18.294,25.415,270.5,6798.109,1838888.5,0,0.007,0.946,17.869 175 | 2016-02-15 16:16:38,5,535,0,18.583,29.375,267.5,6878.505,1840000,0,0.021,0.987,18.153 176 | 2016-02-15 16:16:40,5,409,0,24.205,39.263,204.5,7025.017,1436616,0,0.022,1.002,23.76 177 | 2016-02-15 16:16:42,5,515,0,18.555,28.963,257.5,7560.621,1946860,0,0.016,0.984,18.118 178 | 2016-02-15 16:16:44,5,578,0,17.766,19,289,7419.119,2144125.5,0,0.003,0.972,17.329 179 | 2016-02-15 16:16:46,5,403,0,24.767,45.97,201.5,6712.424,1352553.5,0,0.017,1.03,24.37 180 | 2016-02-15 16:16:48,5,511,0,19.382,28.337,255.5,7182.395,1835102,0,0,0.963,18.9 181 | 2016-02-15 16:16:50,5,534,0,18.547,28.894,267,6715.206,1792960,0,0.021,1.006,18.137 182 | 2016-02-15 16:16:52,5,490,0,20.339,30.925,245,6643.58,1627677,0,0.018,0.957,19.955 183 | 2016-02-15 16:16:54,5,582,0,17.077,25.201,291,6744.089,1962530,0,0.003,0.952,16.644 184 | 2016-02-15 16:16:56,5,610,0,16.177,14.056,305,7013.482,2139112,0,0.005,0.979,15.731 185 | 2016-02-15 16:16:58,5,532,0,18.712,26.201,266,6538.239,1739171.5,0,0.011,0.972,18.288 186 | 2016-02-15 16:17:00,5,505,0,19.533,27.753,252.5,7253.79,1831582,0,0.032,0.956,19.097 187 | 2016-02-15 16:17:02,5,511,0,19.47,27.131,255.5,7080.526,1809074.5,0,0.02,0.986,19.031 188 | 2016-02-15 16:17:04,5,548,0,18.146,25.43,274,6790.036,1860470,0,0.005,0.934,17.706 189 | 2016-02-15 16:17:06,5,415,0,21.945,29.501,207.5,7001.058,1452719.5,0,0.002,0.986,21.489 190 | 2016-02-15 16:17:08,5,512,0,20.947,50.613,256,7217.783,1847752.5,0,0.02,2.916,20.525 191 | 2016-02-15 16:17:10,5,536,0,18.528,24.207,268,7083.256,1898312.5,0,0.021,0.97,18.09 192 | 2016-02-15 16:17:12,5,494,0,20.057,29.527,247,7291.83,1801082,0,0.022,1.071,19.569 193 | 2016-02-15 16:17:14,5,372,0,20.046,28.137,186,6906.196,1284552.5,0,0.008,1.102,19.581 194 | 2016-02-15 16:17:16,5,533,0,18.531,27.172,266.5,6554.523,1746780.5,0,0.032,1.011,18.128 195 | 2016-02-15 16:17:18,5,683,0,18.211,23.642,341.5,7375.561,2518754,0,0.015,0.99,17.783 196 | 2016-02-15 16:17:20,5,616,0,16.026,12.791,308,6740.076,2075943.5,0,0.003,0.966,15.558 197 | 2016-02-15 16:17:22,5,550,0,18.053,24.669,275,6937.987,1907946.5,0,0.004,0.978,17.629 198 | 2016-02-15 16:17:24,5,545,0,18.158,25.881,272.5,6902.481,1880926,0,0.013,0.996,17.719 199 | 2016-02-15 16:17:26,5,484,0,20.51,32.354,242,7226.289,1748762,0,0.021,0.957,20.041 200 | 2016-02-15 16:17:28,5,445,0,22.272,43.203,222.5,6827.209,1519054,0,0.016,0.993,21.876 201 | 2016-02-15 16:17:30,5,504,0,19.851,29.908,252,6786.95,1710311.5,0,0.014,0.982,19.446 202 | 2016-02-15 16:17:32,5,544,0,18.164,24.012,272,7220.675,1964023.5,0,0.026,0.982,17.728 203 | 2016-02-15 16:17:34,5,651,0,14.903,9.793,325.5,6891.054,2243038,0,0.023,0.998,14.461 204 | 2016-02-15 16:17:36,5,509,0,19.845,27.145,254.5,7098.314,1806521,0,0.022,0.965,19.397 205 | 2016-02-15 16:17:38,5,538,0,18.593,25.555,269,6962.039,1872788.5,0,0.004,0.965,18.132 206 | 2016-02-15 16:17:40,5,487,0,20.458,27.5,243.5,6963.271,1695556.5,0,0.012,0.979,20.027 207 | 2016-02-15 16:17:42,5,574,0,17.232,23.447,287,6887.045,1976582,0,0.002,0.962,16.829 208 | 2016-02-15 16:17:44,5,534,0,17.875,27.327,267,6515.637,1739675,0,0.03,0.994,17.367 209 | 2016-02-15 16:17:46,5,599,0,17.194,17.628,299.5,6554.192,1962980.5,0,0.003,1,16.785 210 | 2016-02-15 16:17:48,5,475,0,20.846,35.887,237.5,6853.259,1627649,0,0.004,0.962,20.394 211 | 2016-02-15 16:17:50,5,533,0,18.587,25.139,266.5,6841.058,1823142,0,0.017,0.979,18.176 212 | 2016-02-15 16:17:52,5,508,0,19.663,26.589,254,7447.514,1891668.5,0,0.022,1.01,19.22 213 | 2016-02-15 16:17:54,5,527,0,18.455,30.376,263.5,7547.247,1988699.5,0,0.023,1.002,17.987 214 | 2016-02-15 16:17:56,5,581,0,17.394,15.28,290.5,7141.222,2074525,0,0.015,0.986,16.954 215 | 2016-02-15 16:17:58,5,525,0,18.878,31.403,262.5,7107.358,1865681.5,0,0.021,0.994,18.419 216 | 2016-02-15 16:18:00,5,504,0,19.712,25.9,252,7198.137,1813930.5,0,0.03,1.022,19.288 217 | 2016-02-15 16:18:02,5,533,0,18.645,25.372,266.5,7151.278,1905815.5,0,0.019,0.989,18.195 218 | 2016-02-15 16:18:04,5,508,0,19.514,32.803,254,6999.868,1777966.5,0,0.006,0.978,19.075 219 | 2016-02-15 16:18:06,5,504,0,19.657,28.789,252,7164.954,1805568.5,0,0.004,0.994,19.171 220 | 2016-02-15 16:18:08,5,538,0,16.894,21.342,269,7063.368,1900046,0,0.007,0.976,16.437 221 | 2016-02-15 16:18:10,5,559,0,19.086,26.675,279.5,6888.585,1925359.5,0,0.018,0.964,18.66 222 | 2016-02-15 16:18:12,5,518,0,19.234,27.733,259,6979.384,1807660.5,0,0.019,0.986,18.849 223 | 2016-02-15 16:18:14,5,534,0,18.629,26.27,267,6977.564,1863009.5,0,0,0.983,18.159 224 | 2016-02-15 16:18:16,5,541,0,18.213,25.038,270.5,7274.362,1967715,0,0.004,0.952,17.758 225 | 2016-02-15 16:18:18,5,547,0,17.388,22.971,273.5,6925.093,1894013,0,0.016,0.963,16.98 226 | 2016-02-15 16:18:20,5,587,0,17.284,19.738,293.5,6928.835,2033613,0,0.017,0.99,16.869 227 | 2016-02-15 16:18:22,5,456,0,22.388,35.633,228,7046.357,1606569.5,0,0.011,0.998,21.95 228 | 2016-02-15 16:18:24,5,528,0,18.744,26.981,264,7442.536,1964829.5,0,0,0.955,18.294 229 | 2016-02-15 16:18:26,5,493,0,20.185,28.692,246.5,7233.185,1782980,0,0.02,0.996,19.7 230 | 2016-02-15 16:18:28,5,513,0,19.275,28.103,256.5,7635.595,1958530,0,0.018,1.016,18.774 231 | 2016-02-15 16:18:30,5,457,0,21.834,31.311,228.5,7725.433,1765261.5,0,0.018,1.018,21.383 232 | 2016-02-15 16:18:32,5,213,0,46.934,105.178,106.5,7635.272,813156.5,0,0.019,0.986,46.46 233 | 2016-02-15 16:18:34,5,501,0,19.79,35.005,250.5,7128.675,1785733,0,0,0.954,19.337 234 | 2016-02-15 16:18:36,5,584,0,15.943,13.703,292,7258.656,2119527.5,0,0.007,0.985,15.515 235 | 2016-02-15 16:18:38,5,553,0,19.007,30.485,276.5,7280.13,2012956,0,0.025,1.025,17.528 236 | 2016-02-15 16:18:40,5,412,0,24.148,41.098,206,7473.274,1539494.5,0,0.005,1.002,23.663 237 | 2016-02-15 16:18:42,5,498,0,20.046,30.083,249,6955.819,1731999,0,0.006,1.02,19.616 238 | 2016-02-15 16:18:44,5,464,0,21.362,34.068,232,6652.819,1543454,0,0.004,0.97,20.905 239 | 2016-02-15 16:18:46,5,486,0,20.42,28.928,243,6827.2,1659009.5,0,0.016,0.981,20.006 240 | 2016-02-15 16:18:48,5,594,0,15.862,11.515,297,7292.746,2165945.5,0,0.007,0.97,15.402 241 | 2016-02-15 16:18:50,5,534,0,19.442,23.504,267,6927.363,1849606,0,0.004,0.97,19.002 242 | 2016-02-15 16:18:52,5,510,0,19.522,31.974,255,7305.192,1862824,0,0.016,0.969,19.084 243 | 2016-02-15 16:18:54,5,483,0,20.511,30.431,241.5,7371.489,1780214.5,0,0.006,0.992,20.064 244 | 2016-02-15 16:18:56,5,465,0,21.404,33.164,232.5,7049.923,1639107,0,0.017,0.991,20.94 245 | 2016-02-15 16:18:58,5,519,0,19.135,31.572,259.5,7643.493,1983486.5,0,0.002,0.971,18.686 246 | 2016-02-15 16:19:00,5,537,0,18.449,24.978,268.5,6785.764,1821977.5,0,0.006,0.98,17.991 247 | 2016-02-15 16:19:02,5,551,0,18.064,26.735,275.5,6917.904,1905882.5,0,0.002,0.94,17.632 248 | 2016-02-15 16:19:04,5,549,0,17.956,22.985,274.5,7320.543,2009489,0,0.004,1.022,17.468 249 | 2016-02-15 16:19:06,5,455,0,21.945,34.138,227.5,7233.426,1645604.5,0,0.024,1.011,21.508 250 | 2016-02-15 16:19:08,5,518,0,19.139,36.988,259,6133.506,1588578,0,0.015,1.037,18.792 251 | 2016-02-15 16:19:10,5,532,0,18.414,24.919,266,7071.397,1880991.5,0,0.015,0.977,17.97 252 | 2016-02-15 16:19:12,5,535,0,18.774,27.439,267.5,7485.441,2002355.5,0,0.007,0.959,18.331 253 | 2016-02-15 16:19:14,5,600,0,15.417,9.716,300,6999.285,2099785.5,0,0.01,0.97,14.978 254 | 2016-02-15 16:19:16,5,597,0,17.752,24.718,298.5,6697.08,1999078.5,0,0.018,0.953,17.347 255 | 2016-02-15 16:19:18,5,523,0,18.939,29.716,261.5,7368.665,1926906,0,0.017,0.967,18.482 256 | 2016-02-15 16:19:20,5,501,0,19.675,28.022,250.5,7410.273,1856273.5,0,0.004,0.986,19.214 257 | 2016-02-15 16:19:22,5,527,0,19.019,26.03,263.5,7036.097,1854011.5,0,0.017,0.973,18.583 258 | 2016-02-15 16:19:24,5,494,0,19.968,39.557,247,7115.099,1757429.5,0,0.022,0.966,19.547 259 | 2016-02-15 16:19:26,5,613,0,16.181,11.741,306.5,6906.935,2116975.5,0,0.008,0.956,15.757 260 | 2016-02-15 16:19:28,5,464,0,21.06,31.368,232,7249.8,1681953.5,0,0.019,1.011,20.147 261 | 2016-02-15 16:19:30,5,527,0,19.055,26.069,263.5,6649.08,1752032.5,0,0.009,0.962,18.617 262 | 2016-02-15 16:19:32,5,562,0,17.822,26.414,281,6541.69,1838215,0,0.005,0.966,17.413 263 | 2016-02-15 16:19:34,5,504,0,19.651,33.845,252,7431.218,1872667,0,0.016,0.94,19.234 264 | 2016-02-15 16:19:36,5,554,0,17.81,23.409,277,6824.502,1890387,0,0.032,1.023,17.386 265 | 2016-02-15 16:19:38,5,608,0,16.095,13.994,304,7074.941,2150782,0,0.015,0.947,15.686 266 | 2016-02-15 16:19:40,5,516,0,19.653,27.863,258,6801.132,1754692,0,0.008,0.955,19.242 267 | 2016-02-15 16:19:42,5,407,0,24.435,75.975,203.5,6809.722,1385778.5,0,0.02,5.899,24.027 268 | 2016-02-15 16:19:44,5,541,0,18.294,26.553,270.5,6739.165,1822944,0,0.018,0.987,17.854 269 | 2016-02-15 16:19:46,5,497,0,19.966,33.1,248.5,6648.73,1652209.5,0,0.006,0.964,19.539 270 | 2016-02-15 16:19:48,5,515,0,19.32,34.627,257.5,6602.369,1700110,0,0.016,1.002,18.918 271 | 2016-02-15 16:19:50,5,566,0,15.991,14.047,283,6678.182,1889925.5,0,0.028,1.032,15.58 272 | 2016-02-15 16:19:52,5,535,0,20.254,29.615,267.5,7276.746,1946529.5,0,0.004,0.998,19.774 273 | 2016-02-15 16:19:54,5,651,0,15.111,10.358,325.5,6833.127,2224183,0,0.026,0.971,14.697 274 | 2016-02-15 16:19:56,5,495,0,20.19,32.629,247.5,7121.202,1762497.5,0,0.004,0.956,19.721 275 | 2016-02-15 16:19:58,5,534,0,18.592,23.689,267,7420.76,1981343,0,0.017,0.996,18.152 276 | 2016-02-15 16:20:00,5,540,0,18.337,26.375,270,6600.8,1782216,0,0.015,0.95,17.943 277 | 2016-02-15 16:20:02,5,511,0,19.45,27.92,255.5,7072.344,1806984,0,0.022,1.012,19.006 278 | 2016-02-15 16:20:04,5,549,0,16.53,14.82,274.5,7194.967,1975018.5,0,0.022,1.042,16.064 279 | 2016-02-15 16:20:06,5,597,0,18.022,23.914,298.5,7338.065,2190412.5,0,0,0.951,17.6 280 | 2016-02-15 16:20:08,5,488,0,20.184,34.616,244,7088.703,1729643.5,0,0.018,0.98,19.754 281 | 2016-02-15 16:20:10,5,518,0,19.299,28.526,259,7233.546,1873488.5,0,0.008,0.969,18.84 282 | 2016-02-15 16:20:12,5,541,0,18.322,24.012,270.5,7159.505,1936646,0,0.028,0.98,17.876 283 | 2016-02-15 16:20:14,5,455,0,21.648,32.512,227.5,7755.198,1764307.5,0,0.02,0.978,21.154 284 | 2016-02-15 16:20:16,5,544,0,17.893,23.58,272,6793.311,1847780.5,0,0.015,0.954,17.445 285 | 2016-02-15 16:20:18,5,612,0,16.533,15.778,306,7147.186,2187039,0,0.016,0.98,16.085 286 | 2016-02-15 16:20:20,5,501,0,19.906,27.669,250.5,6341.467,1588537.5,0,0.002,0.93,19.509 287 | 2016-02-15 16:20:22,5,529,0,18.467,26.279,264.5,7439.724,1967807,0,0.017,0.996,18.004 288 | 2016-02-15 16:20:24,5,491,0,20.554,28.345,245.5,7674.485,1884086,0,0.012,0.957,20.063 289 | 2016-02-15 16:20:26,5,432,0,22.947,38.246,216,7106.59,1535023.5,0,0,0.933,22.519 290 | 2016-02-15 16:20:28,5,496,0,20.095,29.831,248,7101.992,1761294,0,0.02,0.992,19.671 291 | 2016-02-15 16:20:30,5,612,0,16.212,11.89,306,7389.77,2261269.5,0,0.023,0.967,15.784 292 | 2016-02-15 16:20:32,5,486,0,20.21,29.537,243,7022.358,1706433,0,0.008,0.973,19.737 293 | 2016-02-15 16:20:34,5,536,0,18.651,29.676,268,7147.491,1915527.5,0,0.015,0.993,18.213 294 | 2016-02-15 16:20:36,5,477,0,20.774,31.337,238.5,7218.99,1721729,0,0,0.964,20.346 295 | 2016-02-15 16:20:38,5,527,0,18.723,30.673,263.5,6994.719,1843108.5,0,0.027,0.97,18.273 296 | 2016-02-15 16:20:40,5,524,0,18.676,28.667,262,6909.464,1810279.5,0,0.019,0.973,18.275 297 | 2016-02-15 16:20:42,5,518,0,17.616,13.254,259,8009.479,2074455,0,0.017,0.981,17.114 298 | 2016-02-15 16:20:44,5,567,0,18.102,25.652,283.5,6355.508,1801786.5,0,0.018,0.977,17.72 299 | -------------------------------------------------------------------------------- /target/classes/outputformat.csv: -------------------------------------------------------------------------------- 1 | DateTime,vuser,Tests,Errors,Mean_Test_Time,Test_Time_Standard_Deviation,TPS,Mean_response_length,Response_bytes_per_second,Response_errors,Mean_time_to_resolve_host,Mean_time_to_establish_connection,Mean_time_to_first_byte 2 | 2016-02-15 16:10:52,2,176,0,23.312,31.182,88,7336.335,645597.5,0,0.307,1.403,22.409 3 | 2016-02-15 16:10:54,4,337,0,22.733,38.204,168.5,6335.273,1067493.5,0,0.142,1.19,22.045 4 | 2016-02-15 16:10:56,5,476,0,20.237,27.869,238,6978.468,1660875.5,0,0.107,1.162,19.666 5 | 2016-02-15 16:10:58,5,499,0,19.383,23.688,249.5,6766.864,1688332.5,0,0.072,1.14,18.754 6 | 2016-02-15 16:11:00,5,481,0,20.133,27.714,240.5,7121.05,1712612.5,0,0.044,1.048,19.605 7 | 2016-02-15 16:11:02,5,569,0,17.188,12.066,284.5,7488.376,2130443,0,0.035,1.046,16.64 8 | 2016-02-15 16:11:04,5,390,0,25.264,41.386,195,7390.533,1441154,0,0.023,1.036,24.708 9 | 2016-02-15 16:11:06,5,451,0,21.665,29.588,225.5,7029.186,1585081.5,0,0.029,1.064,21.166 10 | 2016-02-15 16:11:08,5,458,0,21.467,32.682,229,6719.055,1538663.5,0,0.037,1.066,20.996 11 | 2016-02-15 16:11:10,5,431,0,19.847,28.562,215.5,7465.698,1608858,0,0.03,1.058,19.304 12 | 2016-02-15 16:11:12,5,428,0,25.907,115.617,214,6937.306,1484583.5,0,0.044,1.044,25.439 13 | 2016-02-15 16:11:14,5,565,0,16.903,13.614,282.5,6725.6,1899982,0,0.019,1.035,16.407 14 | 2016-02-15 16:11:16,5,390,0,25.403,45.776,195,6549.115,1277077.5,0,0.018,1.018,24.936 15 | 2016-02-15 16:11:18,5,521,0,19.374,26.622,260.5,7332.393,1910088.5,0,0.021,1.058,18.896 16 | 2016-02-15 16:11:20,5,393,0,25.224,36.423,196.5,7084.628,1392129.5,0,0.013,1.056,24.735 17 | 2016-02-15 16:11:22,5,575,0,17.136,23.702,287.5,6437.191,1850692.5,0,0.037,1.045,16.303 18 | 2016-02-15 16:11:24,5,563,0,17.453,24.865,281.5,6695.575,1884804.5,0,0.02,1.034,17.007 19 | 2016-02-15 16:11:26,5,484,0,20.349,25.798,242,6967.826,1686214,0,0.014,1.041,19.855 20 | 2016-02-15 16:11:28,5,550,0,17.605,21.172,275,7627.636,2097600,0,0.013,1.033,17.058 21 | 2016-02-15 16:11:30,5,499,0,20.1,30.65,249.5,6923.261,1727353.5,0,0.012,1.056,19.631 22 | 2016-02-15 16:11:32,5,483,0,20.592,32.643,241.5,7268.975,1755457.5,0,0.01,1.029,20.081 23 | 2016-02-15 16:11:34,5,489,0,20.19,31.546,244.5,7374.397,1803040,0,0.035,1.055,19.687 24 | 2016-02-15 16:11:36,5,508,0,19.451,28.964,254,6780.081,1722140.5,0,0.061,1.057,19.041 25 | 2016-02-15 16:11:38,5,493,0,20.191,28.133,246.5,6882.661,1696576,0,0.065,1.043,19.744 26 | 2016-02-15 16:11:40,5,448,0,21.609,39.128,224,6631.801,1485523.5,0,0.074,1.062,21.147 27 | 2016-02-15 16:11:42,5,531,0,19.111,25.044,265.5,6999.394,1858339,0,0.049,1.019,18.667 28 | 2016-02-15 16:11:44,5,527,0,17.886,22.155,263.5,7317.96,1928282.5,0,0.047,1.013,17.414 29 | 2016-02-15 16:11:46,5,535,0,19.357,21.78,267.5,6911.297,1848772,0,0.041,1.017,18.933 30 | 2016-02-15 16:11:48,5,495,0,20.16,31.765,247.5,7243.257,1792706,0,0.04,1.034,19.685 31 | 2016-02-15 16:11:50,5,538,0,18.409,24.044,269,7047.825,1895865,0,0.067,1.045,17.987 32 | 2016-02-15 16:11:52,5,588,0,16.837,20.646,294,6838.65,2010563,0,0.056,1.051,16.42 33 | 2016-02-15 16:11:54,5,552,0,17.917,25.501,276,7056.054,1947471,0,0.047,1.011,17.475 34 | 2016-02-15 16:11:56,5,448,0,22.042,36.497,224,7023.386,1573238.5,0,0.027,1.002,21.583 35 | 2016-02-15 16:11:58,5,532,0,16.906,15.745,266,7142.585,1899927.5,0,0.051,1.021,16.489 36 | 2016-02-15 16:12:00,5,499,0,20.567,30.109,249.5,7135.184,1780228.5,0,0.016,0.96,20.106 37 | 2016-02-15 16:12:02,5,487,0,21.684,58.247,243.5,7264.918,1769007.5,0,0.004,3.014,21.209 38 | 2016-02-15 16:12:04,5,526,0,18.827,24.813,263,7641.289,2009659,0,0.021,0.994,18.352 39 | 2016-02-15 16:12:06,5,420,0,23.498,36.006,210,7264.205,1525483,0,0.012,0.99,23.014 40 | 2016-02-15 16:12:08,5,544,0,18.32,24.897,272,7016.939,1908607.5,0,0.004,1.006,17.846 41 | 2016-02-15 16:12:10,5,473,0,20.97,37.87,236.5,6756.186,1597838,0,0.017,0.994,19.888 42 | 2016-02-15 16:12:12,5,523,0,19.105,34.603,261.5,6860.033,1793898.5,0,0.017,1.013,18.66 43 | 2016-02-15 16:12:14,5,548,0,17.268,14.53,274,7676.673,2103408.5,0,0.015,0.998,16.797 44 | 2016-02-15 16:12:16,5,356,0,22.185,32.027,178,7098.61,1263552.5,0,0,1,21.742 45 | 2016-02-15 16:12:18,5,682,0,18.166,22.396,341,7426.925,2532581.5,0,0.023,0.979,17.718 46 | 2016-02-15 16:12:20,5,473,0,20.96,31.562,236.5,7098.651,1678831,0,0.008,0.992,20.535 47 | 2016-02-15 16:12:22,5,549,0,18.106,23.238,274.5,6482.709,1779503.5,0,0.002,0.976,17.705 48 | 2016-02-15 16:12:24,5,553,0,17.864,24.152,276.5,7082.676,1958360,0,0.025,0.984,17.43 49 | 2016-02-15 16:12:26,5,416,0,17.183,13.783,208,7198.361,1497259,0,0.043,1.019,16.745 50 | 2016-02-15 16:12:28,5,570,0,18.03,24.878,285,6946.654,1979796.5,0,0.016,1.023,17.582 51 | 2016-02-15 16:12:30,5,641,0,19.384,28.409,320.5,6907.315,2213794.5,0,0.003,0.988,18.973 52 | 2016-02-15 16:12:32,5,553,0,18,24.532,276.5,6900.637,1908026,0,0.022,0.991,17.566 53 | 2016-02-15 16:12:34,5,514,0,19.272,29.487,257,7811.909,2007660.5,0,0,0.94,18.778 54 | 2016-02-15 16:12:36,5,462,0,21.548,38.516,231,7246.355,1673908,0,0.022,1.009,21.1 55 | 2016-02-15 16:12:38,5,561,0,17.613,25.006,280.5,6437.964,1805849,0,0.011,0.957,17.207 56 | 2016-02-15 16:12:40,5,566,0,16.696,12.932,283,7376.435,2087531,0,0.016,1.027,16.228 57 | 2016-02-15 16:12:42,5,591,0,17.504,23.297,295.5,6957.479,2055935,0,0.019,0.983,17.068 58 | 2016-02-15 16:12:44,5,529,0,18.864,27.245,264.5,7095.391,1876731,0,0.004,0.992,18.397 59 | 2016-02-15 16:12:46,5,501,0,19.894,28.372,250.5,6550.908,1641002.5,0,0.006,1,19.499 60 | 2016-02-15 16:12:48,5,402,0,18.498,30.293,201,6288.316,1263951.5,0,0.005,0.98,18.085 61 | 2016-02-15 16:12:50,5,612,0,20.319,36.209,306,7056.505,2159290.5,0,0.007,0.972,19.869 62 | 2016-02-15 16:12:52,5,532,0,18.613,29.152,266,6815.912,1813032.5,0,0.032,1.024,18.201 63 | 2016-02-15 16:12:54,5,512,0,19.34,31.084,256,6942.234,1777212,0,0.023,1.012,18.93 64 | 2016-02-15 16:12:56,5,478,0,20.816,25.497,239,7300.722,1744872.5,0,0.021,0.998,20.345 65 | 2016-02-15 16:12:58,5,556,0,17.82,23.762,278,6844.079,1902654,0,0.016,0.989,17.406 66 | 2016-02-15 16:13:00,5,484,0,20.452,30.197,242,7410.06,1793234.5,0,0.004,0.973,19.981 67 | 2016-02-15 16:13:02,5,493,0,20.13,27.057,246.5,7442.698,1834625,0,0.01,0.953,19.667 68 | 2016-02-15 16:13:04,5,501,0,19.864,29.705,250.5,7111.984,1781552,0,0.006,0.96,19.417 69 | 2016-02-15 16:13:06,5,557,0,17.743,27.05,278.5,6563.732,1827999.5,0,0.007,0.95,17.35 70 | 2016-02-15 16:13:08,5,509,0,19.363,25.51,254.5,7769.269,1977279,0,0,0.965,18.886 71 | 2016-02-15 16:13:10,5,518,0,19.438,29.616,259,6825.245,1767738.5,0,0.031,1.01,19.008 72 | 2016-02-15 16:13:12,5,614,0,15.66,10.567,307,7138.901,2191642.5,0,0.003,0.98,15.204 73 | 2016-02-15 16:13:14,5,515,0,19.744,28.684,257.5,7479.122,1925874,0,0.017,0.963,19.285 74 | 2016-02-15 16:13:16,5,453,0,21.819,33.987,226.5,7031.684,1592676.5,0,0.038,0.993,21.404 75 | 2016-02-15 16:13:18,5,527,0,18.922,27.812,263.5,7408.803,1952219.5,0,0.019,0.989,18.461 76 | 2016-02-15 16:13:20,5,463,0,21.309,29.742,231.5,7462.762,1727629.5,0,0.009,0.994,20.853 77 | 2016-02-15 16:13:22,5,332,0,22.611,40.037,166,6417.292,1065270.5,0,0.024,0.982,22.226 78 | 2016-02-15 16:13:24,5,549,0,16.519,21.721,274.5,6861.832,1883573,0,0.035,0.995,16.117 79 | 2016-02-15 16:13:26,5,463,0,21.13,33.81,231.5,6922.566,1602574,0,0.004,0.974,20.67 80 | 2016-02-15 16:13:28,5,578,0,18.448,24.357,289,7446.635,2152077.5,0,0.012,0.969,17.984 81 | 2016-02-15 16:13:30,5,485,0,20.963,36.201,242.5,6726.907,1631275,0,0.019,1.019,20.526 82 | 2016-02-15 16:13:32,5,462,0,21.571,29.173,231,7456.976,1722561.5,0,0.004,0.983,21.102 83 | 2016-02-15 16:13:34,5,643,0,19.275,27.084,321.5,7384.613,2374153,0,0.005,0.955,18.792 84 | 2016-02-15 16:13:36,5,307,0,24.104,39.7,153.5,7714.208,1184131,0,0.02,0.977,23.612 85 | 2016-02-15 16:13:38,5,670,0,18.575,24.496,335,7067.991,2367777,0,0.016,0.994,18.139 86 | 2016-02-15 16:13:40,5,428,0,17.516,16.016,214,6931.369,1483313,0,0.026,1.009,17.086 87 | 2016-02-15 16:13:42,5,548,0,18.082,29.174,274,6672.157,1828171,0,0.004,0.929,17.646 88 | 2016-02-15 16:13:44,5,555,0,17.923,26.072,277.5,6671.831,1851433,0,0.023,0.978,17.515 89 | 2016-02-15 16:13:46,5,468,0,21.259,35.829,234,6736.365,1576309.5,0,0.019,0.996,20.833 90 | 2016-02-15 16:13:48,5,497,0,19.891,31.809,248.5,6817.632,1694181.5,0,0.014,1,19.477 91 | 2016-02-15 16:13:50,5,523,0,18.864,28.771,261.5,7047.811,1843002.5,0,0.021,0.989,18.409 92 | 2016-02-15 16:13:52,5,585,0,21.439,37.503,292.5,6818.66,1994458,0,0.026,1.009,21.027 93 | 2016-02-15 16:13:54,5,517,0,16.484,24.645,258.5,6885.439,1779886,0,0.004,0.956,16.015 94 | 2016-02-15 16:13:56,5,493,0,21.14,35.636,246.5,6872.517,1694075.5,0,0.006,1.022,20.712 95 | 2016-02-15 16:13:58,5,566,0,18.973,46.207,283,7023.615,1987683,0,0.018,2.767,18.544 96 | 2016-02-15 16:14:00,5,519,0,19.143,24.639,259.5,6805.877,1766125,0,0.021,1.008,18.696 97 | 2016-02-15 16:14:02,5,527,0,18.658,24.237,263.5,7168.317,1888851.5,0,0.008,0.968,18.231 98 | 2016-02-15 16:14:04,5,564,0,17.848,26.271,282,7017.083,1978817.5,0,0.002,0.973,17.401 99 | 2016-02-15 16:14:06,5,490,0,20.153,27.124,245,7874.906,1929352,0,0.018,0.996,19.663 100 | 2016-02-15 16:14:08,5,555,0,17.766,43.818,277.5,7258.519,2014239,0,0.018,2.798,17.305 101 | 2016-02-15 16:14:10,5,310,0,23.765,45.257,155,7475.316,1158674,0,0.01,0.945,23.316 102 | 2016-02-15 16:14:12,5,525,0,19.278,24.447,262.5,6655.156,1746978.5,0,0.006,0.989,18.853 103 | 2016-02-15 16:14:14,5,534,0,18.655,26.934,267,6768.629,1807224,0,0.007,0.933,18.221 104 | 2016-02-15 16:14:16,5,535,0,18.546,26.185,267.5,7022.693,1878570.5,0,0.004,0.966,18.095 105 | 2016-02-15 16:14:18,5,630,0,15.662,14.111,315,7042.998,2218544.5,0,0.013,0.975,15.237 106 | 2016-02-15 16:14:20,5,521,0,19.115,25.999,260.5,7693.186,2004075,0,0.004,0.933,18.672 107 | 2016-02-15 16:14:22,5,669,0,18.311,24.908,334.5,6793.824,2272534,0,0.022,0.969,17.892 108 | 2016-02-15 16:14:24,5,546,0,18.352,24.329,273,7289.61,1990063.5,0,0.005,0.962,17.916 109 | 2016-02-15 16:14:26,5,334,0,22.419,38.634,167,6828.829,1140414.5,0,0.009,0.97,21.964 110 | 2016-02-15 16:14:28,5,561,0,16.173,12.168,280.5,7431.33,2084488,0,0.005,0.955,15.702 111 | 2016-02-15 16:14:30,5,556,0,19.016,25.382,278,6794.099,1888759.5,0,0.018,0.986,18.597 112 | 2016-02-15 16:14:32,5,412,0,24.617,40.373,206,6778.857,1396444.5,0,0.005,0.951,24.204 113 | 2016-02-15 16:14:34,5,378,0,25.947,66.372,189,7088.455,1339718,0,0.024,1.011,25.466 114 | 2016-02-15 16:14:36,5,443,0,22.765,39.687,221.5,6431.44,1424564,0,0.018,1.002,22.357 115 | 2016-02-15 16:14:38,5,529,0,18.813,27.353,264.5,7050.917,1864967.5,0,0.008,0.94,18.372 116 | 2016-02-15 16:14:40,5,398,0,24.862,47.332,199,8354.264,1662498.5,0,0.005,0.965,24.367 117 | 2016-02-15 16:14:42,5,483,0,20.455,32.026,241.5,6716.354,1621999.5,0,0.002,1.002,20.027 118 | 2016-02-15 16:14:44,5,482,0,20.728,33.136,241,7585.151,1828021.5,0,0.004,0.963,20.28 119 | 2016-02-15 16:14:46,5,433,0,23.03,33.078,216.5,6875.229,1488487,0,0.023,0.986,22.612 120 | 2016-02-15 16:14:48,5,609,0,15.361,11.629,304.5,6928.53,2109737.5,0,0.01,0.99,14.921 121 | 2016-02-15 16:14:50,5,513,0,20.423,28.077,256.5,7316.635,1876717,0,0.016,1.01,19.984 122 | 2016-02-15 16:14:52,5,512,0,19.318,28.552,256,6794.93,1739502,0,0.016,0.977,18.906 123 | 2016-02-15 16:14:54,5,507,0,19.623,29.302,253.5,7476.974,1895413,0,0.02,1.01,18.761 124 | 2016-02-15 16:14:56,5,514,0,19.305,28.962,257,7374.274,1895188.5,0,0.008,0.975,18.846 125 | 2016-02-15 16:14:58,5,544,0,17.327,19.387,272,7587.763,2063871.5,0,0.011,0.985,16.853 126 | 2016-02-15 16:15:00,5,545,0,19.16,23.151,272.5,6794.782,1851578,0,0.006,0.963,18.745 127 | 2016-02-15 16:15:02,5,478,0,20.778,30.468,239,7374.297,1762457,0,0.017,0.998,20.328 128 | 2016-02-15 16:15:04,5,470,0,21.145,40.815,235,6991.706,1643051,0,0.019,0.983,20.719 129 | 2016-02-15 16:15:06,5,514,0,19.356,25.889,257,7429.776,1909452.5,0,0.002,0.957,18.866 130 | 2016-02-15 16:15:08,5,529,0,18.711,24.722,264.5,7314.357,1934647.5,0,0.011,1.002,18.257 131 | 2016-02-15 16:15:10,5,511,0,18.765,29.178,255.5,7405.865,1892198.5,0,0.004,0.986,18.319 132 | 2016-02-15 16:15:12,5,449,0,22.886,33.514,224.5,7346.176,1649216.5,0,0,0.982,22.412 133 | 2016-02-15 16:15:14,5,555,0,16.267,11.922,277.5,7393.079,2051579.5,0,0.022,0.969,15.809 134 | 2016-02-15 16:15:16,5,594,0,18.177,23.324,297,7210.906,2141639,0,0.015,1.005,17.34 135 | 2016-02-15 16:15:18,5,487,0,20.255,33.133,243.5,7135.641,1737528.5,0,0.006,0.969,19.807 136 | 2016-02-15 16:15:20,5,501,0,19.719,33.184,250.5,6694.9,1677072.5,0,0.02,0.974,19.325 137 | 2016-02-15 16:15:22,5,464,0,21.634,35.19,232,7224.36,1676051.5,0,0.002,0.953,21.192 138 | 2016-02-15 16:15:24,5,513,0,19.335,26.263,256.5,7530.926,1931682.5,0,0.021,0.967,18.877 139 | 2016-02-15 16:15:26,5,534,0,18.62,23.931,267,7489.994,1999828.5,0,0.002,0.964,18.157 140 | 2016-02-15 16:15:28,5,540,0,16.817,13.811,270,7152.474,1931168,0,0.011,0.963,16.348 141 | 2016-02-15 16:15:30,5,535,0,19.92,30.61,267.5,7187.413,1922633,0,0.007,0.972,19.08 142 | 2016-02-15 16:15:32,5,473,0,21.277,37.356,236.5,6624.816,1566769,0,0.021,0.975,20.886 143 | 2016-02-15 16:15:34,5,548,0,18.12,24.513,274,6941.575,1901991.5,0,0.024,0.973,17.699 144 | 2016-02-15 16:15:36,5,512,0,19.316,28.055,256,7047.266,1804100,0,0.016,0.996,18.875 145 | 2016-02-15 16:15:38,5,567,0,15.61,11.25,283.5,7000.912,1984758.5,0,0.019,0.951,15.196 146 | 2016-02-15 16:15:40,5,561,0,19.708,27.652,280.5,7232.307,2028662,0,0.002,0.941,19.255 147 | 2016-02-15 16:15:42,5,558,0,17.756,23.616,279,6667.832,1860325,0,0.005,0.97,17.341 148 | 2016-02-15 16:15:44,5,543,0,18.217,23.268,271.5,7306.343,1983672,0,0.017,0.985,17.753 149 | 2016-02-15 16:15:46,5,472,0,21.076,40.176,236,7394.591,1745123.5,0,0.036,0.992,20.612 150 | 2016-02-15 16:15:48,5,497,0,20.012,38.269,248.5,6964.596,1730702,0,0.022,0.968,19.596 151 | 2016-02-15 16:15:50,5,492,0,20.069,35.567,246,7520.701,1850092.5,0,0.006,0.949,19.612 152 | 2016-02-15 16:15:52,5,594,0,16.02,12.834,297,6765.694,2009411,0,0.002,0.944,15.609 153 | 2016-02-15 16:15:54,5,567,0,18.169,24.518,283.5,7147.515,2026320.5,0,0.004,0.949,17.734 154 | 2016-02-15 16:15:56,5,470,0,21.16,36.494,235,6468.796,1520167,0,0.021,1.011,20.768 155 | 2016-02-15 16:15:58,5,505,0,19.741,32.708,252.5,6894.877,1740956.5,0,0.006,0.972,19.305 156 | 2016-02-15 16:16:00,5,479,0,20.739,34.591,239.5,7401.113,1772566.5,0,0.019,1.008,20.305 157 | 2016-02-15 16:16:02,5,464,0,21.379,32.475,232,7085.14,1643752.5,0,0.022,0.987,20.955 158 | 2016-02-15 16:16:04,5,702,0,17.709,23.596,351,6857.054,2406826,0,0.007,0.962,17.312 159 | 2016-02-15 16:16:06,5,593,0,15.347,11.175,296.5,6864.796,2035412,0,0.005,0.978,14.933 160 | 2016-02-15 16:16:08,5,542,0,19.708,27.74,271,6927.991,1877485.5,0,0.017,0.967,19.286 161 | 2016-02-15 16:16:10,5,521,0,19.125,33.25,260.5,7089.138,1846720.5,0,0.002,0.948,18.714 162 | 2016-02-15 16:16:12,5,508,0,19.522,31.489,254,7581.291,1925648,0,0.01,0.994,19.022 163 | 2016-02-15 16:16:14,5,568,0,17.465,26.355,284,6505.479,1847556,0,0.018,0.975,17.069 164 | 2016-02-15 16:16:16,5,551,0,17.913,23.943,275.5,6668.105,1837063,0,0.015,0.984,17.486 165 | 2016-02-15 16:16:18,5,546,0,18.139,24.28,273,7155.835,1953543,0,0.037,1.004,17.672 166 | 2016-02-15 16:16:20,5,575,0,17.383,15.585,287.5,7248.831,2084039,0,0.002,0.944,16.918 167 | 2016-02-15 16:16:22,5,573,0,17.344,24.848,286.5,6638.305,1901874.5,0,0.016,0.976,16.934 168 | 2016-02-15 16:16:24,5,495,0,19.879,30.47,247.5,6577.008,1627809.5,0,0.018,1.002,19.473 169 | 2016-02-15 16:16:26,5,529,0,18.79,27.141,264.5,7104.845,1879231.5,0,0.002,0.972,18.338 170 | 2016-02-15 16:16:28,5,532,0,18.727,27.288,266,7215.009,1919192.5,0,0.015,0.976,18.273 171 | 2016-02-15 16:16:30,5,532,0,17.662,21.756,266,7294.056,1940219,0,0.017,0.976,17.212 172 | 2016-02-15 16:16:32,5,622,0,16.661,17.426,311,7006.114,2178901.5,0,0.011,0.974,16.217 173 | 2016-02-15 16:16:34,5,527,0,18.989,31.929,263.5,7016.964,1848970,0,0.017,0.97,18.569 174 | 2016-02-15 16:16:36,5,541,0,18.294,25.415,270.5,6798.109,1838888.5,0,0.007,0.946,17.869 175 | 2016-02-15 16:16:38,5,535,0,18.583,29.375,267.5,6878.505,1840000,0,0.021,0.987,18.153 176 | 2016-02-15 16:16:40,5,409,0,24.205,39.263,204.5,7025.017,1436616,0,0.022,1.002,23.76 177 | 2016-02-15 16:16:42,5,515,0,18.555,28.963,257.5,7560.621,1946860,0,0.016,0.984,18.118 178 | 2016-02-15 16:16:44,5,578,0,17.766,19,289,7419.119,2144125.5,0,0.003,0.972,17.329 179 | 2016-02-15 16:16:46,5,403,0,24.767,45.97,201.5,6712.424,1352553.5,0,0.017,1.03,24.37 180 | 2016-02-15 16:16:48,5,511,0,19.382,28.337,255.5,7182.395,1835102,0,0,0.963,18.9 181 | 2016-02-15 16:16:50,5,534,0,18.547,28.894,267,6715.206,1792960,0,0.021,1.006,18.137 182 | 2016-02-15 16:16:52,5,490,0,20.339,30.925,245,6643.58,1627677,0,0.018,0.957,19.955 183 | 2016-02-15 16:16:54,5,582,0,17.077,25.201,291,6744.089,1962530,0,0.003,0.952,16.644 184 | 2016-02-15 16:16:56,5,610,0,16.177,14.056,305,7013.482,2139112,0,0.005,0.979,15.731 185 | 2016-02-15 16:16:58,5,532,0,18.712,26.201,266,6538.239,1739171.5,0,0.011,0.972,18.288 186 | 2016-02-15 16:17:00,5,505,0,19.533,27.753,252.5,7253.79,1831582,0,0.032,0.956,19.097 187 | 2016-02-15 16:17:02,5,511,0,19.47,27.131,255.5,7080.526,1809074.5,0,0.02,0.986,19.031 188 | 2016-02-15 16:17:04,5,548,0,18.146,25.43,274,6790.036,1860470,0,0.005,0.934,17.706 189 | 2016-02-15 16:17:06,5,415,0,21.945,29.501,207.5,7001.058,1452719.5,0,0.002,0.986,21.489 190 | 2016-02-15 16:17:08,5,512,0,20.947,50.613,256,7217.783,1847752.5,0,0.02,2.916,20.525 191 | 2016-02-15 16:17:10,5,536,0,18.528,24.207,268,7083.256,1898312.5,0,0.021,0.97,18.09 192 | 2016-02-15 16:17:12,5,494,0,20.057,29.527,247,7291.83,1801082,0,0.022,1.071,19.569 193 | 2016-02-15 16:17:14,5,372,0,20.046,28.137,186,6906.196,1284552.5,0,0.008,1.102,19.581 194 | 2016-02-15 16:17:16,5,533,0,18.531,27.172,266.5,6554.523,1746780.5,0,0.032,1.011,18.128 195 | 2016-02-15 16:17:18,5,683,0,18.211,23.642,341.5,7375.561,2518754,0,0.015,0.99,17.783 196 | 2016-02-15 16:17:20,5,616,0,16.026,12.791,308,6740.076,2075943.5,0,0.003,0.966,15.558 197 | 2016-02-15 16:17:22,5,550,0,18.053,24.669,275,6937.987,1907946.5,0,0.004,0.978,17.629 198 | 2016-02-15 16:17:24,5,545,0,18.158,25.881,272.5,6902.481,1880926,0,0.013,0.996,17.719 199 | 2016-02-15 16:17:26,5,484,0,20.51,32.354,242,7226.289,1748762,0,0.021,0.957,20.041 200 | 2016-02-15 16:17:28,5,445,0,22.272,43.203,222.5,6827.209,1519054,0,0.016,0.993,21.876 201 | 2016-02-15 16:17:30,5,504,0,19.851,29.908,252,6786.95,1710311.5,0,0.014,0.982,19.446 202 | 2016-02-15 16:17:32,5,544,0,18.164,24.012,272,7220.675,1964023.5,0,0.026,0.982,17.728 203 | 2016-02-15 16:17:34,5,651,0,14.903,9.793,325.5,6891.054,2243038,0,0.023,0.998,14.461 204 | 2016-02-15 16:17:36,5,509,0,19.845,27.145,254.5,7098.314,1806521,0,0.022,0.965,19.397 205 | 2016-02-15 16:17:38,5,538,0,18.593,25.555,269,6962.039,1872788.5,0,0.004,0.965,18.132 206 | 2016-02-15 16:17:40,5,487,0,20.458,27.5,243.5,6963.271,1695556.5,0,0.012,0.979,20.027 207 | 2016-02-15 16:17:42,5,574,0,17.232,23.447,287,6887.045,1976582,0,0.002,0.962,16.829 208 | 2016-02-15 16:17:44,5,534,0,17.875,27.327,267,6515.637,1739675,0,0.03,0.994,17.367 209 | 2016-02-15 16:17:46,5,599,0,17.194,17.628,299.5,6554.192,1962980.5,0,0.003,1,16.785 210 | 2016-02-15 16:17:48,5,475,0,20.846,35.887,237.5,6853.259,1627649,0,0.004,0.962,20.394 211 | 2016-02-15 16:17:50,5,533,0,18.587,25.139,266.5,6841.058,1823142,0,0.017,0.979,18.176 212 | 2016-02-15 16:17:52,5,508,0,19.663,26.589,254,7447.514,1891668.5,0,0.022,1.01,19.22 213 | 2016-02-15 16:17:54,5,527,0,18.455,30.376,263.5,7547.247,1988699.5,0,0.023,1.002,17.987 214 | 2016-02-15 16:17:56,5,581,0,17.394,15.28,290.5,7141.222,2074525,0,0.015,0.986,16.954 215 | 2016-02-15 16:17:58,5,525,0,18.878,31.403,262.5,7107.358,1865681.5,0,0.021,0.994,18.419 216 | 2016-02-15 16:18:00,5,504,0,19.712,25.9,252,7198.137,1813930.5,0,0.03,1.022,19.288 217 | 2016-02-15 16:18:02,5,533,0,18.645,25.372,266.5,7151.278,1905815.5,0,0.019,0.989,18.195 218 | 2016-02-15 16:18:04,5,508,0,19.514,32.803,254,6999.868,1777966.5,0,0.006,0.978,19.075 219 | 2016-02-15 16:18:06,5,504,0,19.657,28.789,252,7164.954,1805568.5,0,0.004,0.994,19.171 220 | 2016-02-15 16:18:08,5,538,0,16.894,21.342,269,7063.368,1900046,0,0.007,0.976,16.437 221 | 2016-02-15 16:18:10,5,559,0,19.086,26.675,279.5,6888.585,1925359.5,0,0.018,0.964,18.66 222 | 2016-02-15 16:18:12,5,518,0,19.234,27.733,259,6979.384,1807660.5,0,0.019,0.986,18.849 223 | 2016-02-15 16:18:14,5,534,0,18.629,26.27,267,6977.564,1863009.5,0,0,0.983,18.159 224 | 2016-02-15 16:18:16,5,541,0,18.213,25.038,270.5,7274.362,1967715,0,0.004,0.952,17.758 225 | 2016-02-15 16:18:18,5,547,0,17.388,22.971,273.5,6925.093,1894013,0,0.016,0.963,16.98 226 | 2016-02-15 16:18:20,5,587,0,17.284,19.738,293.5,6928.835,2033613,0,0.017,0.99,16.869 227 | 2016-02-15 16:18:22,5,456,0,22.388,35.633,228,7046.357,1606569.5,0,0.011,0.998,21.95 228 | 2016-02-15 16:18:24,5,528,0,18.744,26.981,264,7442.536,1964829.5,0,0,0.955,18.294 229 | 2016-02-15 16:18:26,5,493,0,20.185,28.692,246.5,7233.185,1782980,0,0.02,0.996,19.7 230 | 2016-02-15 16:18:28,5,513,0,19.275,28.103,256.5,7635.595,1958530,0,0.018,1.016,18.774 231 | 2016-02-15 16:18:30,5,457,0,21.834,31.311,228.5,7725.433,1765261.5,0,0.018,1.018,21.383 232 | 2016-02-15 16:18:32,5,213,0,46.934,105.178,106.5,7635.272,813156.5,0,0.019,0.986,46.46 233 | 2016-02-15 16:18:34,5,501,0,19.79,35.005,250.5,7128.675,1785733,0,0,0.954,19.337 234 | 2016-02-15 16:18:36,5,584,0,15.943,13.703,292,7258.656,2119527.5,0,0.007,0.985,15.515 235 | 2016-02-15 16:18:38,5,553,0,19.007,30.485,276.5,7280.13,2012956,0,0.025,1.025,17.528 236 | 2016-02-15 16:18:40,5,412,0,24.148,41.098,206,7473.274,1539494.5,0,0.005,1.002,23.663 237 | 2016-02-15 16:18:42,5,498,0,20.046,30.083,249,6955.819,1731999,0,0.006,1.02,19.616 238 | 2016-02-15 16:18:44,5,464,0,21.362,34.068,232,6652.819,1543454,0,0.004,0.97,20.905 239 | 2016-02-15 16:18:46,5,486,0,20.42,28.928,243,6827.2,1659009.5,0,0.016,0.981,20.006 240 | 2016-02-15 16:18:48,5,594,0,15.862,11.515,297,7292.746,2165945.5,0,0.007,0.97,15.402 241 | 2016-02-15 16:18:50,5,534,0,19.442,23.504,267,6927.363,1849606,0,0.004,0.97,19.002 242 | 2016-02-15 16:18:52,5,510,0,19.522,31.974,255,7305.192,1862824,0,0.016,0.969,19.084 243 | 2016-02-15 16:18:54,5,483,0,20.511,30.431,241.5,7371.489,1780214.5,0,0.006,0.992,20.064 244 | 2016-02-15 16:18:56,5,465,0,21.404,33.164,232.5,7049.923,1639107,0,0.017,0.991,20.94 245 | 2016-02-15 16:18:58,5,519,0,19.135,31.572,259.5,7643.493,1983486.5,0,0.002,0.971,18.686 246 | 2016-02-15 16:19:00,5,537,0,18.449,24.978,268.5,6785.764,1821977.5,0,0.006,0.98,17.991 247 | 2016-02-15 16:19:02,5,551,0,18.064,26.735,275.5,6917.904,1905882.5,0,0.002,0.94,17.632 248 | 2016-02-15 16:19:04,5,549,0,17.956,22.985,274.5,7320.543,2009489,0,0.004,1.022,17.468 249 | 2016-02-15 16:19:06,5,455,0,21.945,34.138,227.5,7233.426,1645604.5,0,0.024,1.011,21.508 250 | 2016-02-15 16:19:08,5,518,0,19.139,36.988,259,6133.506,1588578,0,0.015,1.037,18.792 251 | 2016-02-15 16:19:10,5,532,0,18.414,24.919,266,7071.397,1880991.5,0,0.015,0.977,17.97 252 | 2016-02-15 16:19:12,5,535,0,18.774,27.439,267.5,7485.441,2002355.5,0,0.007,0.959,18.331 253 | 2016-02-15 16:19:14,5,600,0,15.417,9.716,300,6999.285,2099785.5,0,0.01,0.97,14.978 254 | 2016-02-15 16:19:16,5,597,0,17.752,24.718,298.5,6697.08,1999078.5,0,0.018,0.953,17.347 255 | 2016-02-15 16:19:18,5,523,0,18.939,29.716,261.5,7368.665,1926906,0,0.017,0.967,18.482 256 | 2016-02-15 16:19:20,5,501,0,19.675,28.022,250.5,7410.273,1856273.5,0,0.004,0.986,19.214 257 | 2016-02-15 16:19:22,5,527,0,19.019,26.03,263.5,7036.097,1854011.5,0,0.017,0.973,18.583 258 | 2016-02-15 16:19:24,5,494,0,19.968,39.557,247,7115.099,1757429.5,0,0.022,0.966,19.547 259 | 2016-02-15 16:19:26,5,613,0,16.181,11.741,306.5,6906.935,2116975.5,0,0.008,0.956,15.757 260 | 2016-02-15 16:19:28,5,464,0,21.06,31.368,232,7249.8,1681953.5,0,0.019,1.011,20.147 261 | 2016-02-15 16:19:30,5,527,0,19.055,26.069,263.5,6649.08,1752032.5,0,0.009,0.962,18.617 262 | 2016-02-15 16:19:32,5,562,0,17.822,26.414,281,6541.69,1838215,0,0.005,0.966,17.413 263 | 2016-02-15 16:19:34,5,504,0,19.651,33.845,252,7431.218,1872667,0,0.016,0.94,19.234 264 | 2016-02-15 16:19:36,5,554,0,17.81,23.409,277,6824.502,1890387,0,0.032,1.023,17.386 265 | 2016-02-15 16:19:38,5,608,0,16.095,13.994,304,7074.941,2150782,0,0.015,0.947,15.686 266 | 2016-02-15 16:19:40,5,516,0,19.653,27.863,258,6801.132,1754692,0,0.008,0.955,19.242 267 | 2016-02-15 16:19:42,5,407,0,24.435,75.975,203.5,6809.722,1385778.5,0,0.02,5.899,24.027 268 | 2016-02-15 16:19:44,5,541,0,18.294,26.553,270.5,6739.165,1822944,0,0.018,0.987,17.854 269 | 2016-02-15 16:19:46,5,497,0,19.966,33.1,248.5,6648.73,1652209.5,0,0.006,0.964,19.539 270 | 2016-02-15 16:19:48,5,515,0,19.32,34.627,257.5,6602.369,1700110,0,0.016,1.002,18.918 271 | 2016-02-15 16:19:50,5,566,0,15.991,14.047,283,6678.182,1889925.5,0,0.028,1.032,15.58 272 | 2016-02-15 16:19:52,5,535,0,20.254,29.615,267.5,7276.746,1946529.5,0,0.004,0.998,19.774 273 | 2016-02-15 16:19:54,5,651,0,15.111,10.358,325.5,6833.127,2224183,0,0.026,0.971,14.697 274 | 2016-02-15 16:19:56,5,495,0,20.19,32.629,247.5,7121.202,1762497.5,0,0.004,0.956,19.721 275 | 2016-02-15 16:19:58,5,534,0,18.592,23.689,267,7420.76,1981343,0,0.017,0.996,18.152 276 | 2016-02-15 16:20:00,5,540,0,18.337,26.375,270,6600.8,1782216,0,0.015,0.95,17.943 277 | 2016-02-15 16:20:02,5,511,0,19.45,27.92,255.5,7072.344,1806984,0,0.022,1.012,19.006 278 | 2016-02-15 16:20:04,5,549,0,16.53,14.82,274.5,7194.967,1975018.5,0,0.022,1.042,16.064 279 | 2016-02-15 16:20:06,5,597,0,18.022,23.914,298.5,7338.065,2190412.5,0,0,0.951,17.6 280 | 2016-02-15 16:20:08,5,488,0,20.184,34.616,244,7088.703,1729643.5,0,0.018,0.98,19.754 281 | 2016-02-15 16:20:10,5,518,0,19.299,28.526,259,7233.546,1873488.5,0,0.008,0.969,18.84 282 | 2016-02-15 16:20:12,5,541,0,18.322,24.012,270.5,7159.505,1936646,0,0.028,0.98,17.876 283 | 2016-02-15 16:20:14,5,455,0,21.648,32.512,227.5,7755.198,1764307.5,0,0.02,0.978,21.154 284 | 2016-02-15 16:20:16,5,544,0,17.893,23.58,272,6793.311,1847780.5,0,0.015,0.954,17.445 285 | 2016-02-15 16:20:18,5,612,0,16.533,15.778,306,7147.186,2187039,0,0.016,0.98,16.085 286 | 2016-02-15 16:20:20,5,501,0,19.906,27.669,250.5,6341.467,1588537.5,0,0.002,0.93,19.509 287 | 2016-02-15 16:20:22,5,529,0,18.467,26.279,264.5,7439.724,1967807,0,0.017,0.996,18.004 288 | 2016-02-15 16:20:24,5,491,0,20.554,28.345,245.5,7674.485,1884086,0,0.012,0.957,20.063 289 | 2016-02-15 16:20:26,5,432,0,22.947,38.246,216,7106.59,1535023.5,0,0,0.933,22.519 290 | 2016-02-15 16:20:28,5,496,0,20.095,29.831,248,7101.992,1761294,0,0.02,0.992,19.671 291 | 2016-02-15 16:20:30,5,612,0,16.212,11.89,306,7389.77,2261269.5,0,0.023,0.967,15.784 292 | 2016-02-15 16:20:32,5,486,0,20.21,29.537,243,7022.358,1706433,0,0.008,0.973,19.737 293 | 2016-02-15 16:20:34,5,536,0,18.651,29.676,268,7147.491,1915527.5,0,0.015,0.993,18.213 294 | 2016-02-15 16:20:36,5,477,0,20.774,31.337,238.5,7218.99,1721729,0,0,0.964,20.346 295 | 2016-02-15 16:20:38,5,527,0,18.723,30.673,263.5,6994.719,1843108.5,0,0.027,0.97,18.273 296 | 2016-02-15 16:20:40,5,524,0,18.676,28.667,262,6909.464,1810279.5,0,0.019,0.973,18.275 297 | 2016-02-15 16:20:42,5,518,0,17.616,13.254,259,8009.479,2074455,0,0.017,0.981,17.114 298 | 2016-02-15 16:20:44,5,567,0,18.102,25.652,283.5,6355.508,1801786.5,0,0.018,0.977,17.72 299 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: hugang 3 | Build-Jdk: 1.8.0_65 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/com.weibo.ngrinder/ngrinder-csv-analysis/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Feb 16 19:53:05 CST 2016 3 | version=0.0.1 4 | groupId=com.weibo.ngrinder 5 | m2e.projectName=ngrinder-csv-analysis 6 | m2e.projectLocation=/Users/hugang/myworkspace/ngrinder-csv-analysis 7 | artifactId=ngrinder-csv-analysis 8 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/com.weibo.ngrinder/ngrinder-csv-analysis/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | com.weibo.ngrinder 5 | ngrinder-csv-analysis 6 | 0.0.1 7 | war 8 | 9 | 10 | 11 | 12 | com.fasterxml.jackson.dataformat 13 | jackson-dataformat-csv 14 | 2.5.3 15 | 16 | 17 | 18 | 19 | net.sf.supercsv 20 | super-csv 21 | 2.4.0 22 | 23 | 24 | 25 | 26 | 27 | org.apache.commons 28 | commons-math3 29 | 3.6 30 | 31 | 32 | 33 | 34 | --------------------------------------------------------------------------------