2024-07-14 17:10:04 +02:00
|
|
|
// Common chart options
|
|
|
|
const commonChartOptions = {
|
|
|
|
chart: {backgroundColor: null, style: {color: '#FFFFFF'}, animation: false},
|
|
|
|
title: {style: {color: '#FFFFFF', fontSize: '16px'}},
|
|
|
|
subtitle: {style: {color: '#FFFFFF', fontSize: '12px'}},
|
|
|
|
xAxis: {labels: {style: {color: '#FFFFFF'}}, lineColor: '#FFFFFF', tickColor: '#FFFFFF'},
|
|
|
|
yAxis: {labels: {style: {color: '#FFFFFF'}}, gridLineColor: 'rgba(255, 255, 255, 0.1)'},
|
|
|
|
tooltip: {backgroundColor: '#1E1E1E', borderColor: '#FFFFFF', style: {color: '#FFFFFF'}},
|
|
|
|
legend: {itemStyle: {color: '#FFFFFF'}},
|
|
|
|
credits: {enabled: false},
|
|
|
|
plotOptions: {series: {animation: false}}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Highcharts global options
|
|
|
|
Highcharts.setOptions({chart: {animation: false}, plotOptions: {series: {animation: false}}});
|
|
|
|
|
|
|
|
const colors = Highcharts.getOptions().colors;
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
function getLineChartOptions(title, description, unit, maxY = null) {
|
|
|
|
return {
|
2024-07-14 17:10:04 +02:00
|
|
|
...commonChartOptions,
|
|
|
|
chart: {...commonChartOptions.chart, type: 'line', zooming: {type: 'x'}},
|
|
|
|
title: {...commonChartOptions.title, text: title},
|
|
|
|
subtitle: {...commonChartOptions.subtitle, text: description},
|
|
|
|
xAxis: {...commonChartOptions.xAxis, labels: {enabled: false}}, // Hide X-axis labels
|
|
|
|
yAxis: {...commonChartOptions.yAxis, max: maxY, labels: {...commonChartOptions.yAxis.labels, formatter: function() {return this.value.toFixed(2) + ' ' + unit;}}},
|
|
|
|
tooltip: {...commonChartOptions.tooltip, pointFormat: `<span style="color:{series.color}">{series.name}</span>: <b>{point.y:.2f} ${unit}</b><br/>`},
|
|
|
|
plotOptions: {line: {marker: {enabled: false, symbol: 'circle', radius: 1.5, states: {hover: {enabled: true}}}, lineWidth: 1}},
|
|
|
|
legend: {...commonChartOptions.legend, enabled: true},
|
2024-07-11 19:29:14 +02:00
|
|
|
series: [],
|
2024-07-14 17:10:04 +02:00
|
|
|
exporting: {buttons: {contextButton: {menuItems: ['viewFullscreen', 'printChart', 'separator', 'downloadPNG', 'downloadJPEG', 'downloadPDF', 'downloadSVG', 'separator', 'downloadCSV', 'downloadXLS']}}}
|
2024-07-11 19:29:14 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function getBarChartOptions(title, unit, maxY = null) {
|
|
|
|
return {
|
2024-07-14 17:10:04 +02:00
|
|
|
...commonChartOptions,
|
|
|
|
chart: {...commonChartOptions.chart, type: 'bar'},
|
|
|
|
title: {...commonChartOptions.title, text: title},
|
|
|
|
xAxis: {...commonChartOptions.xAxis, categories: [], title: {text: null}},
|
|
|
|
yAxis: {...commonChartOptions.yAxis, min: 0, max: maxY, title: {text: unit, align: 'high', style: {color: '#FFFFFF'}}, labels: {...commonChartOptions.yAxis.labels, formatter: function() {return this.value.toFixed(2) + ' ' + unit;}}},
|
|
|
|
tooltip: {...commonChartOptions.tooltip, valueSuffix: ' ' + unit, formatter: function() {return `<b>${this.point.category}</b>: ${this.y.toFixed(2)} ${unit}`;}},
|
|
|
|
plotOptions: {bar: {dataLabels: {enabled: true, style: {color: '#FFFFFF'}, formatter: function() {return this.y.toFixed(2) + ' ' + unit;}}}},
|
|
|
|
legend: {enabled: false},
|
2024-07-11 19:29:14 +02:00
|
|
|
series: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function createChart(chartId, title, description, unit, dataArrays, maxY = null) {
|
2024-07-14 17:10:04 +02:00
|
|
|
const options = getLineChartOptions(title, description, unit, maxY);
|
|
|
|
options.series = dataArrays.map((dataArray, index) => ({name: dataArray.label, data: dataArray.data, color: colors[index % colors.length]}));
|
2024-07-11 19:29:14 +02:00
|
|
|
Highcharts.chart(chartId, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createBarChart(chartId, title, unit, categories, data, colors, maxY = null) {
|
2024-07-14 17:10:04 +02:00
|
|
|
const options = getBarChartOptions(title, unit, maxY);
|
2024-07-11 19:29:14 +02:00
|
|
|
options.xAxis.categories = categories;
|
2024-07-14 17:10:04 +02:00
|
|
|
options.series = [{name: title, data: data, colorByPoint: true, colors: colors}];
|
2024-07-11 19:29:14 +02:00
|
|
|
Highcharts.chart(chartId, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
function calculateAverage(data) {
|
2024-07-14 17:10:04 +02:00
|
|
|
return data.reduce((acc, value) => acc + value, 0) / data.length;
|
2024-07-11 19:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function calculatePercentile(data, percentile) {
|
|
|
|
data.sort((a, b) => a - b);
|
2024-07-14 17:10:04 +02:00
|
|
|
return data[Math.ceil(percentile / 100 * data.length) - 1];
|
2024-07-11 19:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create line charts
|
|
|
|
createChart('fpsChart', 'FPS', 'More is better', 'fps', fpsDataArrays);
|
|
|
|
createChart('frameTimeChart', 'Frametime', 'Less is better', 'ms', frameTimeDataArrays);
|
|
|
|
createChart('cpuLoadChart', 'CPU Load', '', '%', cpuLoadDataArrays, 100);
|
|
|
|
createChart('gpuLoadChart', 'GPU Load', '', '%', gpuLoadDataArrays, 100);
|
|
|
|
createChart('cpuTempChart', 'CPU Temperature', '', '°C', cpuTempDataArrays);
|
|
|
|
createChart('gpuTempChart', 'GPU Temperature', '', '°C', gpuTempDataArrays);
|
|
|
|
createChart('gpuCoreClockChart', 'GPU Core Clock', '', 'MHz', gpuCoreClockDataArrays);
|
|
|
|
createChart('gpuMemClockChart', 'GPU Memory Clock', '', 'MHz', gpuMemClockDataArrays);
|
2024-07-12 15:53:20 +02:00
|
|
|
createChart('gpuVRAMUsedChart', 'GPU VRAM Usage', '', 'GB', gpuVRAMUsedDataArrays);
|
2024-07-11 19:29:14 +02:00
|
|
|
createChart('gpuPowerChart', 'GPU Power', '', 'W', gpuPowerDataArrays);
|
|
|
|
createChart('ramUsedChart', 'RAM Usage', '', 'GB', ramUsedDataArrays);
|
|
|
|
createChart('swapUsedChart', 'SWAP Usage', '', 'GB', swapUsedDataArrays);
|
|
|
|
|
|
|
|
// Calculate average CPU and GPU load
|
2024-07-14 17:10:04 +02:00
|
|
|
const cpuLoadAverages = cpuLoadDataArrays.map(dataArray => calculateAverage(dataArray.data));
|
|
|
|
const gpuLoadAverages = gpuLoadDataArrays.map(dataArray => calculateAverage(dataArray.data));
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
// Create bar charts for average CPU and GPU load
|
2024-07-14 17:10:04 +02:00
|
|
|
createBarChart('cpuLoadSummaryChart', 'Average CPU Load', '%', cpuLoadDataArrays.map(dataArray => dataArray.label), cpuLoadAverages, colors, 100);
|
|
|
|
createBarChart('gpuLoadSummaryChart', 'Average GPU Load', '%', gpuLoadDataArrays.map(dataArray => dataArray.label), gpuLoadAverages, colors, 100);
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
// Calculate and render min, max, and average FPS
|
2024-07-14 17:10:04 +02:00
|
|
|
const categories = [];
|
|
|
|
const minFPSData = [];
|
|
|
|
const avgFPSData1 = [];
|
|
|
|
const maxFPSData = [];
|
2024-07-11 19:29:14 +02:00
|
|
|
|
2024-07-14 17:10:04 +02:00
|
|
|
fpsDataArrays.forEach(dataArray => {
|
2024-07-11 19:29:14 +02:00
|
|
|
categories.push(dataArray.label);
|
2024-07-14 17:10:04 +02:00
|
|
|
minFPSData.push(calculatePercentile(dataArray.data, 1));
|
|
|
|
avgFPSData1.push(calculateAverage(dataArray.data));
|
|
|
|
maxFPSData.push(calculatePercentile(dataArray.data, 97));
|
2024-07-11 19:29:14 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
Highcharts.chart('minMaxAvgChart', {
|
2024-07-14 17:10:04 +02:00
|
|
|
...commonChartOptions,
|
|
|
|
chart: {...commonChartOptions.chart, type: 'bar'},
|
|
|
|
title: {...commonChartOptions.title, text: 'Min/Avg/Max FPS'},
|
|
|
|
subtitle: {...commonChartOptions.subtitle, text: 'More is better'},
|
|
|
|
xAxis: {...commonChartOptions.xAxis, categories: categories},
|
|
|
|
yAxis: {...commonChartOptions.yAxis, title: {text: 'FPS', align: 'high', style: {color: '#FFFFFF'}}},
|
|
|
|
tooltip: {...commonChartOptions.tooltip, valueSuffix: ' FPS', formatter: function() {return `<b>${this.series.name}</b>: ${this.y.toFixed(2)} FPS`;}},
|
|
|
|
plotOptions: {bar: {dataLabels: {enabled: true, style: {color: '#FFFFFF'}, formatter: function() {return this.y.toFixed(2) + ' fps';}}}},
|
|
|
|
legend: {...commonChartOptions.legend, reversed: true, enabled: true},
|
|
|
|
series: [{name: '97th', data: maxFPSData, color: '#00FF00'}, {name: 'AVG', data: avgFPSData1, color: '#0000FF'}, {name: '1%', data: minFPSData, color: '#FF0000'}]
|
2024-07-11 19:29:14 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Calculate average FPS for each filename
|
2024-07-14 17:10:04 +02:00
|
|
|
const avgFPSData2 = fpsDataArrays.map(dataArray => calculateAverage(dataArray.data));
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
// Calculate FPS as a percentage of the first element
|
2024-07-14 17:10:04 +02:00
|
|
|
const firstFPS = avgFPSData2[0];
|
|
|
|
const percentageFPSData = avgFPSData2.map(fps => (fps / firstFPS) * 100);
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
// Create bar chart for FPS percentage
|
|
|
|
Highcharts.chart('avgChart', {
|
2024-07-14 17:10:04 +02:00
|
|
|
...commonChartOptions,
|
|
|
|
chart: {...commonChartOptions.chart, type: 'bar'},
|
|
|
|
title: {...commonChartOptions.title, text: 'Average FPS in %'},
|
|
|
|
xAxis: {...commonChartOptions.xAxis, categories: fpsDataArrays.map(dataArray => dataArray.label)},
|
|
|
|
yAxis: {...commonChartOptions.yAxis, title: {text: 'Percentage (%)', align: 'high', style: {color: '#FFFFFF'}}},
|
|
|
|
tooltip: {...commonChartOptions.tooltip, valueSuffix: ' %', formatter: function() {return `<b>${this.point.category}</b>: ${this.y.toFixed(2)} %`;}},
|
|
|
|
plotOptions: {bar: {dataLabels: {enabled: true, style: {color: '#FFFFFF'}, formatter: function() {return this.y.toFixed(2) + ' %';}}}},
|
|
|
|
legend: {enabled: false},
|
|
|
|
series: [{name: 'FPS Percentage', data: percentageFPSData, colorByPoint: true, colors: colors}]
|
2024-07-11 19:29:14 +02:00
|
|
|
});
|
|
|
|
|
2024-07-14 16:51:34 +02:00
|
|
|
// Function to filter out the top and bottom 3% of FPS values
|
|
|
|
function filterOutliers(data) {
|
|
|
|
data.sort((a, b) => a - b);
|
2024-07-14 17:10:04 +02:00
|
|
|
return data.slice(Math.floor(data.length * 0.01), Math.ceil(data.length * 0.97));
|
2024-07-14 16:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Function to count occurrences of each FPS value
|
|
|
|
function countFPS(data) {
|
2024-07-14 17:10:04 +02:00
|
|
|
const counts = {};
|
|
|
|
data.forEach(fps => {
|
|
|
|
const roundedFPS = Math.round(fps);
|
2024-07-14 16:51:34 +02:00
|
|
|
counts[roundedFPS] = (counts[roundedFPS] || 0) + 1;
|
|
|
|
});
|
|
|
|
|
2024-07-14 17:10:04 +02:00
|
|
|
let fpsArray = Object.keys(counts).map(key => [parseInt(key), counts[key]]).sort((a, b) => a[0] - b[0]);
|
2024-07-14 16:51:34 +02:00
|
|
|
|
|
|
|
while (fpsArray.length > 100) {
|
2024-07-14 17:10:04 +02:00
|
|
|
let minDiff = Infinity;
|
|
|
|
let minIndex = -1;
|
2024-07-14 16:51:34 +02:00
|
|
|
|
2024-07-14 17:10:04 +02:00
|
|
|
for (let i = 0; i < fpsArray.length - 1; i++) {
|
|
|
|
const diff = fpsArray[i + 1][0] - fpsArray[i][0];
|
2024-07-14 16:51:34 +02:00
|
|
|
if (diff < minDiff) {
|
|
|
|
minDiff = diff;
|
|
|
|
minIndex = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fpsArray[minIndex][1] += fpsArray[minIndex + 1][1];
|
|
|
|
fpsArray[minIndex][0] = (fpsArray[minIndex][0] + fpsArray[minIndex + 1][0]) / 2;
|
|
|
|
fpsArray.splice(minIndex + 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return fpsArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate counts for each dataset after filtering outliers
|
2024-07-14 17:10:04 +02:00
|
|
|
const densityData = fpsDataArrays.map(dataArray => ({name: dataArray.label, data: countFPS(filterOutliers(dataArray.data))}));
|
2024-07-14 16:51:34 +02:00
|
|
|
|
|
|
|
// Create the chart
|
|
|
|
Highcharts.chart('densityChart', {
|
2024-07-14 17:10:04 +02:00
|
|
|
...commonChartOptions,
|
|
|
|
chart: {...commonChartOptions.chart, type: 'areaspline'},
|
|
|
|
title: {...commonChartOptions.title, text: 'FPS Density'},
|
|
|
|
xAxis: {...commonChartOptions.xAxis, title: {text: 'FPS', style: {color: '#FFFFFF'}}, labels: {style: {color: '#FFFFFF'}}}, // Show X-axis labels in white
|
|
|
|
yAxis: {...commonChartOptions.yAxis, title: {text: 'Count', style: {color: '#FFFFFF'}}},
|
|
|
|
tooltip: {...commonChartOptions.tooltip, shared: true, formatter: function() {return `<b>${this.points[0].series.name}</b>: ${this.points[0].y} points at ~${Math.round(this.points[0].x)} FPS`;}},
|
|
|
|
plotOptions: {areaspline: {fillOpacity: 0.5, marker: {enabled: false}}},
|
|
|
|
legend: {...commonChartOptions.legend, enabled: true},
|
2024-07-14 16:51:34 +02:00
|
|
|
series: densityData
|
|
|
|
});
|
|
|
|
|
2024-07-11 19:29:14 +02:00
|
|
|
function calculateSpikes(data, threshold) {
|
2024-07-14 17:10:04 +02:00
|
|
|
if (data.length < 6) throw new Error("Data length must be greater than or equal to 6.");
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
let spikeCount = 0;
|
|
|
|
|
|
|
|
function movingAverage(arr, index) {
|
2024-07-14 17:10:04 +02:00
|
|
|
const windowSize = Math.max(6, Math.ceil(arr.length * 0.05));
|
2024-07-11 19:29:14 +02:00
|
|
|
const halfWindowSize = Math.floor(windowSize / 2);
|
|
|
|
const start = Math.max(0, index - halfWindowSize);
|
|
|
|
const end = Math.min(arr.length - 1, index + halfWindowSize);
|
|
|
|
const actualWindowSize = end - start + 1;
|
|
|
|
|
|
|
|
let sum = 0;
|
2024-07-14 17:10:04 +02:00
|
|
|
for (let i = start; i <= end; i++) sum += arr[i];
|
2024-07-11 19:29:14 +02:00
|
|
|
return sum / actualWindowSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
|
const currentPoint = data[i];
|
|
|
|
const movingAvg = movingAverage(data, i);
|
|
|
|
const change = Math.abs(currentPoint - movingAvg) / movingAvg * 100;
|
2024-07-14 17:10:04 +02:00
|
|
|
if (change > threshold) spikeCount++;
|
2024-07-11 19:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (spikeCount / data.length) * 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateSpikesChart(threshold) {
|
|
|
|
document.getElementById('spikeThresholdValue').innerText = threshold + '%';
|
|
|
|
|
2024-07-14 17:10:04 +02:00
|
|
|
const spikePercentages = fpsDataArrays.map(dataArray => calculateSpikes(dataArray.data, threshold));
|
2024-07-11 19:29:14 +02:00
|
|
|
|
|
|
|
Highcharts.chart('spikesChart', {
|
2024-07-14 17:10:04 +02:00
|
|
|
...commonChartOptions,
|
|
|
|
chart: {...commonChartOptions.chart, type: 'bar'},
|
|
|
|
title: {...commonChartOptions.title, text: 'FPS Spikes'},
|
|
|
|
subtitle: {...commonChartOptions.subtitle, text: 'Less is better'},
|
|
|
|
xAxis: {...commonChartOptions.xAxis, categories: categories},
|
|
|
|
yAxis: {...commonChartOptions.yAxis, title: {text: 'Percentage (%)', align: 'high', style: {color: '#FFFFFF'}}},
|
|
|
|
tooltip: {...commonChartOptions.tooltip, valueSuffix: ' %', formatter: function() {return `<b>${this.point.category}</b>: ${this.y.toFixed(2)} %`;}},
|
|
|
|
plotOptions: {bar: {dataLabels: {enabled: true, style: {color: '#FFFFFF'}, formatter: function() {return this.y.toFixed(2) + ' %';}}}},
|
|
|
|
legend: {enabled: false},
|
|
|
|
series: [{name: 'Spike Percentage', data: spikePercentages, colorByPoint: true, colors: colors}]
|
2024-07-11 19:29:14 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initial render of spikes chart
|
|
|
|
updateSpikesChart(document.getElementById('spikeThreshold').value);
|