/** * Global variables */ var gangliaTableId = 'nodesDatatable'; var gangliaData; /** * Load Ganglia monitoring tool * * @return Nothing */ function loadGangliaMon() { // Get Ganglia tab var gangliaTab = $('#gangliamon'); // Check whether Ganglia RPMs are installed on the xCAT MN $.ajax({ url : 'lib/systemcmd.php', dataType : 'json', data : { cmd : 'rpm -q rrdtool ganglia-gmetad ganglia-gmond ganglia-web' }, success : checkGangliaRPMs }); // Create groups and nodes DIV var groups = $('
'); var nodes = $('
'); gangliaTab.append(groups); gangliaTab.append(nodes); // Create info bar var info = createInfoBar('Select a group to view the nodes summary'); nodes.append(info); // Get groups $.ajax( { url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'extnoderange', tgt : '/.*', args : 'subgroups', msg : '' }, success : loadGroups4Ganglia }); return; } /** * Check whether Ganglia RPMs are installed * * @param data * Data returned from HTTP request * @return Nothing */ function checkGangliaRPMs(data) { var gangliaTab = $('#gangliamon'); // Get the list of Ganglia RPMs installed var status = data.rsp.split(/\n/); var gangliaRPMs = [ "rrdtool", "ganglia-gmetad", "ganglia-gmond", "ganglia-web" ]; var warningMsg = 'Before continuing, please install the following packages: '; var missingRPMs = false; for ( var i in status) { if (status[i].indexOf("not installed") > -1) { warningMsg += gangliaRPMs[i] + ' '; missingRPMs = true; } } // Append Ganglia PDF if (missingRPMs) { warningMsg += ". Refer to xCAT2-Monitoring.pdf for more information."; var warningBar = createWarnBar(warningMsg); warningBar.css('margin-bottom', '10px'); warningBar.prependTo(gangliaTab); } else { // Check if ganglia is running on the xCAT MN $.ajax( { url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'monls', tgt : '', args : 'gangliamon', msg : '' }, /** * Append warning message * * @param data * Data returned from HTTP request * @return Nothing */ success : function(data) { if (data.rsp[0].indexOf("not-monitored") > -1) { // Create link to start Ganglia var startLnk = $('Click here'); startLnk.css( { 'color' : 'blue', 'text-decoration' : 'none' }); startLnk.click(function() { // Turn on Ganglia for all nodes monitorNode('', 'on'); }); // Create warning bar var warningBar = $('
'); var msg = $('

'); msg.append(''); msg.append('Please start Ganglia Monitoring on xCAT. '); msg.append(startLnk); msg.append(' to start Ganglia Monitoring.'); warningBar.append(msg); warningBar.css('margin-bottom', '10px'); // If there are any warning messages, append this warning after it var curWarnings = $('#gangliamon').find('.ui-state-error'); var gangliaTab = $('#gangliamon'); if (curWarnings.length) { curWarnings.after(warningBar); } else { warningBar.prependTo(gangliaTab); } } } }); } return; } /** * Load groups * * @param data * Data returned from HTTP request * @return */ function loadGroups4Ganglia(data) { // Remove loader $('#groups').find('img').remove(); // Save group in cookie var groups = data.rsp; setGroupsCookies(data); // Create a list of groups $('#groups').append('
Groups
'); var grouplist= $('
'); // Create a link for each group for (var i = groups.length; i--;) { grouplist.append('
' + groups[i] + '
'); } $('#groups').append(grouplist); // Bind the click event $('#groups .groupdiv div').bind('click', function(){ $('#nodes .jqplot-target').remove(); // Create loader var loader = createLoader(); loader.css('padding', '5px'); $('#nodes').append(loader); var thisGroup = $(this).text(); $('#groups .groupdiv div').removeClass('selectgroup'); $(this).addClass('selectgroup'); $.ajax( { url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'nodels', tgt : thisGroup, args : '', msg : thisGroup }, /** * Get node definitions * * @param data * Data returned from HTTP request * @return Nothing */ success : function(data) { var group = data.msg; // Get nodes definitions $.ajax( { url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'nodestat', tgt : group, args : '', msg : group }, success : loadGangliaSummary }); } }); }); } /** * Load Ganglia summary page * * @param data * Data returned from HTTP request * @return Nothing */ function loadGangliaSummary(data) { // Data returned var rsp = data.rsp; // Group name var group = data.msg; // Node attributes hash var attrs = new Object(); var node, status, args; for ( var i in rsp) { // Get key and value args = rsp[i].split(':', 2); node = jQuery.trim(args[0]); status = jQuery.trim(args[1]); // Create a hash table attrs[node] = new Object(); attrs[node]['status'] = status; } // Save node attributes hash gangliaData = attrs; // Get the status of Ganglia // Then create pie chart for node and Ganglia status $.ajax( { url : 'lib/cmd.php', dataType : 'json', data : { cmd : 'webrun', tgt : '', args : 'gangliastatus;' + group, msg : '' }, success : loadGangliaStatus }); } /** * Load the status of Ganglia for a given group * * @param data * Data returned from HTTP request * @return Nothing */ function loadGangliaStatus(data) { // Remove loader $('#nodes').find('img').remove(); // Get datatable var ganglia = data.rsp; var node, ping, monitored; // Count nodes that are pingable and not pingable // and nodes that are pingable and monitored by Ganglia var pingWGanglia = 0; var pingWOGanglia = 0; var noping = 0; for ( var i in ganglia) { // ganglia[0] = nodeName and ganglia[1] = state node = jQuery.trim(ganglia[i][0]); if (node) { monitored = jQuery.trim(ganglia[i][1]); ping = gangliaData[node]['status']; // If the node is monitored, increment count if (ping == 'sshd' && monitored == 'on') { pingWGanglia++; } else if (ping == 'sshd' && monitored == 'off') { pingWOGanglia++; } else { noping++; } } } // Create pie chart var summary = $('
'); $('#nodes').append(summary); // Create pie details var details = $('
'); $('#nodes').append(details); var pie = [['Ping + monitored', pingWGanglia], ['Ping + not monitored', pingWOGanglia], ['Noping', noping]]; var plot = $.jqplot('ganglia_sum', [pie], { seriesDefaults: { renderer: $.jqplot.PieRenderer, rendererOptions: { padding: 5, fill:true, shadow:true, shadowOffset: 2, shadowDepth: 5, shadowAlpha: 0.07, dataLabels : 'value', showDataLabels: true } }, legend: { show: true, location: 'e' } }); // Change CSS styling for legend summary.find('table').css({ 'border-style': 'none' }).find('td').css({ 'border-style': 'none' }); // Open nodes page on-click $('#ganglia_sum').bind('jqplotDataClick', function(env, srIndex, ptIndex, data) { window.open('../xcat/index.php'); }); // Special note // To redraw pie chart: // - Use chart.series[0].data[i] to reference existing data // - Use chart.redraw() to redraw chart }