@@ -443,99 +443,6 @@ function getTableServers(tableID) {
443
443
return getJSONForTable ( '/rest/tables/' + tableID , 'tableServers' ) ;
444
444
}
445
445
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
-
539
446
/**
540
447
* REST GET call for the server status, stores it on a sessionStorage variable
541
448
*/
0 commit comments