From: Costa Tsaousis Date: Tue, 31 May 2016 00:19:25 +0000 (+0300) Subject: added mysql charts info on a few charts X-Git-Tag: v1.3.0~183^2~4 X-Git-Url: https://arthur.barton.de/gitweb/?a=commitdiff_plain;h=a02f7e35b5f3d4860f180a5dd459a156bafa13c4;p=netdata.git added mysql charts info on a few charts --- diff --git a/web/index.html b/web/index.html index d79ede3c..89bd7262 100644 --- a/web/index.html +++ b/web/index.html @@ -1341,6 +1341,46 @@ var submenuData = { }; var chartData = { + 'mysql.net': { + info: 'The amount of data sent to mysql clients (out) and received from mysql clients (in).' + }, + + 'mysql.queries': { + info: 'The number of statements executed by the server.' + }, + + 'mysql.handlers': { + info: 'Usage of the internal handlers of mysql. This chart provides very good insights of what the mysql server is actually doing.' + + ' (if the chart is not showing all these dimensions it is because they are zero - set Which dimensions to show? to All from the dashboard settings, to render even the zero values)' + }, + + 'mysql.table_locks': { + info: 'MySQL table locks counters: ' + }, + 'system.cpu': { info: 'Total CPU utilization (all cores). 100% here means there is no CPU idle time at all. You can get per core usage at the CPUs section and per application usage at the Applications Monitoring section.
Keep an eye on iowait ' + sparkline('system.cpu', 'iowait', '%') + '. If it is constantly high, your disks are a bottleneck and they slow your system down.
Another important metric worth monitoring, is softirq ' + sparkline('system.cpu', 'softirq', '%') + '. A constantly high percentage of softirq may indicate network drivers issues.' },