From: Alexander Moisseev Date: Sun, 12 Feb 2017 11:23:55 +0000 (+0300) Subject: [WebUI] Add neighbours RRD data consolidation X-Git-Tag: 1.5.0~127^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F1413%2Fhead;p=rspamd.git [WebUI] Add neighbours RRD data consolidation --- diff --git a/interface/js/app/graph.js b/interface/js/app/graph.js index 4ab3e2c13..9f8043958 100644 --- a/interface/js/app/graph.js +++ b/interface/js/app/graph.js @@ -151,6 +151,21 @@ function($, D3Evolution, unused) { var interface = {}; interface.draw = function(rspamd, graphs, neighbours, checked_server, type) { + function updateWidgets(data) { + graphs.graph.data(data); + if (!data) { + graphs.rrd_pie.destroy(); + drawRrdTable([]); + return; + } + var rrd_summary = getRrdSummary(data); + graphs.rrd_pie = rspamd.drawPie(graphs.rrd_pie, + "rrd-pie", + rrd_summary, + rrd_pie_config); + drawRrdTable(rrd_summary); + } + if (graphs.graph === undefined) { graphs.graph = initGraph(); } @@ -164,10 +179,44 @@ function($, D3Evolution, unused) { } if (checked_server === "All SERVERS") { - rspamd.alertMessage('alert-error', 'Data consolidation is not implemented yet'); - graphs.graph.data(); - graphs.rrd_pie.destroy(); - drawRrdTable([]); + rspamd.queryNeighbours("graph", function (neighbours_data) { + neighbours_data + .filter(function (d) { return d.status }) // filter out unavailable neighbours + .map(function (d){ return d.data; }) + .reduce(function (res, curr) { + if ((curr[0][0].x !== res[0][0].x) || + (curr[0][curr[0].length - 1].x !== res[0][res[0].length - 1].x)) { + rspamd.alertMessage('alert-error', + 'Neighbours time extents do not match. Check if time is synchronized on all servers.'); + updateWidgets(); + return; + } + + let data = []; + curr.forEach(function (action, j) { + data.push( + action.map(function (d, i) { + return { + x: d.x, + y: ((res[j][i].y === null) ? d.y : res[j][i].y + d.y) + }; + }) + ); + }); + updateWidgets(data); + }); + }, + function (serv, jqXHR, textStatus, errorThrown) { + var alert_status = serv.name + '_alerted'; + + if (!(alert_status in sessionStorage)) { + sessionStorage.setItem(alert_status, true); + rspamd.alertMessage('alert-error', 'Cannot receive RRD data from: ' + + serv.name + ', error: ' + errorThrown); + } + }, "GET", {}, {}, { + type: type + }); return; } @@ -183,13 +232,7 @@ function($, D3Evolution, unused) { xhr.setRequestHeader('Password', rspamd.getPassword()); }, success: function (data) { - var rrd_summary = getRrdSummary(data); - graphs.graph.data(data); - graphs.rrd_pie = rspamd.drawPie(graphs.rrd_pie, - "rrd-pie", - rrd_summary, - rrd_pie_config); - drawRrdTable(rrd_summary); + updateWidgets(data); }, error: function (jqXHR, textStatus, errorThrown) { rspamd.alertMessage('alert-error', 'Cannot receive throughput data: ' + @@ -198,6 +241,5 @@ function($, D3Evolution, unused) { }); }; - return interface; }); diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js index 576eda13b..13ffaba49 100644 --- a/interface/js/app/rspamd.js +++ b/interface/js/app/rspamd.js @@ -341,7 +341,7 @@ define(['jquery', 'd3pie', 'visibility', 'app/stats', 'app/graph', 'app/config', $.ajax(req_params); } - interface.queryNeighbours = function(req_url, on_success, on_error, method, headers, params) { + interface.queryNeighbours = function(req_url, on_success, on_error, method, headers, params, req_data) { $.ajax({ dataType: "json", type: "GET", @@ -378,6 +378,7 @@ define(['jquery', 'd3pie', 'visibility', 'app/stats', 'app/graph', 'app/config', var req_params = { type: method, jsonp: false, + data: req_data, beforeSend: function (xhr) { xhr.setRequestHeader("Password", getPassword());