Skip to content

Commit 9edbb0b

Browse files
committed
Remove js from functions.js that was added back by accident
1 parent 326f771 commit 9edbb0b

File tree

1 file changed

+0
-93
lines changed
  • server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js

1 file changed

+0
-93
lines changed

server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/functions.js

-93
Original file line numberDiff line numberDiff line change
@@ -443,99 +443,6 @@ function getTableServers(tableID) {
443443
return getJSONForTable('/rest/tables/' + tableID, 'tableServers');
444444
}
445445

446-
/**
447-
* REST GET call for the logs, stores it on a sessionStorage variable
448-
*/
449-
function getLogs() {
450-
return getJSONForTable('/rest/logs', 'logs');
451-
}
452-
453-
/**
454-
* REST POST call to clear logs
455-
*/
456-
function clearLogs() {
457-
doLoggedPostCall('/rest/logs/clear', refresh, false);
458-
}
459-
460-
//// Overview Plots Rest Calls
461-
462-
/**
463-
* REST GET call for the ingest rate,
464-
* stores it on a sessionStorage variable
465-
*/
466-
function getIngestRate() {
467-
return getJSONForTable('/rest/statistics/time/ingestRate', 'ingestRate');
468-
}
469-
470-
/**
471-
* REST GET call for the scan entries,
472-
* stores it on a sessionStorage variable
473-
*/
474-
function getScanEntries() {
475-
return getJSONForTable('/rest/statistics/time/scanEntries', 'scanEntries');
476-
}
477-
478-
/**
479-
* REST GET call for the ingest byte rate,
480-
* stores it on a sessionStorage variable
481-
*/
482-
function getIngestByteRate() {
483-
return getJSONForTable('/rest/statistics/time/ingestByteRate', 'ingestMB');
484-
}
485-
486-
/**
487-
* REST GET call for the query byte rate, stores it on a sessionStorage variable
488-
*/
489-
function getQueryByteRate() {
490-
return getJSONForTable('/rest/statistics/time/queryByteRate', 'queryMB');
491-
}
492-
493-
/**
494-
* REST GET call for the load average, stores it on a sessionStorage variable
495-
*/
496-
function getLoadAverage() {
497-
return getJSONForTable('/rest/statistics/time/load', 'loadAvg');
498-
}
499-
500-
/**
501-
* REST GET call for the lookups, stores it on a sessionStorage variable
502-
*/
503-
function getLookups() {
504-
return getJSONForTable('/rest/statistics/time/lookups', 'lookups');
505-
}
506-
507-
/**
508-
* REST GET call for the minor compactions,
509-
* stores it on a sessionStorage variable
510-
*/
511-
function getMinorCompactions() {
512-
return getJSONForTable('/rest/statistics/time/minorCompactions', 'minorCompactions');
513-
}
514-
515-
/**
516-
* REST GET call for the major compactions,
517-
* stores it on a sessionStorage variable
518-
*/
519-
function getMajorCompactions() {
520-
return getJSONForTable('/rest/statistics/time/majorCompactions', 'majorCompactions');
521-
}
522-
523-
/**
524-
* REST GET call for the index cache hit rate,
525-
* stores it on a sessionStorage variable
526-
*/
527-
function getIndexCacheHitRate() {
528-
return getJSONForTable('/rest/statistics/time/indexCacheHitRate', 'indexCache');
529-
}
530-
531-
/**
532-
* REST GET call for the data cache hit rate,
533-
* stores it on a sessionStorage variable
534-
*/
535-
function getDataCacheHitRate() {
536-
return getJSONForTable('/rest/statistics/time/dataCacheHitRate', 'dataCache');
537-
}
538-
539446
/**
540447
* REST GET call for the server status, stores it on a sessionStorage variable
541448
*/

0 commit comments

Comments
 (0)