/* 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. */ solrAdminApp.controller('IndexController', function($scope, System, Cores, Constants) { $scope.resetMenu("index", Constants.IS_ROOT_PAGE); $scope.reload = function() { System.get(function(data) { $scope.system = data; const releaseDate = parse_release_date($scope.system.lucene['solr-impl-version']) $scope.releaseDaysOld = (new Date() - releaseDate)/1000/60/60/24; if ("username" in data.security) { // Needed for Kerberos, since this is the only place from where // Kerberos username can be obtained. sessionStorage.setItem("auth.username", data.security.username); } if (data.security.authenticationPlugin) { $scope.isSecurityEnabled = true } // load average, unless its negative (means n/a on windows, etc) if (data.system.systemLoadAverage >= 0) { $scope.load_average = data.system.systemLoadAverage.toFixed(2); } // physical memory var memoryMax = parse_memory_value(data.system.totalPhysicalMemorySize); $scope.memoryTotal = parse_memory_value(data.system.totalPhysicalMemorySize - data.system.freePhysicalMemorySize); $scope.memoryPercentage = ($scope.memoryTotal / memoryMax * 100).toFixed(1)+ "%"; $scope.memoryMax = pretty_print_bytes(memoryMax); $scope.memoryTotalDisplay = pretty_print_bytes($scope.memoryTotal); // swap space var swapMax = parse_memory_value(data.system.totalSwapSpaceSize); $scope.swapTotal = parse_memory_value(data.system.totalSwapSpaceSize - data.system.freeSwapSpaceSize); $scope.swapPercentage = ($scope.swapTotal / swapMax * 100).toFixed(1)+ "%"; $scope.swapMax = pretty_print_bytes(swapMax); $scope.swapTotalDisplay = pretty_print_bytes($scope.swapTotal); // file handles $scope.fileDescriptorPercentage = (data.system.openFileDescriptorCount / data.system.maxFileDescriptorCount *100).toFixed(1) + "%"; // java memory var javaMemoryMax = parse_memory_value(data.jvm.memory.raw.max || data.jvm.memory.max); $scope.javaMemoryTotal = parse_memory_value(data.jvm.memory.raw.total || data.jvm.memory.total); $scope.javaMemoryUsed = parse_memory_value(data.jvm.memory.raw.used || data.jvm.memory.used); $scope.javaMemoryTotalPercentage = ($scope.javaMemoryTotal / javaMemoryMax *100).toFixed(1) + "%"; $scope.javaMemoryUsedPercentage = ($scope.javaMemoryUsed / $scope.javaMemoryTotal *100).toFixed(1) + "%"; $scope.javaMemoryPercentage = ($scope.javaMemoryUsed / javaMemoryMax * 100).toFixed(1) + "%"; $scope.javaMemoryTotalDisplay = pretty_print_bytes($scope.javaMemoryTotal); $scope.javaMemoryUsedDisplay = pretty_print_bytes($scope.javaMemoryUsed); // @todo These should really be an AngularJS Filter: {{ javaMemoryUsed | bytes }} $scope.javaMemoryMax = pretty_print_bytes(javaMemoryMax); // no info bar: $scope.noInfo = !( data.system.totalPhysicalMemorySize && data.system.freePhysicalMemorySize && data.system.totalSwapSpaceSize && data.system.freeSwapSpaceSize && data.system.openFileDescriptorCount && data.system.maxFileDescriptorCount); // save a copy of the original commandline args $scope.commandLineArgsUnsorted = [...data.jvm.jmx.commandLineArgs]; // get commandline args latest orderby or defaults to "Unsorted" $scope.commandLineOrderBy = sessionStorage.getItem("commandline.orderby") || "Unsorted"; $scope.showCommandLineArgs(); }); }; $scope.toggleCommandLineOrder = function() { $scope.commandLineOrderBy = ($scope.commandLineOrderBy=="Sorted") ? "Unsorted":"Sorted"; sessionStorage.setItem("commandline.orderby", $scope.commandLineOrderBy); $scope.showCommandLineArgs(); } $scope.showCommandLineArgs = function() { if ($scope.commandLineOrderBy == "Sorted") { $scope.commandLineArgs = [...$scope.commandLineArgsUnsorted].sort(); } else { $scope.commandLineArgs = $scope.commandLineArgsUnsorted; } } $scope.reload(); }); var parse_memory_value = function( value ) { if( value !== Number( value ) ) { var units = 'BKMGTPEZY'; var match = value.match( /^(\d+([,\.]\d+)?) (\w).*$/ ); var value = parseFloat( match[1] ) * Math.pow( 1024, units.indexOf( match[3].toUpperCase() ) ); } return value; }; const parse_release_date = function(value) { const match = value.match( /.* (20\d\d-[0-1]\d-[0-3]\d) .*/ ); return match === null ? new Date() : new Date(match[1]); }; var pretty_print_bytes = function(byte_value) { var unit = null; byte_value /= 1024; byte_value /= 1024; unit = 'MB'; if( 1024 <= byte_value ) { byte_value /= 1024; unit = 'GB'; } return byte_value.toFixed( 2 ) + ' ' + unit; };