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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/*
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 DAY_MS = 86400000;
var HOUR_MS = 3600000;
var MINUTE_MS = 60000;
/**
* From https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math/round
* Licensed under https://creativecommons.org/licenses/by-sa/2.5/
*/
// Closure
(function() {
/**
* Decimal adjustment of a number.
*
* @param {String} type The type of adjustment.
* @param {Number} value The number.
* @param {Integer} exp The exponent (the 10 logarithm of the adjustment base).
* @returns {Number} The adjusted value.
*/
function decimalAdjust(type, value, exp) {
// If the exp is undefined or zero...
if (typeof exp === 'undefined' || +exp === 0) {
return Math[type](value);
}
value = +value;
exp = +exp;
// If the value is not a number or the exp is not an integer...
if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) {
return NaN;
}
// Shift
value = value.toString().split('e');
value = Math[type](+(value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
// Shift back
value = value.toString().split('e');
return +(value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
}
// Decimal round
if (!Math.round10) {
Math.round10 = function(value, exp) {
return decimalAdjust('round', value, exp);
};
}
// Decimal floor
if (!Math.floor10) {
Math.floor10 = function(value, exp) {
return decimalAdjust('floor', value, exp);
};
}
// Decimal ceil
if (!Math.ceil10) {
Math.ceil10 = function(value, exp) {
return decimalAdjust('ceil', value, exp);
};
}
})();
/*
* Suffixes the specified value with a unit
* The spaced argument defines whether a space character is introduced.
*/
function formatUnit(value, unit, spaced){
return spaced ? value + " " + unit : value + unit;
}
/*
* Gets a string representing the specified duration in milliseconds.
*
* E.g : duration = 20000100, returns "45 min 20 sec 100 ms"
*/
function formatDuration(duration, spaced) {
var type = $.type(duration);
if (type === "string")
return duration;
// Calculate each part of the string
var days = Math.floor(duration / 86400000); // 1000 * 60 * 60 * 24 = 1 day
duration %= 8640000;
var hours = Math.floor(duration / 3600000); // 1000 * 60 *60 = 1 hour
duration %= 3600000;
var minutes = Math.floor(duration / 60000); // 1000 * 60 = 1 minute
duration %= 60000;
var seconds = Math.floor(duration / 1000); // 1 second
duration %= 1000;
// Add non zero part.
var formatArray = [];
if (days > 0)
formatArray.push(formatUnit(days, " day(s)", spaced));
if (hours > 0)
formatArray.push(formatUnit(hours, " hour(s)", spaced));
if (minutes > 0)
formatArray.push(formatUnit(minutes," min", spaced));
if (seconds > 0)
formatArray.push(formatUnit(seconds, " sec", spaced));
if (duration > 0)
formatArray.push(formatUnit(duration, " ms", spaced));
// Build the string
return formatArray.join(" ");
}
/*
* Gets axis label for the specified granularity
*/
function getElapsedTimeLabel(granularity) {
return "Elapsed Time (granularity: " + formatDuration(granularity) + ")";
}
/*
* Gets time format based on granularity
*/
function getTimeFormat(granularity) {
if (granularity >= DAY_MS) {
return "%y/%m/%d";
} else if (granularity >= HOUR_MS) {
return "%m/%d %H";
} else if (granularity >= MINUTE_MS) {
return "%d %H:%M";
} else {
return "%H:%M:%S";
}
}
/*
* Gets axis label for the specified granularity
*/
function getConnectTimeLabel(granularity) {
return "Connect Time (granularity: " + formatDuration(granularity) + ")";
}
//Get the property value of an object using the specified key
//Returns the property value if all properties in the key exist; undefined
//otherwise.
function getProperty(key, obj) {
return key.split('.').reduce(function(prop, subprop){
return prop && prop[subprop];
}, obj);
}
/*
* Removes quotes from the specified string
*/
function unquote(str, quoteChar) {
quoteChar = quoteChar || '"';
if (str.length > 0 && str[0] === quoteChar && str[str.length - 1] === quoteChar)
return str.slice(1, str.length - 1);
else
return str;
};
/*
* This comparison function evaluates abscissas to sort array of coordinates.
*/
function compareByXCoordinate(coord1, coord2) {
return coord2[0] - coord1[0];
}
/*
* Followings functions and variables are used to generate statics graphs
* AND dynamics graphs (if you have the plugin)
*/
var showControllersOnly = false;
var seriesFilter = "";
var filtersOnlySampleSeries = true;
// Fixes time stamps
function fixTimeStamps(series, offset){
$.each(series, function(index, item) {
$.each(item.data, function(index, coord) {
coord[0] += offset;
});
});
}
// Check if the specified jquery object is a graph
function isGraph(object){
return object.data('plot') !== undefined;
}
// Collapse
$(function() {
$('.collapse').on('shown.bs.collapse', function(){
collapse(this, false);
}).on('hidden.bs.collapse', function(){
collapse(this, true);
});
});
$(function() {
$(".glyphicon").mousedown( function(event){
var tmp = $('.in:not(ul)');
tmp.parent().parent().parent().find(".fa-chevron-up").removeClass("fa-chevron-down").addClass("fa-chevron-down");
tmp.removeClass("in");
tmp.addClass("out");
});
});
/**
* Export graph to a PNG
*/
function exportToPNG(graphName, target) {
var plot = $("#"+graphName).data('plot');
var flotCanvas = plot.getCanvas();
var image = flotCanvas.toDataURL();
image = image.replace("image/png", "image/octet-stream");
var downloadAttrSupported = ("download" in document.createElement("a"));
if(downloadAttrSupported === true) {
target.download = graphName + ".png";
target.href = image;
}
else {
document.location.href = image;
}
}
// Override the specified graph options to fit the requirements of an overview
function prepareOverviewOptions(graphOptions){
var overviewOptions = {
series: {
shadowSize: 0,
lines: {
lineWidth: 1
},
points: {
// Show points on overview only when linked graph does not show
// lines
show: getProperty('series.lines.show', graphOptions) == false,
radius : 1
}
},
xaxis: {
ticks: 2,
axisLabel: null
},
yaxis: {
ticks: 2,
axisLabel: null
},
legend: {
show: false,
container: null
},
grid: {
hoverable: false
},
tooltip: false
};
return $.extend(true, {}, graphOptions, overviewOptions);
}
function prepareOptions(options, data) {
options.canvas = true;
var extraOptions = data.extraOptions;
if(extraOptions !== undefined){
var xOffset = options.xaxis.mode === "time" ? 28800000 : 0;
var yOffset = options.yaxis.mode === "time" ? 28800000 : 0;
if(!isNaN(extraOptions.minX))
options.xaxis.min = parseFloat(extraOptions.minX) + xOffset;
if(!isNaN(extraOptions.maxX))
options.xaxis.max = parseFloat(extraOptions.maxX) + xOffset;
if(!isNaN(extraOptions.minY))
options.yaxis.min = parseFloat(extraOptions.minY) + yOffset;
if(!isNaN(extraOptions.maxY))
options.yaxis.max = parseFloat(extraOptions.maxY) + yOffset;
}
}
// Filter, mark series and sort data
/**
* @param data
* @param noMatchColor if defined and true, series.color are not matched with index
* @param ignoreFilterParam If true we don't apply seriesFilter
*/
function prepareSeries(data, noMatchColor, ignoreFilterParam){
var result = data.result;
var ignoreFilter = ignoreFilterParam === true;
// Keep only series when needed
if(!ignoreFilter && seriesFilter && (!filtersOnlySampleSeries || result.supportsControllersDiscrimination)){
// Insensitive case matching
var regexp = new RegExp(seriesFilter, 'i');
result.series = $.grep(result.series, function(series, index){
return regexp.test(series.label);
});
}
// Keep only controllers series when supported and needed
if(result.supportsControllersDiscrimination && showControllersOnly){
result.series = $.grep(result.series, function(series, index){
return series.isController;
});
}
// Sort data and mark series
$.each(result.series, function(index, series) {
series.data.sort(compareByXCoordinate);
if(!(noMatchColor && noMatchColor===true)) {
series.color = index;
}
});
}
// Set the zoom on the specified plot object
function zoomPlot(plot, xmin, xmax, ymin, ymax){
var axes = plot.getAxes();
// Override axes min and max options
$.extend(true, axes, {
xaxis: {
options : { min: xmin, max: xmax }
},
yaxis: {
options : { min: ymin, max: ymax }
}
});
// Redraw the plot
plot.setupGrid();
plot.draw();
}
// Prepares DOM items to add zoom function on the specified graph
function setGraphZoomable(graphSelector, overviewSelector){
var graph = $(graphSelector);
var overview = $(overviewSelector);
// Ignore mouse down event
graph.bind("mousedown", function() { return false; });
overview.bind("mousedown", function() { return false; });
// Zoom on selection
graph.bind("plotselected", function (event, ranges) {
// clamp the zooming to prevent infinite zoom
if (ranges.xaxis.to - ranges.xaxis.from < 0.00001) {
ranges.xaxis.to = ranges.xaxis.from + 0.00001;
}
if (ranges.yaxis.to - ranges.yaxis.from < 0.00001) {
ranges.yaxis.to = ranges.yaxis.from + 0.00001;
}
// Do the zooming
var plot = graph.data('plot');
zoomPlot(plot, ranges.xaxis.from, ranges.xaxis.to, ranges.yaxis.from, ranges.yaxis.to);
plot.clearSelection();
// Synchronize overview selection
overview.data('plot').setSelection(ranges, true);
});
// Zoom linked graph on overview selection
overview.bind("plotselected", function (event, ranges) {
graph.data('plot').setSelection(ranges);
});
// Reset linked graph zoom when reseting overview selection
overview.bind("plotunselected", function () {
var overviewAxes = overview.data('plot').getAxes();
zoomPlot(graph.data('plot'), overviewAxes.xaxis.min, overviewAxes.xaxis.max, overviewAxes.yaxis.min, overviewAxes.yaxis.max);
});
}
// Prepares data to be consumed by plot plugins
function prepareData(series, choiceContainer, customizeSeries){
var datasets = [];
// Add only selected series to the data set
choiceContainer.find("input:checked").each(function (index, item) {
var key = $(item).attr("name");
var i = 0;
var size = series.length;
while(i < size && series[i].label != key)
i++;
if(i < size){
var currentSeries = series[i];
datasets.push(currentSeries);
if(customizeSeries)
customizeSeries(currentSeries);
}
});
return datasets;
}
/*
* Ignore case comparator
*/
function sortAlphaCaseless(a,b){
return a.toLowerCase() > b.toLowerCase() ? 1 : -1;
};
function createLegend(choiceContainer, infos) {
// Sort series by name
var keys = [];
$.each(infos.data.result.series, function(index, series){
keys.push(series.label);
});
keys.sort(sortAlphaCaseless);
// Create list of series with support of activation/deactivation
$.each(keys, function(index, key) {
var id = choiceContainer.attr('id') + index;
$('<li />')
.append($('<input id="' + id + '" name="' + key + '" type="checkbox" checked="checked" hidden />'))
.append($('<label />', { 'text': key , 'for': id }))
.appendTo(choiceContainer);
});
choiceContainer.find("label").click( function(){
if (this.style.color !== "rgb(129, 129, 129)" ){
this.style.color="#818181";
}else {
this.style.color="black";
}
$(this).parent().children().children().toggleClass("legend-disabled");
});
choiceContainer.find("label").mousedown( function(event){
event.preventDefault();
});
choiceContainer.find("label").mouseenter(function(){
this.style.cursor="pointer";
});
// Recreate graphe on series activation toggle
choiceContainer.find("input").click(function(){
infos.createGraph();
});
}
// Unchecks all boxes for "Hide all samples" functionality
function uncheckAll(id){
toggleAll(id, false);
}
// Checks all boxes for "Show all samples" functionality
function checkAll(id){
toggleAll(id, true);
}