Most of the changes were done by PhpStorm. Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2269 lines
88 KiB
TypeScript
2269 lines
88 KiB
TypeScript
import $ from 'jquery';
|
|
import * as bootstrap from 'bootstrap';
|
|
import { AJAX } from '../../modules/ajax.ts';
|
|
import { addDatepicker, prettyProfilingNum } from '../../modules/functions.ts';
|
|
import { CommonParams } from '../../modules/common.ts';
|
|
import createProfilingChart from '../../modules/functions/createProfilingChart.ts';
|
|
import { escapeHtml } from '../../modules/functions/escape.ts';
|
|
import getImageTag from '../../modules/functions/getImageTag.ts';
|
|
import isStorageSupported from '../../modules/functions/isStorageSupported.ts';
|
|
import chartByteFormatter from '../../modules/functions/chartByteFormatter.ts';
|
|
|
|
/**
|
|
* @fileoverview Javascript functions used in server status monitor page
|
|
* @name Server Status Monitor
|
|
*
|
|
* @requires jQueryUI
|
|
*/
|
|
|
|
let runtime: { [k: string]: any } = {};
|
|
let serverTimeDiff;
|
|
let serverOs;
|
|
let isSuperUser;
|
|
let serverDbIsLocal;
|
|
let chartSize;
|
|
let monitorSettings;
|
|
|
|
function serverResponseError () {
|
|
bootstrap.Modal.getOrCreateInstance('#serverResponseErrorModal').show();
|
|
}
|
|
|
|
function serverResponseErrorModalReloadEventHandler () {
|
|
window.location.reload();
|
|
}
|
|
|
|
/**
|
|
* Destroys all monitor related resources
|
|
*/
|
|
function destroyGrid () {
|
|
if (runtime.charts) {
|
|
$.each(runtime.charts, function (key, value) {
|
|
try {
|
|
value.chart.destroy();
|
|
} catch (err) {
|
|
// continue regardless of error
|
|
}
|
|
});
|
|
}
|
|
|
|
try {
|
|
runtime.refreshRequest.abort();
|
|
} catch (err) {
|
|
// continue regardless of error
|
|
}
|
|
|
|
try {
|
|
clearTimeout(runtime.refreshTimeout);
|
|
} catch (err) {
|
|
// continue regardless of error
|
|
}
|
|
|
|
$('#chartGrid').html('');
|
|
runtime.charts = null;
|
|
runtime.chartAI = 0;
|
|
monitorSettings = null;
|
|
}
|
|
|
|
AJAX.registerOnload('server/status/monitor.js', function () {
|
|
const $jsDataForm = $('#js_data');
|
|
serverTimeDiff = new Date().getTime() - Number($jsDataForm.find('input[name=server_time]').val());
|
|
serverOs = $jsDataForm.find('input[name=server_os]').val();
|
|
isSuperUser = $jsDataForm.find('input[name=is_superuser]').val();
|
|
serverDbIsLocal = $jsDataForm.find('input[name=server_db_isLocal]').val();
|
|
});
|
|
|
|
/**
|
|
* Unbind all event handlers before tearing down a page
|
|
*/
|
|
AJAX.registerTeardown('server/status/monitor.js', function () {
|
|
$('#emptyDialog').remove();
|
|
});
|
|
|
|
/**
|
|
* Popup behaviour
|
|
*/
|
|
AJAX.registerOnload('server/status/monitor.js', function () {
|
|
$('<div></div>')
|
|
.attr('id', 'emptyDialog')
|
|
.appendTo('#page_content');
|
|
});
|
|
|
|
AJAX.registerTeardown('server/status/monitor.js', function () {
|
|
const serverResponseErrorModalReloadButton = document.getElementById('serverResponseErrorModalReloadButton');
|
|
serverResponseErrorModalReloadButton?.removeEventListener('click', serverResponseErrorModalReloadEventHandler);
|
|
|
|
$('#monitorRearrangeChartButton').off('click');
|
|
$('#monitorDoneRearrangeChartButton').off('click');
|
|
$('#monitorChartColumnsSelect').off('change');
|
|
$('#monitorChartRefreshRateSelect').off('change');
|
|
$('#monitorAddNewChartButton').off('click');
|
|
$('#monitorExportConfigButton').off('click');
|
|
$('#monitorResetConfigButton').off('click');
|
|
$('#monitorPauseResumeButton').off('click');
|
|
$('input[name="chartType"]').off('click');
|
|
$('input[name="useDivisor"]').off('click');
|
|
$('input[name="useUnit"]').off('click');
|
|
$('select[name="varChartList"]').off('click');
|
|
$('a[href="#kibDivisor"]').off('click');
|
|
$('a[href="#mibDivisor"]').off('click');
|
|
$('a[href="#submitClearSeries"]').off('click');
|
|
$('a[href="#submitAddSeries"]').off('click');
|
|
// $("input#variableInput").destroy();
|
|
$('#chartPreset').off('click');
|
|
$('#chartStatusVar').off('click');
|
|
destroyGrid();
|
|
});
|
|
|
|
AJAX.registerOnload('server/status/monitor.js', function () {
|
|
const serverResponseErrorModalReloadButton = document.getElementById('serverResponseErrorModalReloadButton');
|
|
serverResponseErrorModalReloadButton?.addEventListener('click', serverResponseErrorModalReloadEventHandler);
|
|
|
|
$('#loadingMonitorIcon').remove();
|
|
// Codemirror is loaded on demand so we might need to initialize it
|
|
if (! window.codeMirrorEditor) {
|
|
const $elm = ($('#sqlquery') as JQuery<HTMLTextAreaElement>);
|
|
if ($elm.length > 0 && typeof window.CodeMirror !== 'undefined') {
|
|
window.codeMirrorEditor = window.CodeMirror.fromTextArea(
|
|
$elm[0],
|
|
{
|
|
lineNumbers: true,
|
|
// @ts-ignore
|
|
matchBrackets: true,
|
|
indentUnit: 4,
|
|
mode: 'text/x-mysql',
|
|
lineWrapping: true
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
// Timepicker is loaded on demand so we need to initialize
|
|
// datetime fields from the 'load log' dialog
|
|
$('#logAnalyseDialog').find('.datetimefield').each(function () {
|
|
addDatepicker($(this));
|
|
});
|
|
|
|
/** ** Monitor charting implementation ****/
|
|
/* Saves the previous ajax response for differential values */
|
|
let oldChartData = null;
|
|
// Holds about to be created chart
|
|
let newChart = null;
|
|
let chartSpacing;
|
|
|
|
// Whenever the monitor object (runtime.charts) or the settings object
|
|
// (monitorSettings) changes in a way incompatible to the previous version,
|
|
// increase this number. It will reset the users monitor and settings object
|
|
// in their localStorage to the default configuration
|
|
const monitorProtocolVersion = '1.0';
|
|
|
|
// Runtime parameter of the monitor, is being fully set in initGrid()
|
|
runtime = {
|
|
// Holds all visible charts in the grid
|
|
charts: null,
|
|
// Stores the timeout handler so it can be cleared
|
|
refreshTimeout: null,
|
|
// Stores the GET request to refresh the charts
|
|
refreshRequest: null,
|
|
// Chart auto increment
|
|
chartAI: 0,
|
|
// To play/pause the monitor
|
|
redrawCharts: false,
|
|
// Object that contains a list of nodes that need to be retrieved
|
|
// from the server for chart updates
|
|
dataList: [],
|
|
// Current max points per chart (needed for auto calculation)
|
|
gridMaxPoints: 20,
|
|
// displayed time frame
|
|
xmin: -1,
|
|
xmax: -1
|
|
};
|
|
|
|
monitorSettings = null;
|
|
|
|
const defaultMonitorSettings = {
|
|
columns: 3,
|
|
chartSize: { width: 295, height: 250 },
|
|
// Max points in each chart. Settings it to 'auto' sets
|
|
// gridMaxPoints to (chartwidth - 40) / 12
|
|
gridMaxPoints: 'auto',
|
|
/* Refresh rate of all grid charts in ms */
|
|
gridRefresh: 5000,
|
|
};
|
|
|
|
// Allows drag and drop rearrange and print/edit icons on charts
|
|
let editMode = false;
|
|
|
|
/* List of preconfigured charts that the user may select */
|
|
const presetCharts: { [p: string]: any } = {
|
|
// Query cache efficiency
|
|
'qce': {
|
|
title: window.Messages.strQueryCacheEfficiency,
|
|
series: [
|
|
{
|
|
label: window.Messages.strQueryCacheEfficiency,
|
|
},
|
|
],
|
|
nodes: [
|
|
{
|
|
dataPoints: [{ type: 'statusvar', name: 'Qcache_hits' }, { type: 'statusvar', name: 'Com_select' }],
|
|
transformFn: 'qce',
|
|
},
|
|
],
|
|
maxYLabel: 0,
|
|
},
|
|
// Query cache usage
|
|
'qcu': {
|
|
title: window.Messages.strQueryCacheUsage,
|
|
series: [
|
|
{
|
|
label: window.Messages.strQueryCacheUsed,
|
|
},
|
|
],
|
|
nodes: [
|
|
{
|
|
dataPoints: [
|
|
{ type: 'statusvar', name: 'Qcache_free_memory' }, {
|
|
type: 'servervar',
|
|
name: 'query_cache_size',
|
|
},
|
|
],
|
|
transformFn: 'qcu',
|
|
},
|
|
],
|
|
maxYLabel: 0,
|
|
},
|
|
};
|
|
|
|
/* Add OS specific system info charts to the preset chart list */
|
|
switch (serverOs) {
|
|
case 'WINNT':
|
|
$.extend(presetCharts, {
|
|
'cpu': {
|
|
title: window.Messages.strSystemCPUUsage,
|
|
series: [
|
|
{
|
|
label: window.Messages.strAverageLoad
|
|
}
|
|
],
|
|
nodes: [
|
|
{
|
|
dataPoints: [{ type: 'cpu', name: 'loadavg' }]
|
|
}
|
|
],
|
|
maxYLabel: 100
|
|
},
|
|
|
|
'memory': {
|
|
title: window.Messages.strSystemMemory,
|
|
series: [
|
|
{
|
|
dataType: 'memory',
|
|
label: window.Messages.strUsedMemory,
|
|
fill: true
|
|
}, {
|
|
label: window.Messages.strFreeMemory,
|
|
fill: true
|
|
}
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024 }
|
|
],
|
|
maxYLabel: 0
|
|
},
|
|
|
|
'swap': {
|
|
title: window.Messages.strSystemSwap,
|
|
series: [
|
|
{
|
|
label: window.Messages.strUsedSwap,
|
|
fill: true
|
|
}, {
|
|
label: window.Messages.strFreeSwap,
|
|
fill: true
|
|
}
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024 }
|
|
],
|
|
maxYLabel: 0
|
|
}
|
|
});
|
|
|
|
break;
|
|
|
|
case 'Linux':
|
|
$.extend(presetCharts, {
|
|
'cpu': {
|
|
title: window.Messages.strSystemCPUUsage,
|
|
series: [
|
|
{
|
|
label: window.Messages.strAverageLoad
|
|
}
|
|
],
|
|
nodes: [{ dataPoints: [{ type: 'cpu', name: 'irrelevant' }], transformFn: 'cpu-linux' }],
|
|
maxYLabel: 0
|
|
},
|
|
'memory': {
|
|
title: window.Messages.strSystemMemory,
|
|
series: [
|
|
{ label: window.Messages.strBufferedMemory, fill: true },
|
|
{ label: window.Messages.strUsedMemory, fill: true },
|
|
{ label: window.Messages.strCachedMemory, fill: true },
|
|
{ label: window.Messages.strFreeMemory, fill: true }
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'memory', name: 'Buffers' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'Cached' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024 }
|
|
],
|
|
maxYLabel: 0
|
|
},
|
|
'swap': {
|
|
title: window.Messages.strSystemSwap,
|
|
series: [
|
|
{ label: window.Messages.strCachedSwap, fill: true },
|
|
{ label: window.Messages.strUsedSwap, fill: true },
|
|
{ label: window.Messages.strFreeSwap, fill: true }
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapCached' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024 }
|
|
],
|
|
maxYLabel: 0
|
|
}
|
|
});
|
|
|
|
break;
|
|
|
|
case 'SunOS':
|
|
$.extend(presetCharts, {
|
|
'cpu': {
|
|
title: window.Messages.strSystemCPUUsage,
|
|
series: [
|
|
{
|
|
label: window.Messages.strAverageLoad
|
|
}
|
|
],
|
|
nodes: [
|
|
{
|
|
dataPoints: [{ type: 'cpu', name: 'loadavg' }]
|
|
}
|
|
],
|
|
maxYLabel: 0
|
|
},
|
|
'memory': {
|
|
title: window.Messages.strSystemMemory,
|
|
series: [
|
|
{ label: window.Messages.strUsedMemory, fill: true },
|
|
{ label: window.Messages.strFreeMemory, fill: true }
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024 }
|
|
],
|
|
maxYLabel: 0
|
|
},
|
|
'swap': {
|
|
title: window.Messages.strSystemSwap,
|
|
series: [
|
|
{ label: window.Messages.strUsedSwap, fill: true },
|
|
{ label: window.Messages.strFreeSwap, fill: true }
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 },
|
|
{ dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024 }
|
|
],
|
|
maxYLabel: 0
|
|
}
|
|
});
|
|
|
|
break;
|
|
}
|
|
|
|
// Default setting for the chart grid
|
|
const defaultChartGrid: { [p: string]: any } = {
|
|
'c0': {
|
|
title: window.Messages.strQuestions,
|
|
series: [{ label: window.Messages.strQuestions }],
|
|
nodes: [{ dataPoints: [{ type: 'statusvar', name: 'Questions' }], display: 'differential' }],
|
|
maxYLabel: 0,
|
|
},
|
|
'c1': {
|
|
title: window.Messages.strChartConnectionsTitle,
|
|
series: [
|
|
{ label: window.Messages.strConnections },
|
|
{ label: window.Messages.strProcesses },
|
|
],
|
|
nodes: [
|
|
{ dataPoints: [{ type: 'statusvar', name: 'Connections' }], display: 'differential' },
|
|
{ dataPoints: [{ type: 'proc', name: 'processes' }] },
|
|
],
|
|
maxYLabel: 0,
|
|
},
|
|
'c2': {
|
|
title: window.Messages.strTraffic,
|
|
series: [
|
|
{ label: window.Messages.strBytesSent },
|
|
{ label: window.Messages.strBytesReceived },
|
|
],
|
|
nodes: [
|
|
{
|
|
dataPoints: [{ type: 'statusvar', name: 'Bytes_sent' }],
|
|
display: 'differential',
|
|
valueDivisor: 1024,
|
|
},
|
|
{
|
|
dataPoints: [{ type: 'statusvar', name: 'Bytes_received' }],
|
|
display: 'differential',
|
|
valueDivisor: 1024,
|
|
},
|
|
],
|
|
maxYLabel: 0,
|
|
},
|
|
};
|
|
|
|
// Server is localhost => We can add cpu/memory/swap to the default chart
|
|
if (serverDbIsLocal && typeof presetCharts.cpu !== 'undefined') {
|
|
defaultChartGrid.c3 = presetCharts.cpu;
|
|
defaultChartGrid.c4 = presetCharts.memory;
|
|
defaultChartGrid.c5 = presetCharts.swap;
|
|
}
|
|
|
|
$('#monitorRearrangeChartButton').on('click', function (event) {
|
|
event.preventDefault();
|
|
editMode = true;
|
|
|
|
$('#monitorRearrangeChartButton').addClass('d-none');
|
|
$('#monitorDoneRearrangeChartButton').removeClass('d-none');
|
|
|
|
$('#chartGrid').sortableTable({
|
|
ignoreRect: {
|
|
top: 8,
|
|
left: chartSize.width - 63,
|
|
width: 54,
|
|
height: 24
|
|
}
|
|
});
|
|
|
|
saveMonitor(); // Save settings
|
|
|
|
return false;
|
|
});
|
|
|
|
$('#monitorDoneRearrangeChartButton').on('click', function (event) {
|
|
editMode = false;
|
|
$('#chartGrid').sortableTable('destroy');
|
|
saveMonitor();
|
|
$('#monitorRearrangeChartButton').removeClass('d-none');
|
|
$('#monitorDoneRearrangeChartButton').addClass('d-none');
|
|
});
|
|
|
|
// global settings
|
|
($('#monitorChartColumnsSelect') as JQuery<HTMLSelectElement>).on('change', function () {
|
|
monitorSettings.columns = parseInt(this.value, 10);
|
|
|
|
calculateChartSize();
|
|
// Empty cells should keep their size so you can drop onto them
|
|
$('#chartGrid').find('tr td').css('width', chartSize.width + 'px');
|
|
$('#chartGrid').find('.monitorChart').css({
|
|
width: chartSize.width + 'px',
|
|
height: chartSize.height + 'px'
|
|
});
|
|
|
|
/* Reorder all charts that it fills all column cells */
|
|
let numColumns;
|
|
let $tr = $('#chartGrid').find('tr').first();
|
|
|
|
const tempManageCols = function () {
|
|
if (numColumns > monitorSettings.columns) {
|
|
if ($tr.next().length === 0) {
|
|
$tr.after('<tr></tr>');
|
|
}
|
|
|
|
$tr.next().prepend($(this));
|
|
}
|
|
|
|
numColumns++;
|
|
};
|
|
|
|
const tempAddCol = function () {
|
|
if ($(this).next().length !== 0) {
|
|
$(this).append($(this).next().find('td').first());
|
|
}
|
|
};
|
|
|
|
while ($tr.length !== 0) {
|
|
numColumns = 1;
|
|
// To many cells in one row => put into next row
|
|
$tr.find('td').each(tempManageCols);
|
|
|
|
// To little cells in one row => for each cell to little,
|
|
// move all cells backwards by 1
|
|
if ($tr.next().length > 0) {
|
|
const cnt = monitorSettings.columns - $tr.find('td').length;
|
|
for (let i = 0; i < cnt; i++) {
|
|
$tr.append($tr.next().find('td').first());
|
|
$tr.nextAll().each(tempAddCol);
|
|
}
|
|
}
|
|
|
|
$tr = $tr.next();
|
|
}
|
|
|
|
if (monitorSettings.gridMaxPoints === 'auto') {
|
|
runtime.gridMaxPoints = Math.round((chartSize.width - 40) / 12);
|
|
}
|
|
|
|
runtime.xmin = new Date().getTime() - serverTimeDiff - runtime.gridMaxPoints * monitorSettings.gridRefresh;
|
|
runtime.xmax = new Date().getTime() - serverTimeDiff + monitorSettings.gridRefresh;
|
|
|
|
if (editMode) {
|
|
$('#chartGrid').sortableTable('refresh');
|
|
}
|
|
|
|
refreshChartGrid();
|
|
saveMonitor(); // Save settings
|
|
});
|
|
|
|
($('#monitorChartRefreshRateSelect') as JQuery<HTMLSelectElement>).on('change', function () {
|
|
monitorSettings.gridRefresh = parseInt(this.value, 10) * 1000;
|
|
clearTimeout(runtime.refreshTimeout);
|
|
|
|
if (runtime.refreshRequest) {
|
|
runtime.refreshRequest.abort();
|
|
}
|
|
|
|
runtime.xmin = new Date().getTime() - serverTimeDiff - runtime.gridMaxPoints * monitorSettings.gridRefresh;
|
|
// fixing chart shift towards left on refresh rate change
|
|
// runtime.xmax = new Date().getTime() - serverTimeDiff + monitorSettings.gridRefresh;
|
|
runtime.refreshTimeout = setTimeout(refreshChartGrid, monitorSettings.gridRefresh);
|
|
|
|
saveMonitor(); // Save settings
|
|
});
|
|
|
|
$('#monitorAddNewChartButton').on('click', function (event) {
|
|
$('#addChartButton').on('click', function () {
|
|
const type = $('input[name="chartType"]:checked').val();
|
|
|
|
if (type === 'preset') {
|
|
newChart = presetCharts[$('#addChartModal').find('select[name="presetCharts"]').prop('value')];
|
|
} else {
|
|
// If user builds their own chart, it's being set/updated
|
|
// each time they add a series
|
|
// So here we only warn if they didn't add a series yet
|
|
if (! newChart || ! newChart.nodes || newChart.nodes.length === 0) {
|
|
alert(window.Messages.strAddOneSeriesWarning);
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
newChart.title = $('input[name="chartTitle"]').val();
|
|
// Add a cloned object to the chart grid
|
|
addChart($.extend(true, {}, newChart));
|
|
|
|
newChart = null;
|
|
|
|
saveMonitor(); // Save settings
|
|
|
|
$('#closeModalButton').off('click');
|
|
$('#addChartButton').off('click');
|
|
});
|
|
|
|
$('#closeModalButton').on('click', function () {
|
|
newChart = null;
|
|
$('span#clearSeriesLink').hide();
|
|
$('#seriesPreview').html('');
|
|
$('#closeModalButton').off('click');
|
|
$('#addChartButton').off('click');
|
|
});
|
|
|
|
const $presetList = $('#addChartModal').find('select[name="presetCharts"]');
|
|
if ($presetList.html().length === 0) {
|
|
$.each(presetCharts, function (key, value) {
|
|
$presetList.append('<option value="' + key + '">' + value.title + '</option>');
|
|
});
|
|
|
|
$presetList.on('change', function () {
|
|
$('input[name="chartTitle"]').val(
|
|
$presetList.find(':selected').text()
|
|
);
|
|
|
|
$('#chartPreset').prop('checked', true);
|
|
});
|
|
|
|
$('#chartPreset').on('click', function () {
|
|
$('input[name="chartTitle"]').val(
|
|
$presetList.find(':selected').text()
|
|
);
|
|
});
|
|
|
|
$('#chartStatusVar').on('click', function () {
|
|
$('input[name="chartTitle"]').val(
|
|
$('#chartSeries').find(':selected').text().replace(/_/g, ' ')
|
|
);
|
|
});
|
|
|
|
$('#chartSeries').on('change', function () {
|
|
$('input[name="chartTitle"]').val(
|
|
$('#chartSeries').find(':selected').text().replace(/_/g, ' ')
|
|
);
|
|
});
|
|
}
|
|
|
|
$('#addChartModal').modal('show');
|
|
|
|
$('#seriesPreview').html('<i>' + window.Messages.strNone + '</i>');
|
|
});
|
|
|
|
$('#monitorExportConfigButton').on('click', function () {
|
|
const gridCopy = {};
|
|
$.each(runtime.charts, function (key, elem) {
|
|
gridCopy[key] = {};
|
|
gridCopy[key].nodes = elem.nodes;
|
|
gridCopy[key].series = elem.series;
|
|
gridCopy[key].settings = elem.settings;
|
|
gridCopy[key].title = elem.title;
|
|
gridCopy[key].maxYLabel = elem.maxYLabel;
|
|
});
|
|
|
|
const exportData = {
|
|
monitorCharts: gridCopy,
|
|
monitorSettings: monitorSettings,
|
|
};
|
|
|
|
let blob = new Blob([JSON.stringify(exportData)], { type: 'application/octet-stream' });
|
|
let url = null;
|
|
const fileName = 'monitor-config.json';
|
|
// @ts-ignore
|
|
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
|
|
// @ts-ignore
|
|
window.navigator.msSaveOrOpenBlob(blob, fileName);
|
|
} else {
|
|
url = URL.createObjectURL(blob);
|
|
window.location.href = url;
|
|
}
|
|
|
|
setTimeout(function () {
|
|
// For some browsers it is necessary to delay revoking the ObjectURL
|
|
if (url !== null) {
|
|
window.URL.revokeObjectURL(url);
|
|
}
|
|
|
|
url = undefined;
|
|
blob = undefined;
|
|
}, 100);
|
|
});
|
|
|
|
function monitorImportConfigImportEventHandler () {
|
|
const input = ($('#monitorImportConfigModal').find('#import_file') as JQuery<HTMLInputElement>)[0];
|
|
const reader = new FileReader();
|
|
|
|
reader.onerror = function (event) {
|
|
alert(window.Messages.strFailedParsingConfig + '\n' + event.target.error.code);
|
|
};
|
|
|
|
reader.onload = function (e) {
|
|
const data = (e.target.result as string);
|
|
let json = null;
|
|
// Try loading config
|
|
try {
|
|
json = JSON.parse(data);
|
|
} catch (err) {
|
|
alert(window.Messages.strFailedParsingConfig);
|
|
bootstrap.Modal.getOrCreateInstance('#monitorImportConfigModal').hide();
|
|
|
|
return;
|
|
}
|
|
|
|
// Basic check, is this a monitor config json?
|
|
if (! json || ! json.monitorCharts || ! json.monitorCharts) {
|
|
alert(window.Messages.strFailedParsingConfig);
|
|
bootstrap.Modal.getOrCreateInstance('#monitorImportConfigModal').hide();
|
|
|
|
return;
|
|
}
|
|
|
|
// If json ok, try applying config
|
|
try {
|
|
if (isStorageSupported('localStorage')) {
|
|
window.localStorage.monitorCharts = JSON.stringify(json.monitorCharts);
|
|
window.localStorage.monitorSettings = JSON.stringify(json.monitorSettings);
|
|
}
|
|
|
|
rebuildGrid();
|
|
} catch (err) {
|
|
alert(window.Messages.strFailedBuildingGrid);
|
|
// If an exception is thrown, load default again
|
|
if (isStorageSupported('localStorage')) {
|
|
window.localStorage.removeItem('monitorCharts');
|
|
window.localStorage.removeItem('monitorSettings');
|
|
}
|
|
|
|
rebuildGrid();
|
|
}
|
|
|
|
bootstrap.Modal.getOrCreateInstance('#monitorImportConfigModal').hide();
|
|
};
|
|
|
|
if (input.files[0]) {
|
|
reader.readAsText(input.files[0]);
|
|
}
|
|
}
|
|
|
|
const monitorImportConfigModal = document.getElementById('monitorImportConfigModal');
|
|
monitorImportConfigModal.addEventListener('shown.bs.modal', function () {
|
|
const monitorImportConfigImportButton = document.getElementById('monitorImportConfigImportButton');
|
|
monitorImportConfigImportButton?.addEventListener('click', monitorImportConfigImportEventHandler);
|
|
});
|
|
|
|
monitorImportConfigModal.addEventListener('hidden.bs.modal', function () {
|
|
const monitorImportConfigImportButton = document.getElementById('monitorImportConfigImportButton');
|
|
monitorImportConfigImportButton?.removeEventListener('click', monitorImportConfigImportEventHandler);
|
|
});
|
|
|
|
$('#monitorResetConfigButton').on('click', function () {
|
|
if (isStorageSupported('localStorage')) {
|
|
window.localStorage.removeItem('monitorCharts');
|
|
window.localStorage.removeItem('monitorSettings');
|
|
window.localStorage.removeItem('monitorVersion');
|
|
}
|
|
|
|
$(this).hide();
|
|
rebuildGrid();
|
|
});
|
|
|
|
$('#monitorPauseResumeButton').on('click', function () {
|
|
runtime.redrawCharts = ! runtime.redrawCharts;
|
|
if (! runtime.redrawCharts) {
|
|
$(this).html(getImageTag('play') + window.Messages.strResumeMonitor);
|
|
} else {
|
|
$(this).html(getImageTag('pause') + window.Messages.strPauseMonitor);
|
|
if (! runtime.charts) {
|
|
initGrid();
|
|
}
|
|
}
|
|
});
|
|
|
|
const $dialog = $('#monitorInstructionsModal');
|
|
|
|
function loadLogVars (getvars = undefined) {
|
|
const vars = {
|
|
'ajax_request': true,
|
|
'server': CommonParams.get('server'),
|
|
};
|
|
if (getvars) {
|
|
$.extend(vars, getvars);
|
|
}
|
|
|
|
$.post('index.php?route=/server/status/monitor/log-vars', vars,
|
|
function (data) {
|
|
let logVars;
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
logVars = data.message;
|
|
} else {
|
|
bootstrap.Modal.getOrCreateInstance('#monitorInstructionsModal').hide();
|
|
serverResponseError();
|
|
|
|
return;
|
|
}
|
|
|
|
let icon = getImageTag('s_success');
|
|
let msg = '';
|
|
let str = '';
|
|
|
|
if (logVars.general_log === 'ON') {
|
|
if (logVars.slow_query_log === 'ON') {
|
|
msg = window.Messages.strBothLogOn;
|
|
} else {
|
|
msg = window.Messages.strGenLogOn;
|
|
}
|
|
}
|
|
|
|
if (msg.length === 0 && logVars.slow_query_log === 'ON') {
|
|
msg = window.Messages.strSlowLogOn;
|
|
}
|
|
|
|
if (msg.length === 0) {
|
|
icon = getImageTag('s_error');
|
|
msg = window.Messages.strBothLogOff;
|
|
}
|
|
|
|
str = '<b>' + window.Messages.strCurrentSettings + '</b><br><div class="smallIndent">';
|
|
str += icon + msg + '<br>';
|
|
|
|
if (logVars.log_output !== 'TABLE') {
|
|
str += getImageTag('s_error') + ' ' + window.Messages.strLogOutNotTable + '<br>';
|
|
} else {
|
|
str += getImageTag('s_success') + ' ' + window.Messages.strLogOutIsTable + '<br>';
|
|
}
|
|
|
|
if (logVars.slow_query_log === 'ON') {
|
|
if (logVars.long_query_time > 2) {
|
|
str += getImageTag('s_attention') + ' ';
|
|
str += window.sprintf(window.Messages.strSmallerLongQueryTimeAdvice, logVars.long_query_time);
|
|
str += '<br>';
|
|
}
|
|
|
|
if (logVars.long_query_time < 2) {
|
|
str += getImageTag('s_success') + ' ';
|
|
str += window.sprintf(window.Messages.strLongQueryTimeSet, logVars.long_query_time);
|
|
str += '<br>';
|
|
}
|
|
}
|
|
|
|
str += '</div>';
|
|
|
|
if (isSuperUser) {
|
|
str += '<p></p><b>' + window.Messages.strChangeSettings + '</b>';
|
|
str += '<div class="smallIndent">';
|
|
str += window.Messages.strSettingsAppliedGlobal + '<br>';
|
|
|
|
let varValue: string | number = 'TABLE';
|
|
if (logVars.log_output === 'TABLE') {
|
|
varValue = 'FILE';
|
|
}
|
|
|
|
str += '- <a class="set" href="#log_output-' + varValue + '">';
|
|
str += window.sprintf(window.Messages.strSetLogOutput, varValue);
|
|
str += ' </a><br>';
|
|
|
|
if (logVars.general_log !== 'ON') {
|
|
str += '- <a class="set" href="#general_log-ON">';
|
|
str += window.sprintf(window.Messages.strEnableVar, 'general_log');
|
|
str += ' </a><br>';
|
|
} else {
|
|
str += '- <a class="set" href="#general_log-OFF">';
|
|
str += window.sprintf(window.Messages.strDisableVar, 'general_log');
|
|
str += ' </a><br>';
|
|
}
|
|
|
|
if (logVars.slow_query_log !== 'ON') {
|
|
str += '- <a class="set" href="#slow_query_log-ON">';
|
|
str += window.sprintf(window.Messages.strEnableVar, 'slow_query_log');
|
|
str += ' </a><br>';
|
|
} else {
|
|
str += '- <a class="set" href="#slow_query_log-OFF">';
|
|
str += window.sprintf(window.Messages.strDisableVar, 'slow_query_log');
|
|
str += ' </a><br>';
|
|
}
|
|
|
|
varValue = 5;
|
|
if (logVars.long_query_time > 2) {
|
|
varValue = 1;
|
|
}
|
|
|
|
str += '- <a class="set" href="#long_query_time-' + varValue + '">';
|
|
str += window.sprintf(window.Messages.setSetLongQueryTime, varValue);
|
|
str += ' </a><br>';
|
|
} else {
|
|
str += window.Messages.strNoSuperUser + '<br>';
|
|
}
|
|
|
|
str += '</div>';
|
|
|
|
$dialog.find('div.monitorUse').toggle(
|
|
logVars.log_output === 'TABLE' && (logVars.slow_query_log === 'ON' || logVars.general_log === 'ON'),
|
|
);
|
|
|
|
$dialog.find('div.ajaxContent').html(str);
|
|
$dialog.find('img.ajaxIcon').hide();
|
|
$dialog.find('a.set').on('click', function () {
|
|
const nameValue = $(this).attr('href').split('-');
|
|
loadLogVars({ varName: nameValue[0].substring(1), varValue: nameValue[1] });
|
|
$dialog.find('img.ajaxIcon').show();
|
|
});
|
|
},
|
|
);
|
|
}
|
|
|
|
const monitorInstructionsModal = document.getElementById('monitorInstructionsModal');
|
|
monitorInstructionsModal.addEventListener('shown.bs.modal', function () {
|
|
loadLogVars();
|
|
});
|
|
|
|
($('input[name="chartType"]') as JQuery<HTMLInputElement>).on('change', function () {
|
|
$('#chartVariableSettings').toggle(this.checked && this.value === 'variable');
|
|
const title = $('input[name="chartTitle"]').val();
|
|
if (title === window.Messages.strChartTitle ||
|
|
title === $('label[for="' + $('input[name="chartTitle"]').data('lastRadio') + '"]').text()
|
|
) {
|
|
$('input[name="chartTitle"]')
|
|
.data('lastRadio', $(this).attr('id'))
|
|
.val($('label[for="' + $(this).attr('id') + '"]').text());
|
|
}
|
|
});
|
|
|
|
($('input[name="useDivisor"]') as JQuery<HTMLInputElement>).on('change', function () {
|
|
$('span.divisorInput').toggle(this.checked);
|
|
});
|
|
|
|
($('input[name="useUnit"]') as JQuery<HTMLInputElement>).on('change', function () {
|
|
$('span.unitInput').toggle(this.checked);
|
|
});
|
|
|
|
($('select[name="varChartList"]') as JQuery<HTMLSelectElement>).on('change', function () {
|
|
if (this.selectedIndex !== 0) {
|
|
$('#variableInput').val(this.value);
|
|
}
|
|
});
|
|
|
|
$('a[href="#kibDivisor"]').on('click', function (event) {
|
|
event.preventDefault();
|
|
$('input[name="valueDivisor"]').val(1024);
|
|
$('input[name="valueUnit"]').val(window.Messages.strKiB);
|
|
$('span.unitInput').toggle(true);
|
|
$('input[name="useUnit"]').prop('checked', true);
|
|
|
|
return false;
|
|
});
|
|
|
|
$('a[href="#mibDivisor"]').on('click', function (event) {
|
|
event.preventDefault();
|
|
$('input[name="valueDivisor"]').val(1024 * 1024);
|
|
$('input[name="valueUnit"]').val(window.Messages.strMiB);
|
|
$('span.unitInput').toggle(true);
|
|
$('input[name="useUnit"]').prop('checked', true);
|
|
|
|
return false;
|
|
});
|
|
|
|
$('a[href="#submitClearSeries"]').on('click', function (event) {
|
|
event.preventDefault();
|
|
$('#seriesPreview').html('<i>' + window.Messages.strNone + '</i>');
|
|
newChart = null;
|
|
$('#clearSeriesLink').hide();
|
|
});
|
|
|
|
$('a[href="#submitAddSeries"]').on('click', function (event) {
|
|
event.preventDefault();
|
|
if ($('#variableInput').val() === '') {
|
|
return false;
|
|
}
|
|
|
|
if (newChart === null) {
|
|
$('#seriesPreview').html('');
|
|
|
|
newChart = {
|
|
title: $('input[name="chartTitle"]').val(),
|
|
nodes: [],
|
|
series: [],
|
|
maxYLabel: 0
|
|
};
|
|
}
|
|
|
|
const serie: { [p: string]: any } = {
|
|
dataPoints: [{ type: 'statusvar', name: $('#variableInput').val() }],
|
|
display: $('input[name="differentialValue"]').prop('checked') ? 'differential' : '',
|
|
};
|
|
|
|
if (serie.dataPoints[0].name === 'Processes') {
|
|
serie.dataPoints[0].type = 'proc';
|
|
}
|
|
|
|
if ($('input[name="useDivisor"]').prop('checked')) {
|
|
serie.valueDivisor = parseInt(($('input[name="valueDivisor"]').val() as string), 10);
|
|
}
|
|
|
|
if ($('input[name="useUnit"]').prop('checked')) {
|
|
serie.unit = $('input[name="valueUnit"]').val();
|
|
}
|
|
|
|
let str = serie.display === 'differential' ? ', ' + window.Messages.strDifferential : '';
|
|
str += serie.valueDivisor ? (', ' + window.sprintf(window.Messages.strDividedBy, serie.valueDivisor)) : '';
|
|
str += serie.unit ? (', ' + window.Messages.strUnit + ': ' + serie.unit) : '';
|
|
|
|
const newSeries = {
|
|
label: ($('#variableInput').val() as string).replace(/_/g, ' '),
|
|
};
|
|
newChart.series.push(newSeries);
|
|
$('#seriesPreview').append('- ' + escapeHtml(newSeries.label + str) + '<br>');
|
|
newChart.nodes.push(serie);
|
|
$('#variableInput').val('');
|
|
$('input[name="differentialValue"]').prop('checked', true);
|
|
$('input[name="useDivisor"]').prop('checked', false);
|
|
$('input[name="useUnit"]').prop('checked', false);
|
|
$('input[name="useDivisor"]').trigger('change');
|
|
$('input[name="useUnit"]').trigger('change');
|
|
($('select[name="varChartList"]') as JQuery<HTMLSelectElement>).get(0).selectedIndex = 0;
|
|
|
|
$('#clearSeriesLink').show();
|
|
|
|
return false;
|
|
});
|
|
|
|
$('#variableInput').autocomplete({
|
|
source: window.variableNames
|
|
});
|
|
|
|
/* Initializes the monitor, called only once */
|
|
function initGrid () {
|
|
let i;
|
|
|
|
/* Apply default values & config */
|
|
if (isStorageSupported('localStorage')) {
|
|
if (typeof window.localStorage.monitorCharts !== 'undefined') {
|
|
runtime.charts = JSON.parse(window.localStorage.monitorCharts);
|
|
}
|
|
|
|
if (typeof window.localStorage.monitorSettings !== 'undefined') {
|
|
monitorSettings = JSON.parse(window.localStorage.monitorSettings);
|
|
}
|
|
|
|
$('#monitorResetConfigButton').toggle(runtime.charts !== null);
|
|
|
|
if (runtime.charts !== null
|
|
&& typeof window.localStorage.monitorVersion !== 'undefined'
|
|
&& monitorProtocolVersion !== window.localStorage.monitorVersion
|
|
) {
|
|
bootstrap.Modal.getOrCreateInstance('#incompatibleMonitorConfigModal').show();
|
|
}
|
|
}
|
|
|
|
if (runtime.charts === null) {
|
|
runtime.charts = defaultChartGrid;
|
|
}
|
|
|
|
if (monitorSettings === null) {
|
|
monitorSettings = defaultMonitorSettings;
|
|
}
|
|
|
|
$('#monitorChartRefreshRateSelect').val(monitorSettings.gridRefresh / 1000);
|
|
$('#monitorChartColumnsSelect').val(monitorSettings.columns);
|
|
|
|
if (monitorSettings.gridMaxPoints === 'auto') {
|
|
runtime.gridMaxPoints = Math.round((monitorSettings.chartSize.width - 40) / 12);
|
|
} else {
|
|
runtime.gridMaxPoints = monitorSettings.gridMaxPoints;
|
|
}
|
|
|
|
runtime.xmin = new Date().getTime() - serverTimeDiff - runtime.gridMaxPoints * monitorSettings.gridRefresh;
|
|
runtime.xmax = new Date().getTime() - serverTimeDiff + monitorSettings.gridRefresh;
|
|
|
|
/* Calculate how much spacing there is between each chart */
|
|
$('#chartGrid').html('<tr><td></td><td></td></tr><tr><td></td><td></td></tr>');
|
|
chartSpacing = {
|
|
width: $('#chartGrid').find('td').eq(1).offset().left -
|
|
$('#chartGrid').find('td').eq(0).offset().left,
|
|
height: $('#chartGrid').find('tr').eq(1).find('td').eq(1).offset().top -
|
|
$('#chartGrid').find('tr').eq(0).find('td').eq(0).offset().top
|
|
};
|
|
|
|
$('#chartGrid').html('');
|
|
|
|
/* Add all charts - in correct order */
|
|
const keys = [];
|
|
$.each(runtime.charts, function (key) {
|
|
keys.push(key);
|
|
});
|
|
|
|
keys.sort();
|
|
for (i = 0; i < keys.length; i++) {
|
|
addChart(runtime.charts[keys[i]], true);
|
|
}
|
|
|
|
/* Fill in missing cells */
|
|
const numCharts = $('#chartGrid').find('.monitorChart').length;
|
|
const numMissingCells = (monitorSettings.columns - numCharts % monitorSettings.columns) % monitorSettings.columns;
|
|
for (i = 0; i < numMissingCells; i++) {
|
|
$('#chartGrid').find('tr').last().append('<td></td>');
|
|
}
|
|
|
|
// Empty cells should keep their size so you can drop onto them
|
|
calculateChartSize();
|
|
$('#chartGrid').find('tr td').css('width', chartSize.width + 'px');
|
|
|
|
buildRequiredDataList();
|
|
refreshChartGrid();
|
|
}
|
|
|
|
/* Calls destroyGrid() and initGrid(), but before doing so it saves the chart
|
|
* data from each chart and restores it after the monitor is initialized again */
|
|
function rebuildGrid () {
|
|
let oldData = null;
|
|
if (runtime.charts) {
|
|
oldData = {};
|
|
$.each(runtime.charts, function (key, chartObj) {
|
|
let i = 0;
|
|
const l = chartObj.nodes.length;
|
|
for (; i < l; i++) {
|
|
oldData[chartObj.nodes[i].dataPoint] = [];
|
|
let j = 0;
|
|
const ll = chartObj.chart.data.datasets[i].data.length;
|
|
for (; j < ll; j++) {
|
|
oldData[chartObj.nodes[i].dataPoint].push([chartObj.chart.data.datasets[i].data[j].x, chartObj.chart.data.datasets[i].data[j].y]);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
destroyGrid();
|
|
initGrid();
|
|
}
|
|
|
|
/* Calculates the dynamic chart size that depends on the column width */
|
|
function calculateChartSize () {
|
|
let panelWidth;
|
|
if ($('body').height() > $(window).height()) { // has vertical scroll bar
|
|
panelWidth = $('#logTable').innerWidth();
|
|
} else {
|
|
panelWidth = $('#logTable').innerWidth() - 10; // leave some space for vertical scroll bar
|
|
}
|
|
|
|
let wdt = panelWidth;
|
|
const windowWidth = $(window).width();
|
|
|
|
if (windowWidth > 768) {
|
|
wdt = (panelWidth - monitorSettings.columns * Math.abs(chartSpacing.width)) / monitorSettings.columns;
|
|
}
|
|
|
|
chartSize = {
|
|
width: Math.floor(wdt),
|
|
height: Math.floor(0.55 * wdt)
|
|
};
|
|
}
|
|
|
|
/* Adds a chart to the chart grid */
|
|
function addChart (chartObj, initialize = undefined) {
|
|
let i;
|
|
const settings: { [p: string]: any } = {
|
|
title: escapeHtml(chartObj.title),
|
|
grid: {
|
|
drawBorder: false,
|
|
shadow: false,
|
|
background: 'rgba(0,0,0,0)',
|
|
},
|
|
axes: {
|
|
xaxis: {
|
|
tickOptions: {
|
|
formatString: '%H:%M:%S',
|
|
showGridline: false,
|
|
},
|
|
min: runtime.xmin,
|
|
max: runtime.xmax,
|
|
},
|
|
yaxis: {
|
|
min: 0,
|
|
max: 100,
|
|
tickInterval: 20,
|
|
},
|
|
},
|
|
seriesDefaults: {
|
|
rendererOptions: {
|
|
smooth: true,
|
|
},
|
|
showLine: true,
|
|
lineWidth: 2,
|
|
markerOptions: {
|
|
size: 6,
|
|
},
|
|
},
|
|
highlighter: {
|
|
show: true,
|
|
},
|
|
};
|
|
|
|
if (settings.title === window.Messages.strSystemCPUUsage ||
|
|
settings.title === window.Messages.strQueryCacheEfficiency
|
|
) {
|
|
settings.axes.yaxis.tickOptions = {
|
|
formatString: '%d %%'
|
|
};
|
|
} else if (settings.title === window.Messages.strSystemMemory ||
|
|
settings.title === window.Messages.strSystemSwap
|
|
) {
|
|
settings.stackSeries = true;
|
|
settings.axes.yaxis.tickOptions = {
|
|
formatter: chartByteFormatter(2) // MiB
|
|
};
|
|
} else if (settings.title === window.Messages.strTraffic) {
|
|
settings.axes.yaxis.tickOptions = {
|
|
formatter: chartByteFormatter(1) // KiB
|
|
};
|
|
} else if (settings.title === window.Messages.strQuestions ||
|
|
settings.title === window.Messages.strConnections
|
|
) {
|
|
settings.axes.yaxis.tickOptions = {
|
|
formatter: function (format, val) {
|
|
if (Math.abs(val) >= 1000000) {
|
|
return window.sprintf('%.3g M', val / 1000000);
|
|
} else if (Math.abs(val) >= 1000) {
|
|
return window.sprintf('%.3g k', val / 1000);
|
|
} else {
|
|
return window.sprintf('%d', val);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
settings.series = chartObj.series;
|
|
|
|
if ($('#' + 'gridChartCanvas' + runtime.chartAI).length === 0) {
|
|
const numCharts = $('#chartGrid').find('.monitorChart').length;
|
|
|
|
if (numCharts === 0 || (numCharts % monitorSettings.columns === 0)) {
|
|
$('#chartGrid').append('<tr></tr>');
|
|
}
|
|
|
|
if (! chartSize) {
|
|
calculateChartSize();
|
|
}
|
|
|
|
$('#chartGrid').find('tr').last().append(
|
|
'<td>' +
|
|
'<div class="card card-body monitorChart" style="width:' + chartSize.width + 'px; height:' + chartSize.height + 'px;">' +
|
|
'<canvas id="gridChartCanvas' + runtime.chartAI + '"></canvas></div>' +
|
|
'</td>'
|
|
);
|
|
}
|
|
|
|
// Set series' data as [0,0], smooth lines won't plot with data array having null values.
|
|
// also chart won't plot initially with no data and data comes on refreshChartGrid()
|
|
const series = [];
|
|
for (i in chartObj.series) {
|
|
series.push([[0, 0]]);
|
|
}
|
|
|
|
const tempTooltipContentEditor = function (str, seriesIndex, pointIndex, plot) {
|
|
let j;
|
|
// TODO: move style to theme CSS
|
|
let tooltipHtml = '<div id="tooltip_editor">';
|
|
// x value i.e. time
|
|
const timeValue = str.split(',')[0];
|
|
let seriesValue;
|
|
tooltipHtml += 'Time: ' + timeValue;
|
|
tooltipHtml += '<span id="tooltip_font">';
|
|
// Add y values to the tooltip per series
|
|
for (j in plot.series) {
|
|
// get y value if present
|
|
if (plot.series[j].data.length > pointIndex) {
|
|
seriesValue = plot.series[j].data[pointIndex][1];
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
const seriesLabel = plot.series[j].label;
|
|
const seriesColor = plot.series[j].color;
|
|
// format y value
|
|
if (plot.series[0]._yaxis.tickOptions.formatter) { // eslint-disable-line no-underscore-dangle
|
|
// using formatter function
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
seriesValue = plot.series[0]._yaxis.tickOptions.formatter('%s', seriesValue);
|
|
} else if (plot.series[0]._yaxis.tickOptions.formatString) { // eslint-disable-line no-underscore-dangle
|
|
// using format string
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
seriesValue = window.sprintf(plot.series[0]._yaxis.tickOptions.formatString, seriesValue);
|
|
}
|
|
|
|
tooltipHtml += '<br><span style="color:' + seriesColor + '">' +
|
|
seriesLabel + ': ' + seriesValue + '</span>';
|
|
}
|
|
|
|
tooltipHtml += '</span></div>';
|
|
|
|
return tooltipHtml;
|
|
};
|
|
|
|
// set Tooltip for each series
|
|
for (i in settings.series) {
|
|
settings.series[i].highlighter = {
|
|
show: true,
|
|
tooltipContentEditor: tempTooltipContentEditor
|
|
};
|
|
}
|
|
|
|
const datasets = [];
|
|
for (let i = 0; i < series.length; i++) {
|
|
const dataset = {
|
|
label: settings.series[i].label,
|
|
data: [],
|
|
fill: settings.stackSeries ? 'start' : false,
|
|
tension: 0.3,
|
|
};
|
|
datasets.push(dataset);
|
|
}
|
|
|
|
chartObj.chart = new window.Chart(
|
|
'gridChartCanvas' + runtime.chartAI,
|
|
{
|
|
type: 'line',
|
|
data: { labels: [], datasets: datasets },
|
|
options: {
|
|
locale: CommonParams.get('lang').replace('_', '-'),
|
|
maintainAspectRatio: false,
|
|
plugins: {
|
|
title: { display: true, text: settings.title },
|
|
legend: { display: true, position: 'bottom' },
|
|
},
|
|
interaction: { mode: 'index' },
|
|
scales: {
|
|
// @ts-ignore
|
|
x: {
|
|
type: 'time',
|
|
ticks: { maxTicksLimit: 5 },
|
|
},
|
|
y: {
|
|
stacked: !! settings.stackSeries,
|
|
suggestedMin: settings.axes.yaxis.min,
|
|
suggestedMax: settings.axes.yaxis.max,
|
|
ticks: {
|
|
stepSize: settings.axes.yaxis.tickInterval,
|
|
callback: function (value, index, ticks) {
|
|
if (settings.axes.yaxis?.tickOptions?.formatString) {
|
|
return window.sprintf(settings.axes.yaxis.tickOptions.formatString, value);
|
|
}
|
|
|
|
if (settings.axes.yaxis?.tickOptions?.formatter) {
|
|
return settings.axes.yaxis.tickOptions.formatter(null, value);
|
|
}
|
|
|
|
// @ts-ignore
|
|
return window.Chart.Ticks.formatters.numeric.apply(this, [value, index, ticks]);
|
|
},
|
|
},
|
|
},
|
|
},
|
|
onClick: function (event) {
|
|
if (editMode) {
|
|
return;
|
|
}
|
|
|
|
// @ts-ignore
|
|
const minDate = new Date(event.chart.scales.x.ticks[0].value);
|
|
// @ts-ignore
|
|
const maxDate = new Date(event.chart.scales.x.ticks[4].value);
|
|
getLogAnalyseDialog(minDate, maxDate);
|
|
},
|
|
},
|
|
},
|
|
);
|
|
|
|
if (initialize !== true) {
|
|
runtime.charts['c' + runtime.chartAI] = chartObj;
|
|
buildRequiredDataList();
|
|
}
|
|
|
|
// Edit, Print icon only in edit mode
|
|
$('#chartGrid').find('div svg').find('*[zIndex=20], *[zIndex=21], *[zIndex=19]').toggle(editMode);
|
|
|
|
runtime.chartAI++;
|
|
}
|
|
|
|
function getLogAnalyseDialog (min: Date, max: Date) {
|
|
const logAnalyseModal = document.getElementById('logAnalyseModal');
|
|
|
|
function logAnalyseModalSlowLogEventHandler () {
|
|
bootstrap.Modal.getOrCreateInstance(logAnalyseModal).hide();
|
|
loadLog('slow', min, max);
|
|
}
|
|
|
|
function logAnalyseModalGeneralLogEventHandler () {
|
|
bootstrap.Modal.getOrCreateInstance(logAnalyseModal).hide();
|
|
loadLog('general', min, max);
|
|
}
|
|
|
|
logAnalyseModal.addEventListener('shown.bs.modal', function () {
|
|
const logAnalyseModalSlowLogButton = document.getElementById('logAnalyseModalSlowLogButton');
|
|
logAnalyseModalSlowLogButton?.addEventListener('click', logAnalyseModalSlowLogEventHandler);
|
|
|
|
const logAnalyseModalGeneralLogButton = document.getElementById('logAnalyseModalGeneralLogButton');
|
|
logAnalyseModalGeneralLogButton?.addEventListener('click', logAnalyseModalGeneralLogEventHandler);
|
|
|
|
const $logAnalyseDialog = $('#logAnalyseDialog');
|
|
const $dateStart = $logAnalyseDialog.find('input[name="dateStart"]');
|
|
const $dateEnd = $logAnalyseDialog.find('input[name="dateEnd"]');
|
|
$dateStart.prop('readonly', true);
|
|
$dateEnd.prop('readonly', true);
|
|
|
|
addDatepicker($dateStart, 'datetime', {
|
|
showMillisec: false,
|
|
showMicrosec: false,
|
|
timeFormat: 'HH:mm:ss',
|
|
firstDay: window.firstDayOfCalendar
|
|
});
|
|
|
|
addDatepicker($dateEnd, 'datetime', {
|
|
showMillisec: false,
|
|
showMicrosec: false,
|
|
timeFormat: 'HH:mm:ss',
|
|
firstDay: window.firstDayOfCalendar
|
|
});
|
|
|
|
$dateStart.datepicker('setDate', min);
|
|
$dateEnd.datepicker('setDate', max);
|
|
});
|
|
|
|
logAnalyseModal.addEventListener('hidden.bs.modal', function () {
|
|
const logAnalyseModalSlowLogButton = document.getElementById('logAnalyseModalSlowLogButton');
|
|
logAnalyseModalSlowLogButton?.removeEventListener('click', logAnalyseModalSlowLogEventHandler);
|
|
|
|
const logAnalyseModalGeneralLogButton = document.getElementById('logAnalyseModalGeneralLogButton');
|
|
logAnalyseModalGeneralLogButton?.removeEventListener('click', logAnalyseModalGeneralLogEventHandler);
|
|
});
|
|
|
|
bootstrap.Modal.getOrCreateInstance(logAnalyseModal).show();
|
|
}
|
|
|
|
function loadLog (type: string, min: Date, max: Date) {
|
|
const dateStart = Date.parse($('#logAnalyseDialog').find('input[name="dateStart"]').datepicker('getDate').toString()) || min;
|
|
const dateEnd = Date.parse($('#logAnalyseDialog').find('input[name="dateEnd"]').datepicker('getDate').toString()) || max;
|
|
|
|
loadLogStatistics({
|
|
src: type,
|
|
start: dateStart,
|
|
end: dateEnd,
|
|
removeVariables: $('#removeVariables').prop('checked'),
|
|
limitTypes: $('#limitTypes').prop('checked')
|
|
});
|
|
}
|
|
|
|
/* Called in regular intervals, this function updates the values of each chart in the grid */
|
|
function refreshChartGrid () {
|
|
/* Send to server */
|
|
runtime.refreshRequest = $.post('index.php?route=/server/status/monitor/chart', {
|
|
'ajax_request': true,
|
|
'requiredData': JSON.stringify(runtime.dataList),
|
|
'server': CommonParams.get('server')
|
|
}, function (data) {
|
|
let chartData;
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
chartData = data.message;
|
|
} else {
|
|
serverResponseError();
|
|
|
|
return;
|
|
}
|
|
|
|
let value;
|
|
let i = 0;
|
|
let diff;
|
|
let total;
|
|
|
|
/* Update values in each graph */
|
|
$.each(runtime.charts, function (orderKey, elem) {
|
|
const key = elem.chartID;
|
|
// If newly added chart, we have no data for it yet
|
|
if (! chartData[key]) {
|
|
return;
|
|
}
|
|
|
|
// Draw all series
|
|
total = 0;
|
|
for (let j = 0; j < elem.nodes.length; j++) {
|
|
// Update x-axis
|
|
if (i === 0 && j === 0) {
|
|
if (oldChartData === null) {
|
|
diff = chartData.x - runtime.xmax;
|
|
} else {
|
|
diff = parseInt((chartData.x - oldChartData.x).toString(), 10);
|
|
}
|
|
|
|
runtime.xmin += diff;
|
|
runtime.xmax += diff;
|
|
}
|
|
|
|
/* Calculate y value */
|
|
|
|
// If transform function given, use it
|
|
if (elem.nodes[j].transformFn) {
|
|
value = chartValueTransform(
|
|
elem.nodes[j].transformFn,
|
|
chartData[key][j],
|
|
// Check if first iteration (oldChartData==null), or if newly added chart oldChartData[key]==null
|
|
(
|
|
oldChartData === null ||
|
|
oldChartData[key] === null ||
|
|
oldChartData[key] === undefined ? null : oldChartData[key][j]
|
|
)
|
|
);
|
|
|
|
// Otherwise use original value and apply differential and divisor if given,
|
|
// in this case we have only one data point per series - located at chartData[key][j][0]
|
|
} else {
|
|
value = parseFloat(chartData[key][j][0].value);
|
|
|
|
if (elem.nodes[j].display === 'differential') {
|
|
if (oldChartData === null ||
|
|
oldChartData[key] === null ||
|
|
oldChartData[key] === undefined
|
|
) {
|
|
continue;
|
|
}
|
|
|
|
value -= oldChartData[key][j][0].value;
|
|
|
|
// Show original value instead of negative value when database server is restarted
|
|
if (value < 0) {
|
|
value = parseFloat(chartData[key][j][0].value);
|
|
}
|
|
}
|
|
|
|
if (elem.nodes[j].valueDivisor) {
|
|
value = value / elem.nodes[j].valueDivisor;
|
|
}
|
|
}
|
|
|
|
// Set y value, if defined
|
|
if (value !== undefined) {
|
|
elem.chart.data.datasets[j].data.push({ x: chartData.x, y: value });
|
|
if (value > elem.maxYLabel) {
|
|
elem.maxYLabel = value;
|
|
} else if (elem.maxYLabel === 0) {
|
|
elem.maxYLabel = 0.5;
|
|
}
|
|
|
|
// free old data point values and update maxYLabel
|
|
if (elem.chart.data.datasets[j].data.length > runtime.gridMaxPoints &&
|
|
elem.chart.data.datasets[j].data[0].x < runtime.xmin
|
|
) {
|
|
// check if the next freeable point is highest
|
|
if (elem.maxYLabel <= elem.chart.data.datasets[j].data[0].y) {
|
|
elem.chart.data.datasets[j].data.splice(0, elem.chart.data.datasets[j].data.length - runtime.gridMaxPoints);
|
|
elem.maxYLabel = getMaxYLabel(elem.chart.data.datasets[j].data);
|
|
} else {
|
|
elem.chart.data.datasets[j].data.splice(0, elem.chart.data.datasets[j].data.length - runtime.gridMaxPoints);
|
|
}
|
|
}
|
|
|
|
if (elem.title === window.Messages.strSystemMemory ||
|
|
elem.title === window.Messages.strSystemSwap
|
|
) {
|
|
total += value;
|
|
}
|
|
}
|
|
}
|
|
|
|
// update chart options
|
|
// keep ticks number/positioning consistent while refreshrate changes
|
|
const tickInterval = (runtime.xmax - runtime.xmin) / 5;
|
|
elem.chart.data.labels = [
|
|
(runtime.xmax - tickInterval * 4),
|
|
(runtime.xmax - tickInterval * 3),
|
|
(runtime.xmax - tickInterval * 2),
|
|
(runtime.xmax - tickInterval),
|
|
runtime.xmax
|
|
];
|
|
|
|
if (elem.title !== window.Messages.strSystemCPUUsage &&
|
|
elem.title !== window.Messages.strQueryCacheEfficiency &&
|
|
elem.title !== window.Messages.strSystemMemory &&
|
|
elem.title !== window.Messages.strSystemSwap
|
|
&& elem.maxYLabel > 0
|
|
) {
|
|
elem.chart.options.scales.y.max = Math.ceil(elem.maxYLabel * 1.1);
|
|
elem.chart.options.scales.y.ticks.stepSize = Math.ceil(elem.maxYLabel * 1.1 / 5);
|
|
} else if (
|
|
(elem.title === window.Messages.strSystemMemory || elem.title === window.Messages.strSystemSwap)
|
|
&& total > 0
|
|
) {
|
|
elem.chart.options.scales.y.max = Math.ceil(total * 1.1 / 100) * 100;
|
|
elem.chart.options.scales.y.ticks.stepSize = Math.ceil(total * 1.1 / 5);
|
|
}
|
|
|
|
i++;
|
|
|
|
if (runtime.redrawCharts) {
|
|
elem.chart.update('none');
|
|
}
|
|
});
|
|
|
|
oldChartData = chartData;
|
|
|
|
runtime.refreshTimeout = setTimeout(refreshChartGrid, monitorSettings.gridRefresh);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Function to get the highest plotted point's y label, to scale the chart.
|
|
*/
|
|
function getMaxYLabel (dataValues) {
|
|
let maxY = dataValues[0].y;
|
|
$.each(dataValues, function (k, v) {
|
|
maxY = (v.y > maxY) ? v.y : maxY;
|
|
});
|
|
|
|
return maxY;
|
|
}
|
|
|
|
/* Function that supplies special value transform functions for chart values */
|
|
function chartValueTransform (name, cur, prev) {
|
|
let newCur;
|
|
let newPrev;
|
|
let diffTotal;
|
|
let diffIdle;
|
|
let diffQHits;
|
|
|
|
switch (name) {
|
|
case 'cpu-linux':
|
|
if (prev === null) {
|
|
return undefined;
|
|
}
|
|
|
|
// cur and prev are datapoint arrays, but containing
|
|
// only 1 element for cpu-linux
|
|
newCur = cur[0];
|
|
newPrev = prev[0];
|
|
|
|
diffTotal = newCur.busy + newCur.idle - (newPrev.busy + newPrev.idle);
|
|
diffIdle = newCur.idle - newPrev.idle;
|
|
|
|
return 100 * (diffTotal - diffIdle) / diffTotal;
|
|
|
|
// Query cache efficiency (%)
|
|
case 'qce':
|
|
if (prev === null) {
|
|
return undefined;
|
|
}
|
|
|
|
// cur[0].value is Qcache_hits, cur[1].value is Com_select
|
|
diffQHits = cur[0].value - prev[0].value;
|
|
// No NaN please :-)
|
|
if (cur[1].value - prev[1].value === 0) {
|
|
return 0;
|
|
}
|
|
|
|
return diffQHits / (cur[1].value - prev[1].value + diffQHits) * 100;
|
|
|
|
// Query cache usage (%)
|
|
case 'qcu':
|
|
if (cur[1].value === 0) {
|
|
return 0;
|
|
}
|
|
|
|
// cur[0].value is Qcache_free_memory, cur[1].value is query_cache_size
|
|
return 100 - cur[0].value / cur[1].value * 100;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
/* Build list of nodes that need to be retrieved from server.
|
|
* It creates something like a stripped down version of the runtime.charts object.
|
|
*/
|
|
function buildRequiredDataList () {
|
|
runtime.dataList = {};
|
|
// Store an own id, because the property name is subject of reordering,
|
|
// thus destroying our mapping with runtime.charts <=> runtime.dataList
|
|
let chartID = 0;
|
|
$.each(runtime.charts, function (key, chart) {
|
|
runtime.dataList[chartID] = [];
|
|
let i = 0;
|
|
const l = chart.nodes.length;
|
|
for (; i < l; i++) {
|
|
runtime.dataList[chartID][i] = chart.nodes[i].dataPoints;
|
|
}
|
|
|
|
runtime.charts[key].chartID = chartID;
|
|
chartID++;
|
|
});
|
|
}
|
|
|
|
/* Loads the log table data, generates the table and handles the filters */
|
|
function loadLogStatistics (opts) {
|
|
let logRequest = null;
|
|
|
|
if (! opts.removeVariables) {
|
|
opts.removeVariables = false;
|
|
}
|
|
|
|
if (! opts.limitTypes) {
|
|
opts.limitTypes = false;
|
|
}
|
|
|
|
const analysingLogsModal = document.getElementById('analysingLogsModal');
|
|
|
|
analysingLogsModal.addEventListener('hidden.bs.modal', function () {
|
|
if (logRequest !== null) {
|
|
logRequest.abort();
|
|
}
|
|
});
|
|
|
|
bootstrap.Modal.getOrCreateInstance(analysingLogsModal).show();
|
|
|
|
let url = 'index.php?route=/server/status/monitor/slow-log';
|
|
if (opts.src === 'general') {
|
|
url = 'index.php?route=/server/status/monitor/general-log';
|
|
}
|
|
|
|
logRequest = $.post(
|
|
url,
|
|
{
|
|
'ajax_request': true,
|
|
'time_start': Math.round(opts.start / 1000),
|
|
'time_end': Math.round(opts.end / 1000),
|
|
'removeVariables': opts.removeVariables,
|
|
'limitTypes': opts.limitTypes,
|
|
'server': CommonParams.get('server')
|
|
},
|
|
function (data) {
|
|
let logData;
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
logData = data.message;
|
|
} else {
|
|
bootstrap.Modal.getOrCreateInstance(analysingLogsModal).hide();
|
|
serverResponseError();
|
|
|
|
return;
|
|
}
|
|
|
|
if (logData.rows.length === 0) {
|
|
bootstrap.Modal.getOrCreateInstance(analysingLogsModal).hide();
|
|
bootstrap.Modal.getOrCreateInstance('#analysingLogsNoDataFoundModal').show();
|
|
|
|
return;
|
|
}
|
|
|
|
runtime.logDataCols = buildLogTable(logData, opts.removeVariables);
|
|
|
|
const analysingLogsLogDataLoadedModalBody = $('#analysingLogsLogDataLoadedModal .modal-body');
|
|
$.each(logData.sum, function (key: string, value) {
|
|
let newKey = key.charAt(0).toUpperCase() + key.slice(1).toLowerCase();
|
|
if (newKey === 'Total') {
|
|
newKey = '<b>' + newKey + '</b>';
|
|
}
|
|
|
|
analysingLogsLogDataLoadedModalBody.append(newKey + ': ' + value + '<br>');
|
|
});
|
|
|
|
/* Add filter options if more than a bunch of rows there to filter */
|
|
if (logData.numRows > 12) {
|
|
$('#logTable').prepend(
|
|
'<div class="card mb-3">' +
|
|
'<div class="card-header">' + window.Messages.strFiltersForLogTable + '</div>' +
|
|
'<div class="card-body">' +
|
|
' <div class="mb-3">' +
|
|
' <label class="form-label" for="filterQueryText">' + window.Messages.strFilterByWordRegexp + '</label>' +
|
|
' <input class="form-control" name="filterQueryText" type="text" id="filterQueryText">' +
|
|
' </div>' +
|
|
' <div class="form-check">' +
|
|
' <input class="form-check-input" type="checkbox" id="noWHEREData" name="noWHEREData" value="1"> ' +
|
|
' <label class="form-check-label" for="noWHEREData"> ' + window.Messages.strIgnoreWhereAndGroup + '</label>' +
|
|
' </div>' +
|
|
((logData.numRows > 250) ? ' <div class="mt-3"><button class="btn btn-secondary" name="startFilterQueryText" id="startFilterQueryText">' + window.Messages.strFilter + '</button></div>' : '') +
|
|
'</div></div>'
|
|
);
|
|
|
|
$('#noWHEREData').on('change', function () {
|
|
filterQueries(true);
|
|
});
|
|
|
|
if (logData.numRows > 250) {
|
|
$('#startFilterQueryText').on('click', filterQueries);
|
|
} else {
|
|
$('#filterQueryText').on('keyup', filterQueries);
|
|
}
|
|
}
|
|
|
|
const analysingLogsLogDataLoadedModal = document.getElementById('analysingLogsLogDataLoadedModal');
|
|
|
|
function analysingLogsLogDataLoadedModalJumpEventHandler () {
|
|
bootstrap.Modal.getOrCreateInstance(analysingLogsLogDataLoadedModal).hide();
|
|
$(document).scrollTop($('#logTable').offset().top);
|
|
}
|
|
|
|
analysingLogsLogDataLoadedModal.addEventListener('shown.bs.modal', function () {
|
|
const analysingLogsLogDataLoadedModalJumpButton = document.getElementById('analysingLogsLogDataLoadedModalJumpButton');
|
|
analysingLogsLogDataLoadedModalJumpButton?.addEventListener('click', analysingLogsLogDataLoadedModalJumpEventHandler);
|
|
});
|
|
|
|
analysingLogsLogDataLoadedModal.addEventListener('hidden.bs.modal', function () {
|
|
const analysingLogsLogDataLoadedModalJumpButton = document.getElementById('analysingLogsLogDataLoadedModalJumpButton');
|
|
analysingLogsLogDataLoadedModalJumpButton?.removeEventListener('click', analysingLogsLogDataLoadedModalJumpEventHandler);
|
|
});
|
|
|
|
bootstrap.Modal.getOrCreateInstance(analysingLogsModal).hide();
|
|
bootstrap.Modal.getOrCreateInstance(analysingLogsLogDataLoadedModal).show();
|
|
}
|
|
);
|
|
|
|
/**
|
|
* Handles the actions performed when the user uses any of the
|
|
* log table filters which are the filter by name and grouping
|
|
* with ignoring data in WHERE clauses
|
|
*
|
|
* @param {boolean} varFilterChange Should be true when the users enabled or disabled
|
|
* to group queries ignoring data in WHERE clauses
|
|
*/
|
|
function filterQueries (varFilterChange) {
|
|
let textFilter;
|
|
const val = ($('#filterQueryText').val() as string);
|
|
|
|
if (val.length === 0) {
|
|
textFilter = null;
|
|
} else {
|
|
try {
|
|
textFilter = new RegExp(val, 'i');
|
|
$('#filterQueryText').removeClass('error');
|
|
} catch (e) {
|
|
if (e instanceof SyntaxError) {
|
|
$('#filterQueryText').addClass('error');
|
|
textFilter = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
let rowSum = 0;
|
|
let totalSum = 0;
|
|
let i = 0;
|
|
let q;
|
|
const noVars = $('#noWHEREData').prop('checked');
|
|
const equalsFilter = /([^=]+)=(\d+|(('|"|).*?[^\\])\4((\s+)|$))/gi;
|
|
const functionFilter = /([a-z0-9_]+)\(.+?\)/gi;
|
|
const filteredQueries = {};
|
|
const filteredQueriesLines = {};
|
|
let hide = false;
|
|
let rowData;
|
|
const queryColumnName = runtime.logDataCols[runtime.logDataCols.length - 2];
|
|
const sumColumnName = runtime.logDataCols[runtime.logDataCols.length - 1];
|
|
const isSlowLog = opts.src === 'slow';
|
|
const columnSums = {};
|
|
|
|
// For the slow log we have to count many columns (query_time, lock_time, rows_examined, rows_sent, etc.)
|
|
const countRow = function (query, row) {
|
|
const cells = row.match(/<td>(.*?)<\/td>/gi);
|
|
if (! columnSums[query]) {
|
|
columnSums[query] = [0, 0, 0, 0];
|
|
}
|
|
|
|
// lock_time and query_time and displayed in timespan format
|
|
columnSums[query][0] += timeToSec(cells[2].replace(/(<td>|<\/td>)/gi, ''));
|
|
columnSums[query][1] += timeToSec(cells[3].replace(/(<td>|<\/td>)/gi, ''));
|
|
// rows_examind and rows_sent are just numbers
|
|
columnSums[query][2] += parseInt(cells[4].replace(/(<td>|<\/td>)/gi, ''), 10);
|
|
columnSums[query][3] += parseInt(cells[5].replace(/(<td>|<\/td>)/gi, ''), 10);
|
|
};
|
|
|
|
// We just assume the sql text is always in the second last column, and that the total count is right of it
|
|
$('#logTable').find('table tbody tr td.queryCell').each(function () {
|
|
const $t = $(this);
|
|
// If query is a SELECT and user enabled or disabled to group
|
|
// queries ignoring data in where statements, we
|
|
// need to re-calculate the sums of each row
|
|
if (varFilterChange && $t.html().match(/^SELECT/i)) {
|
|
if (noVars) {
|
|
// Group on => Sum up identical columns, and hide all but 1
|
|
|
|
q = $t.text().replace(equalsFilter, '$1=...$6').trim();
|
|
q = q.replace(functionFilter, ' $1(...)');
|
|
|
|
// Js does not specify a limit on property name length,
|
|
// so we can abuse it as index :-)
|
|
if (filteredQueries[q]) {
|
|
filteredQueries[q] += parseInt($t.next().text(), 10);
|
|
totalSum += parseInt($t.next().text(), 10);
|
|
hide = true;
|
|
} else {
|
|
filteredQueries[q] = parseInt($t.next().text(), 10);
|
|
filteredQueriesLines[q] = i;
|
|
$t.text(q);
|
|
}
|
|
|
|
if (isSlowLog) {
|
|
countRow(q, $t.parent().html());
|
|
}
|
|
} else {
|
|
// Group off: Restore original columns
|
|
|
|
rowData = $t.parent().data('query');
|
|
// Restore SQL text
|
|
$t.text(rowData[queryColumnName]);
|
|
// Restore total count
|
|
$t.next().text(rowData[sumColumnName]);
|
|
// Restore slow log columns
|
|
if (isSlowLog) {
|
|
$t.parent().children('td').eq(2).text(rowData.query_time);
|
|
$t.parent().children('td').eq(3).text(rowData.lock_time);
|
|
$t.parent().children('td').eq(4).text(rowData.rows_sent);
|
|
$t.parent().children('td').eq(5).text(rowData.rows_examined);
|
|
}
|
|
}
|
|
}
|
|
|
|
// If not required to be hidden, do we need
|
|
// to hide because of a not matching text filter?
|
|
if (! hide && (textFilter !== null && ! textFilter.exec($t.text()))) {
|
|
hide = true;
|
|
}
|
|
|
|
// Now display or hide this column
|
|
if (hide) {
|
|
$t.parent().css('display', 'none');
|
|
} else {
|
|
totalSum += parseInt($t.next().text(), 10);
|
|
rowSum++;
|
|
$t.parent().css('display', '');
|
|
}
|
|
|
|
hide = false;
|
|
i++;
|
|
});
|
|
|
|
// We finished summarizing counts => Update count values of all grouped entries
|
|
if (varFilterChange) {
|
|
if (noVars) {
|
|
let numCol;
|
|
let row;
|
|
const $table = $('#logTable').find('table tbody');
|
|
$.each(filteredQueriesLines, function (key, value) {
|
|
if (filteredQueries[key] <= 1) {
|
|
return;
|
|
}
|
|
|
|
row = $table.children('tr').eq(value);
|
|
numCol = row.children().eq(runtime.logDataCols.length - 1);
|
|
numCol.text(filteredQueries[key]);
|
|
|
|
if (isSlowLog) {
|
|
row.children('td').eq(2).text(secToTime(columnSums[key][0]));
|
|
row.children('td').eq(3).text(secToTime(columnSums[key][1]));
|
|
row.children('td').eq(4).text(columnSums[key][2]);
|
|
row.children('td').eq(5).text(columnSums[key][3]);
|
|
}
|
|
});
|
|
}
|
|
|
|
$('#logTable').find('table').trigger('update');
|
|
setTimeout(function () {
|
|
$('#logTable').find('table').trigger('sorton', [[[runtime.logDataCols.length - 1, 1]]]);
|
|
}, 0);
|
|
}
|
|
|
|
// Display some stats at the bottom of the table
|
|
$('#logTable').find('table tfoot tr')
|
|
.html('<th colspan="' + (runtime.logDataCols.length - 1) + '">' +
|
|
window.Messages.strSumRows + ' ' + rowSum + '<span class="float-end">' +
|
|
window.Messages.strTotal + '</span></th><th class="text-end">' + totalSum + '</th>');
|
|
}
|
|
}
|
|
|
|
/* Turns a timespan (12:12:12) into a number */
|
|
function timeToSec (timeStr) {
|
|
const time = timeStr.split(':');
|
|
|
|
return (parseInt(time[0], 10) * 3600) + (parseInt(time[1], 10) * 60) + parseInt(time[2], 10);
|
|
}
|
|
|
|
/* Turns a number into a timespan (100 into 00:01:40) */
|
|
function secToTime (timeInt) {
|
|
let time = timeInt;
|
|
let hours: number | string = Math.floor(time / 3600);
|
|
time -= hours * 3600;
|
|
let minutes: number | string = Math.floor(time / 60);
|
|
time -= minutes * 60;
|
|
|
|
if (hours < 10) {
|
|
hours = '0' + hours;
|
|
}
|
|
|
|
if (minutes < 10) {
|
|
minutes = '0' + minutes;
|
|
}
|
|
|
|
if (time < 10) {
|
|
time = '0' + time;
|
|
}
|
|
|
|
return hours + ':' + minutes + ':' + time;
|
|
}
|
|
|
|
/* Constructs the log table out of the retrieved server data */
|
|
function buildLogTable (data, groupInserts) {
|
|
const rows = data.rows;
|
|
const cols = [];
|
|
const $table = $('<table class="table table-striped table-hover align-middle sortable"></table>');
|
|
let $tBody;
|
|
let $tRow;
|
|
let $tCell;
|
|
|
|
// @ts-ignore
|
|
$('#logTable').html($table);
|
|
|
|
const tempPushKey = function (key) {
|
|
cols.push(key);
|
|
};
|
|
|
|
const formatValue = function (name, value) {
|
|
if (name === 'user_host') {
|
|
return value.replace(/(\[.*?\])+/g, '');
|
|
}
|
|
|
|
return escapeHtml(value);
|
|
};
|
|
|
|
let i = 0;
|
|
const l = rows.length;
|
|
for (; i < l; i++) {
|
|
if (i === 0) {
|
|
$.each(rows[0], tempPushKey);
|
|
$table.append('<thead>' +
|
|
'<tr><th class="text-nowrap">' + cols.join('</th><th class="text-nowrap">') + '</th></tr>' +
|
|
'</thead>'
|
|
);
|
|
|
|
$table.append($tBody = $('<tbody></tbody>'));
|
|
}
|
|
|
|
$tBody.append($tRow = $('<tr class="noclick"></tr>'));
|
|
let j = 0;
|
|
const ll = cols.length;
|
|
for (; j < ll; j++) {
|
|
// Assuming the query column is the second last
|
|
if (j === cols.length - 2 && rows[i][cols[j]].match(/^SELECT/i)) {
|
|
$tRow.append($tCell = $('<td class="linkElem queryCell">' + formatValue(cols[j], rows[i][cols[j]]) + '</td>'));
|
|
$tCell.on('click', openQueryAnalyzer);
|
|
} else {
|
|
$tRow.append('<td>' + formatValue(cols[j], rows[i][cols[j]]) + '</td>');
|
|
}
|
|
|
|
$tRow.data('query', rows[i]);
|
|
}
|
|
}
|
|
|
|
$table.append('<tfoot>' +
|
|
'<tr><th colspan="' + (cols.length - 1) + '">' + window.Messages.strSumRows +
|
|
' ' + data.numRows + '<span class="float-end">' + window.Messages.strTotal +
|
|
'</span></th><th class="text-end">' + data.sum.TOTAL + '</th></tr></tfoot>');
|
|
|
|
// Append a tooltip to the count column, if there exist one
|
|
const amountColumn = $('#logTable').find('tr').first().find('th').last();
|
|
if (amountColumn.text().indexOf('#') > -1) {
|
|
amountColumn.append(' ' + getImageTag('b_help'));
|
|
|
|
let tooltipContent = window.Messages.strCountColumnExplanation;
|
|
if (groupInserts) {
|
|
tooltipContent += '<br>' + window.Messages.strMoreCountColumnExplanation;
|
|
}
|
|
|
|
new bootstrap.Tooltip(amountColumn.get(0), { title: tooltipContent, html: true });
|
|
}
|
|
|
|
$('#logTable').find('table').tablesorter({
|
|
sortList: [[cols.length - 1, 1]],
|
|
widgets: ['fast-zebra']
|
|
});
|
|
|
|
$('#logTable').find('table thead th')
|
|
.append('<div class="sorticon"></div>');
|
|
|
|
return cols;
|
|
}
|
|
|
|
/* Opens the query analyzer dialog */
|
|
function openQueryAnalyzer () {
|
|
const rowData = $(this).parent().data('query');
|
|
let profilingChart = null;
|
|
|
|
function queryAnalyzerModalSaveEventHandler () {
|
|
profilingChart = loadQueryAnalysis(rowData);
|
|
}
|
|
|
|
const queryAnalyzerModal = document.getElementById('queryAnalyzerModal');
|
|
queryAnalyzerModal.addEventListener('shown.bs.modal', function () {
|
|
const queryAnalyzerModalAnalyseButton = document.getElementById('queryAnalyzerModalAnalyseButton');
|
|
queryAnalyzerModalAnalyseButton?.addEventListener('click', queryAnalyzerModalSaveEventHandler);
|
|
|
|
const query = rowData.argument || rowData.sql_text;
|
|
if (window.codeMirrorEditor) {
|
|
window.codeMirrorEditor.setValue(query);
|
|
// Codemirror is bugged, it doesn't refresh properly sometimes.
|
|
// Following lines seem to fix that
|
|
setTimeout(function () {
|
|
window.codeMirrorEditor.refresh();
|
|
}, 50);
|
|
} else {
|
|
$('#sqlquery').val(query);
|
|
}
|
|
});
|
|
|
|
queryAnalyzerModal.addEventListener('hidden.bs.modal', function () {
|
|
const queryAnalyzerModalAnalyseButton = document.getElementById('queryAnalyzerModalAnalyseButton');
|
|
queryAnalyzerModalAnalyseButton?.removeEventListener('click', queryAnalyzerModalSaveEventHandler);
|
|
|
|
if (profilingChart !== null) {
|
|
profilingChart.destroy();
|
|
}
|
|
|
|
queryAnalyzerModal.querySelector('div.placeHolder').textContent = '';
|
|
if (window.codeMirrorEditor) {
|
|
window.codeMirrorEditor.setValue('');
|
|
} else {
|
|
$('#sqlquery').val('');
|
|
}
|
|
});
|
|
|
|
bootstrap.Modal.getOrCreateInstance(queryAnalyzerModal).show();
|
|
}
|
|
|
|
/* Loads and displays the analyzed query data */
|
|
function loadQueryAnalysis (rowData) {
|
|
const db = rowData.db || '';
|
|
let profilingChart = null;
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder').html(
|
|
window.Messages.strAnalyzing + ' <img class="ajaxIcon" src="' +
|
|
window.themeImagePath + 'ajax_clock_small.gif" alt="">');
|
|
|
|
$.post('index.php?route=/server/status/monitor/query', {
|
|
'ajax_request': true,
|
|
'query': window.codeMirrorEditor ? window.codeMirrorEditor.getValue() : $('#sqlquery').val(),
|
|
'database': db,
|
|
'server': CommonParams.get('server')
|
|
}, function (responseData) {
|
|
let data = responseData;
|
|
let i;
|
|
let l;
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
data = data.message;
|
|
}
|
|
|
|
if (data.error) {
|
|
if (data.error.indexOf('1146') !== -1 || data.error.indexOf('1046') !== -1) {
|
|
data.error = window.Messages.strServerLogError;
|
|
}
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder').html('<div class="alert alert-danger" role="alert">' + data.error + '</div>');
|
|
|
|
return;
|
|
}
|
|
|
|
let totalTime = 0;
|
|
// Float sux, I'll use table :(
|
|
$('#queryAnalyzerDialog').find('div.placeHolder')
|
|
.html('<table class="table table-borderless"><tr><td class="explain"></td><td class="chart"></td></tr></table>');
|
|
|
|
let explain = '<b>' + window.Messages.strExplainOutput + '</b> ' + $('#explain_docu').html();
|
|
if (data.explain.length > 1) {
|
|
explain += ' (';
|
|
for (i = 0; i < data.explain.length; i++) {
|
|
if (i > 0) {
|
|
explain += ', ';
|
|
}
|
|
|
|
explain += '<a href="#showExplain-' + i + '">' + i + '</a>';
|
|
}
|
|
|
|
explain += ')';
|
|
}
|
|
|
|
explain += '<p></p>';
|
|
|
|
const tempExplain = function (key, value) {
|
|
let newValue = (value === null) ? 'null' : escapeHtml(value);
|
|
|
|
if (key === 'type' && newValue.toLowerCase() === 'all') {
|
|
newValue = '<span class="text-danger">' + newValue + '</span>';
|
|
}
|
|
|
|
if (key === 'Extra') {
|
|
newValue = newValue.replace(/(using (temporary|filesort))/gi, '<span class="text-danger">$1</span>');
|
|
}
|
|
|
|
explain += key + ': ' + newValue + '<br>';
|
|
};
|
|
|
|
for (i = 0, l = data.explain.length; i < l; i++) {
|
|
explain += '<div class="explain-' + i + '"' + (i > 0 ? 'style="display:none;"' : '') + '>';
|
|
$.each(data.explain[i], tempExplain);
|
|
explain += '</div>';
|
|
}
|
|
|
|
explain += '<p><b>' + window.Messages.strAffectedRows + '</b> ' + data.affectedRows;
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder td.explain').append(explain);
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder a[href*="#showExplain"]').on('click', function () {
|
|
const id = $(this).attr('href').split('-')[1];
|
|
$(this).parent().find('div[class*="explain"]').hide();
|
|
$(this).parent().find('div[class*="explain-' + id + '"]').show();
|
|
});
|
|
|
|
if (data.profiling) {
|
|
const chartData = [];
|
|
let numberTable = '<table class="table table-sm table-striped table-hover w-auto queryNums"><thead><tr><th>' + window.Messages.strStatus + '</th><th>' + window.Messages.strTime + '</th></tr></thead><tbody>';
|
|
let duration;
|
|
let otherTime = 0;
|
|
|
|
for (i = 0, l = data.profiling.length; i < l; i++) {
|
|
duration = parseFloat(data.profiling[i].duration);
|
|
|
|
totalTime += duration;
|
|
|
|
numberTable += '<tr><td>' + data.profiling[i].state + ' </td><td> ' + prettyProfilingNum(duration, 2) + '</td></tr>';
|
|
}
|
|
|
|
// Only put those values in the pie which are > 2%
|
|
for (i = 0, l = data.profiling.length; i < l; i++) {
|
|
duration = parseFloat(data.profiling[i].duration);
|
|
|
|
if (duration / totalTime > 0.02) {
|
|
chartData.push([prettyProfilingNum(duration, 2) + ' ' + data.profiling[i].state, duration]);
|
|
} else {
|
|
otherTime += duration;
|
|
}
|
|
}
|
|
|
|
if (otherTime > 0) {
|
|
chartData.push([prettyProfilingNum(otherTime, 2) + ' ' + window.Messages.strOther, otherTime]);
|
|
}
|
|
|
|
numberTable += '<tr><td><b>' + window.Messages.strTotalTime + '</b></td><td>' + prettyProfilingNum(totalTime, 2) + '</td></tr>';
|
|
numberTable += '</tbody></table>';
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder td.chart').append(
|
|
'<b>' + window.Messages.strProfilingResults + ' ' + $('#profiling_docu').html() + '</b> ' +
|
|
'(<a href="#showNums">' + window.Messages.strTable + '</a>, <a href="#showChart">' + window.Messages.strChart + '</a>)<br>' +
|
|
numberTable + ' <div style="height: 500px"><canvas id="queryProfilingCanvas" role="img"></canvas></div>');
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder a[href="#showNums"]').on('click', function () {
|
|
$('#queryAnalyzerDialog').find('#queryProfilingCanvas').hide();
|
|
$('#queryAnalyzerDialog').find('table.queryNums').show();
|
|
|
|
return false;
|
|
});
|
|
|
|
$('#queryAnalyzerDialog').find('div.placeHolder a[href="#showChart"]').on('click', function () {
|
|
$('#queryAnalyzerDialog').find('#queryProfilingCanvas').show();
|
|
$('#queryAnalyzerDialog').find('table.queryNums').hide();
|
|
|
|
return false;
|
|
});
|
|
|
|
profilingChart = createProfilingChart('queryProfilingCanvas', chartData, 'right');
|
|
}
|
|
});
|
|
|
|
return profilingChart;
|
|
}
|
|
|
|
/* Saves the monitor to localstorage */
|
|
function saveMonitor () {
|
|
const gridCopy = {};
|
|
|
|
$.each(runtime.charts, function (key, elem) {
|
|
gridCopy[key] = {};
|
|
gridCopy[key].nodes = elem.nodes;
|
|
gridCopy[key].settings = elem.settings;
|
|
gridCopy[key].title = elem.title;
|
|
gridCopy[key].series = elem.series;
|
|
gridCopy[key].maxYLabel = elem.maxYLabel;
|
|
});
|
|
|
|
if (isStorageSupported('localStorage')) {
|
|
window.localStorage.monitorCharts = JSON.stringify(gridCopy);
|
|
window.localStorage.monitorSettings = JSON.stringify(monitorSettings);
|
|
window.localStorage.monitorVersion = monitorProtocolVersion;
|
|
}
|
|
|
|
$('#monitorResetConfigButton').show();
|
|
}
|
|
});
|
|
|
|
// Run the monitor once loaded
|
|
AJAX.registerOnload('server/status/monitor.js', function () {
|
|
$('#monitorPauseResumeButton').trigger('click');
|
|
});
|