/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ var showControllersOnly = false; var seriesFilter = ""; var filtersOnlySampleSeries = true; /* * Add header in statistics table to group metrics by category * format * */ function summaryTableHeader(header) { var newRow = header.insertRow(-1); newRow.className = "tablesorter-no-sort"; var cell = document.createElement('th'); cell.setAttribute("data-sorter", false); cell.colSpan = 1; cell.innerHTML = "Requests"; newRow.appendChild(cell); cell = document.createElement('th'); cell.setAttribute("data-sorter", false); cell.colSpan = 3; cell.innerHTML = "Executions"; newRow.appendChild(cell); cell = document.createElement('th'); cell.setAttribute("data-sorter", false); cell.colSpan = 7; cell.innerHTML = "Response Times (ms)"; newRow.appendChild(cell); cell = document.createElement('th'); cell.setAttribute("data-sorter", false); cell.colSpan = 1; cell.innerHTML = "Throughput"; newRow.appendChild(cell); cell = document.createElement('th'); cell.setAttribute("data-sorter", false); cell.colSpan = 2; cell.innerHTML = "Network (KB/sec)"; newRow.appendChild(cell); } /* * Populates the table identified by id parameter with the specified data and * format * */ function createTable(table, info, formatter, defaultSorts, seriesIndex, headerCreator) { var tableRef = table[0]; // Create header and populate it with data.titles array var header = tableRef.createTHead(); // Call callback is available if(headerCreator) { headerCreator(header); } var newRow = header.insertRow(-1); for (var index = 0; index < info.titles.length; index++) { var cell = document.createElement('th'); cell.innerHTML = info.titles[index]; newRow.appendChild(cell); } var tBody; // Create overall body if defined if(info.overall){ tBody = document.createElement('tbody'); tBody.className = "tablesorter-no-sort"; tableRef.appendChild(tBody); var newRow = tBody.insertRow(-1); var data = info.overall.data; for(var index=0;index < data.length; index++){ var cell = newRow.insertCell(-1); cell.innerHTML = formatter ? formatter(index, data[index]): data[index]; } } // Create regular body tBody = document.createElement('tbody'); tableRef.appendChild(tBody); var regexp; if(seriesFilter) { regexp = new RegExp(seriesFilter, 'i'); } // Populate body with data.items array for(var index=0; index < info.items.length; index++){ var item = info.items[index]; if((!regexp || filtersOnlySampleSeries && !info.supportsControllersDiscrimination || regexp.test(item.data[seriesIndex])) && (!showControllersOnly || !info.supportsControllersDiscrimination || item.isController)){ if(item.data.length > 0) { var newRow = tBody.insertRow(-1); for(var col=0; col < item.data.length; col++){ var cell = newRow.insertCell(-1); cell.innerHTML = formatter ? formatter(col, item.data[col]) : item.data[col]; } } } } // Add support of columns sort table.tablesorter({sortList : defaultSorts}); } $(document).ready(function() { // Customize table sorter default options $.extend( $.tablesorter.defaults, { theme: 'blue', cssInfoBlock: "tablesorter-no-sort", widthFixed: true, widgets: ['zebra'] }); var data = {"OkPercent": 100.0, "KoPercent": 0.0}; var dataset = [ { "label" : "FAIL", "data" : data.KoPercent, "color" : "#FF6347" }, { "label" : "PASS", "data" : data.OkPercent, "color" : "#9ACD32" }]; $.plot($("#flot-requests-summary"), dataset, { series : { pie : { show : true, radius : 1, label : { show : true, radius : 3 / 4, formatter : function(label, series) { return '