Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B7D93200C5C for ; Thu, 6 Apr 2017 06:35:58 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B66F8160B94; Thu, 6 Apr 2017 04:35:58 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8D02D160BA9 for ; Thu, 6 Apr 2017 06:35:57 +0200 (CEST) Received: (qmail 6121 invoked by uid 500); 6 Apr 2017 04:35:56 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 5521 invoked by uid 99); 6 Apr 2017 04:35:55 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Apr 2017 04:35:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C9BDEDFC8E; Thu, 6 Apr 2017 04:35:55 +0000 (UTC) From: joshelser To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request #242: ACCUMULO-2181/3005 REST API and new Monitor UI Content-Type: text/plain Message-Id: <20170406043555.C9BDEDFC8E@git1-us-west.apache.org> Date: Thu, 6 Apr 2017 04:35:55 +0000 (UTC) archived-at: Thu, 06 Apr 2017 04:35:58 -0000 Github user joshelser commented on a diff in the pull request: https://github.com/apache/accumulo/pull/242#discussion_r110076953 --- Diff: server/monitor/src/main/resources/resources/functions.js --- @@ -0,0 +1,686 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// Suffixes for quantity +var QUANTITY_SUFFIX = ['', 'K', 'M', 'B', 'T', 'e15', 'e18', 'e21']; +// Suffixes for size +var SIZE_SUFFIX = ['', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']; + +/** + * Initializes Auto Refresh to false if it is not set, + * and creates listeners for auto refresh + */ +function setupAutoRefresh() { + // Sets auto refresh to true or false + if (!sessionStorage.autoRefresh) { + sessionStorage.autoRefresh = 'false'; + } + // Need this to set the initial value for the autorefresh on page load + if (sessionStorage.autoRefresh == 'false') { + $('.auto-refresh').parent().removeClass('active'); + } else { + $('.auto-refresh').parent().addClass('active'); + } + // Initializes the auto refresh on click listener + $('.auto-refresh').click(function(e) { + if ($(this).parent().attr('class') == 'active') { + $(this).parent().removeClass('active'); + sessionStorage.autoRefresh = 'false'; + } else { + $(this).parent().addClass('active'); + sessionStorage.autoRefresh = 'true'; + } + }); +} + +/** + * Global timer that checks for auto refresh status every 5 seconds + */ +TIMER = setInterval(function() { + if (sessionStorage.autoRefresh == 'true') { + $('.auto-refresh').parent().addClass('active'); + refresh(); + refreshNavBar(); + } else { + $('.auto-refresh').parent().removeClass('active'); + } +}, 5000); + +/** + * Empty function in case there is no refresh implementation + */ +function refresh() { +} + +/** + * Converts a number to a size with suffix + * + * @param {number} size Number to convert + * @return {string} Number with suffix added + */ +function bigNumberForSize(size) { + if (size === null) + size = 0; + return bigNumber(size, SIZE_SUFFIX, 1024); +} + +/** + * Converts a number to a quantity with suffix + * + * @param {number} quantity Number to convert + * @return {string} Number with suffix added + */ +function bigNumberForQuantity(quantity) { + if (quantity === null) + quantity = 0; + return bigNumber(quantity, QUANTITY_SUFFIX, 1000); +} + +/** + * Adds the suffix to the number, converts the number to one close to the base + * + * @param {number} big Number to convert + * @param {array} suffixes Suffixes to use for convertion + * @param {number} base Base to use for convertion + * @return {string} The new value with the suffix + */ +function bigNumber(big, suffixes, base) { + // If the number is smaller than the base, return thee number with no suffix + if (big < base) { + return big + suffixes[0]; + } + // Finds which suffix to use + var exp = Math.floor(Math.log(big) / Math.log(base)); + // Divides the bumber by the equivalent suffix number + var val = big / Math.pow(base, exp); + // Keeps the number to 2 decimal places and adds the suffix + return val.toFixed(2) + suffixes[exp]; +} + +/** + * Converts the time to short number and adds unit + * + * @param {number} time Time in microseconds + * @return {string} The time with units + */ +function timeDuration(time) { + var ms, sec, min, hr, day, yr; + ms = sec = min = hr = day = yr = -1; + + time = Math.floor(time); + + // If time is 0 return a dash + if (time == 0) { + return '—'; + } + + // Obtains the milliseconds, if time is 0, return milliseconds, and units + ms = time % 1000; + time = Math.floor(time / 1000); + if (time == 0) { + return ms + 'ms'; + } + + // Obtains the seconds, if time is 0, return seconds, milliseconds, and units + sec = time % 60; + time = Math.floor(time / 60); + if (time == 0) { + return sec + 's' + ' ' + ms + 'ms'; + } + + // Obtains the minutes, if time is 0, return minutes, seconds, and units + min = time % 60; + time = Math.floor(time / 60); + if (time == 0) { + return min + 'm' + ' ' + sec + 's'; + } + + // Obtains the hours, if time is 0, return hours, minutes, and units + hr = time % 24; + time = Math.floor(time / 24); + if (time == 0) { + return hr + 'h' + ' ' + min + 'm'; + } + + // Obtains the days, if time is 0, return days, hours, and units + day = time % 365; + time = Math.floor(time / 365); + if (time == 0) { + return day + 'd' + ' ' + hr + 'h'; + } + + // Obtains the years, if time is 0, return years, days, and units + yr = Math.floor(time); + return yr + 'y' + ' ' + day + 'd'; +} + +/** + * Sorts the selected table by column in the direction chosen + * + * @param {string} tableID Table to sort + * @param {string} direction Direction to sort table, asc or desc + * @param {number} n Column to sort + */ +function sortTables(tableID, direction, n) { + var table, rows, switching, i, x, y, h, shouldSwitch, dir, xFinal, yFinal; + table = document.getElementById(tableID); + switching = true; + + dir = direction; + sessionStorage.direction = dir; + + // Select the rows of the table + rows = table.getElementsByTagName('tr'); + + // Clears the sortable class from the table columns + var count = 0; + while (rows[0].getElementsByTagName('th').length > count) { + var tmpH = rows[0].getElementsByTagName('th')[count]; + tmpH.classList.remove('sortable'); + if (rows.length > 2) { + tmpH.classList.add('sortable'); + } + $(tmpH.getElementsByTagName('span')).remove(); + count += 1; + } + + // If there are more than 2 rows, add arrow to the selected column + if (rows.length <= 2) { + switching = false; + } else { + h = rows[0].getElementsByTagName('th')[n]; + if (dir == 'asc') { + $(h).append(''); + } else if (dir == 'desc') { + $(h).append(''); + } + } + + /* + * Make a loop that will continue until + * no switching has been done: + */ + while (switching) { + switching = false; + rows = table.getElementsByTagName('tr'); + + /* + * Loop through all table rows (except the + * first, which contains table headers): + */ + for (i = 1; i < (rows.length - 1); i++) { + shouldSwitch = false; + /* + * Get two elements to compare, + * one from current row and one from the next: + * If the element is a dash, convert to null, otherwise, + * if it is a string, convert to number + */ + x = rows[i].getElementsByTagName('td')[n].getAttribute('data-value'); + xFinal = (x === '-' || x === '—' ? + null : (Number(x) == x ? Number(x) : x)); + + y = rows[i + 1].getElementsByTagName('td')[n].getAttribute('data-value'); + yFinal = (y === '-' || y === '—' ? + null : (Number(y) == y ? Number(y) : y)); + + /* + * Check if the two rows should switch place, + * based on the direction, asc or desc: + */ + if (dir == 'asc') { + if (xFinal > yFinal || (xFinal !== null && yFinal === null)) { + // if so, mark as a switch and break the loop: + shouldSwitch = true; + break; + } + } else if (dir == 'desc') { + if (xFinal < yFinal || (yFinal !== null && xFinal === null)) { + // if so, mark as a switch and break the loop: + shouldSwitch = true; + break; + } + } + } + if (shouldSwitch) { + /* + * If a switch has been marked, make the switch + * and mark that a switch has been done: + */ + rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); + switching = true; + } + } +} + +/** + * Clears the selected table while leaving the headers + * + * @param {string} tableID Table to clear + */ +function clearTable(tableID) { + // JQuery selector to select all rows except for the first row (header) + $('#' + tableID).find('tr:not(:first)').remove(); +} + +///// REST Calls ///////////// + +/** + * REST GET call for the master information, + * stores it on a sessionStorage variable + */ +function getMaster() { + $.getJSON('/rest/master', function(data) { + sessionStorage.master = JSON.stringify(data); + }); +} + +/** + * REST GET call for the zookeeper information, + * stores it on a sessionStorage variable + */ +function getZK() { + $.getJSON('/rest/zk', function(data) { + sessionStorage.zk = JSON.stringify(data); + }); +} + +/** + * REST GET call for the namespaces, stores it on a global variable + */ +function getNamespaces() { + $.getJSON('/rest/tables/namespaces', function(data) { + NAMESPACES = JSON.stringify(data); + }); +} + +/** + * REST GET call for the tables on each namespace, + * stores it on a sessionStorage variable + * + * @param {array} namespaces Array holding the selected namespaces + */ +function getNamespaceTables(namespaces) { + + // Creates a JSON object to store the tables + var jsonObj = {}; + jsonObj.tables = []; + + /* If the namespace array include *, get all tables, otherwise, + * get tables from specific namespaces + */ + if (namespaces.indexOf('*') != -1) { + getTables(); + } else { + $.each(namespaces, function(key, val) { + /* Makes the rest call for each of the namespaces in the array, + * stores them on the JSON object + */ + if (val !== '*') { + var call = '/rest/tables/namespace/' + val; + $.getJSON(call, function(data) { + $.each(data.tables, function(key2, val2) { + jsonObj.tables.push(val2); + }); + }); + } + }); + sessionStorage.tables = JSON.stringify(jsonObj); + } +} + +/** + * REST GET call for the tables, stores it on a sessionStorage variable + */ +function getTables() { + $.getJSON('/rest/tables', function(data) { + sessionStorage.tables = JSON.stringify(data); + }); +} + +/** + * REST POST call to clear a specific dead server + * + * @param {string} server Dead Server ID + */ +function clearDeadServers(server) { + var call = '/rest/tservers?server=' + server; + $.post(call); +} + +/** + * REST GET call for the tservers, stores it on a sessionStorage variable + */ +function getTServers() { + $.getJSON('/rest/tservers', function(data) { + sessionStorage.tservers = JSON.stringify(data); + }); +} + +/** + * REST GET call for the tservers, stores it on a sessionStorage variable + * + * @param {string} server Server ID + */ +function getTServer(server) { + var call = '/rest/tservers/' + server; + $.getJSON(call, function(data) { + sessionStorage.server = JSON.stringify(data); + }); +} + +/** + * REST GET call for the scans, stores it on a sessionStorage variable + */ +function getScans() { + $.getJSON('/rest/scans', function(data) { + sessionStorage.scans = JSON.stringify(data); + }); +} + +/** + * REST GET call for the bulk imports, stores it on a sessionStorage variable + */ +function getBulkImports() { + $.getJSON('/rest/bulkImports', function(data) { + sessionStorage.bulkImports = JSON.stringify(data); + }); +} + +/** + * REST GET call for the garbage collector, + * stores it on a sessionStorage variable + */ +function getGarbageCollector() { + $.getJSON('/rest/gc', function(data) { + sessionStorage.gc = JSON.stringify(data); + }); +} + +/** + * REST GET call for the server stats, stores it on a sessionStorage variable + */ +function getServerStats() { + $.getJSON('/rest/tservers/serverStats', function(data) { + sessionStorage.serverStats = JSON.stringify(data); + }); +} + +/** + * REST GET call for the recovery list, stores it on a sessionStorage variable + */ +function getRecoveryList() { + $.getJSON('/rest/tservers/recovery', function(data) { + sessionStorage.recoveryList = JSON.stringify(data); + }); +} + +/** + * REST GET call for the participating tablet servers, + * stores it on a sessionStorage variable + * + * @param {string} table Table ID + */ +function getTableServers(table) { + var call = '/rest/tables/' + table; + $.getJSON(call, function(data) { + sessionStorage.tableServers = JSON.stringify(data); + }); +} + +/** + * REST GET call for the trace summary, stores it on a sessionStorage variable + * + * @param {string} minutes Number of minutes to display trace summary + */ +function getTraceSummary(minutes) { + var call = '/rest/trace/summary/' + minutes; + $.getJSON(call, function(data) { + sessionStorage.traceSummary = JSON.stringify(data); + }); +} + +/** + * REST GET call for the trace type, stores it on a sessionStorage variable + * + * @param {string} type Type of the trace + * @param {string} minutes Number of minutes to display trace + */ +function getTraceOfType(type, minutes) { + var call = '/rest/trace/listType/' + type + '/' + minutes; + $.getJSON(call, function(data) { + sessionStorage.traceType = JSON.stringify(data); + }); +} + +/** + * REST GET call for the trace id, stores it on a sessionStorage variable + * + * @param {string} id Trace ID + */ +function getTraceShow(id) { + var call = '/rest/trace/show/' + id; + $.getJSON(call, function(data) { + sessionStorage.traceShow = JSON.stringify(data); + }); +} + +/** + * REST GET call for the logs, stores it on a sessionStorage variable + */ +function getLogs() { + $.getJSON('/rest/logs', function(data) { + sessionStorage.logs = JSON.stringify(data); + }); +} + +/** + * REST POST call to clear logs + */ +function clearLogs() { + $.post('/rest/logs'); +} + +/** + * REST GET call for the problems + */ +function getProblems() { + getProblemSummary(); + getProblemDetails(); +} + +/** + * REST POST call to clear all table problems + * + * @param {string} tableID Table ID + */ +function clearTableProblems(tableID) { + var call = '/rest/problems/summary?s=' + tableID; + // Change plus sign to use ASCII value to send it as a URL query parameter + call = call.split('+').join('%2B'); + $.post(call); +} + +/** + * REST POST call to clear detail problems + * + * @param {string} table Table ID + * @param {string} resource Resource for problem + * @param {string} type Type of problem + */ +function clearDetailsProblems(table, resource, type) { + var call = '/rest/problems/details?table=' + table + '&resource=' + + resource + '&ptype=' + type; + // Changes plus sign to use ASCII value to send it as a URL query parameter + call = call.split('+').join('%2B'); --- End diff -- why not have a method to replace '+' with '%2B' when constructing the URL path in the first place? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---