Server IP : 184.154.167.98 / Your IP : 3.147.71.67 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/www/nextcloud/apps/serverinfo/js/ |
Upload File : |
/** * @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org> * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ (function ($, OC) { var memoryUsageChart, memoryUsageLine, swapUsageLine, cpuLoadChart, cpuLoadLine, activeUsersChart, sharesChart; $(document).ready(function () { var x = document.getElementById('rambox'); x.style.backgroundColor = OCA.Theming ? OCA.Theming.color : 'rgb(54, 129, 195)'; var x = document.getElementById('swapbox'); x.style.backgroundColor = 'rgba(100, 100, 100, 0.8)'; var updateTimer = setInterval(updateInfo, 300); resizeSystemCharts(); updateActiveUsersStatistics(); updateShareStatistics(); setHumanReadableSizeToElement("databaseSize"); setHumanReadableSizeToElement("phpMemLimit"); setHumanReadableSizeToElement("phpUploadMaxSize"); setHumanReadableSizeToElement("systemDiskFreeSpace"); $('#ocsEndPoint span.icon-info').tooltip({placement: 'top'}); initMonitoringLinkToClipboard(); $("#monitoring-endpoint-url").on('click', function() { $(this).select(); }); function updateInfo() { var url = OC.generateUrl('/apps/serverinfo/update'); $.get(url).success(function (response) { updateCPUStatistics(response.system.cpuload); updateMemoryStatistics(response.system.mem_total, response.system.mem_free, response.system.swap_total, response.system.swap_free); }); } }); $(window).resize(function () { resizeSystemCharts(); }); function updateCPUStatistics (cpuload) { if (cpuload === 'N/A') { $('#cpuFooterInfo').text(t('serverinfo', 'CPU info not available')); $('#cpuloadcanvas').addClass('hidden'); return; } else if ($("#cpuloadcanvas").hasClass('hidden')) { $("#cpuloadcanvas").removeClass('hidden'); } var cpu1 = cpuload[0], cpu2 = cpuload[1], cpu3 = cpuload[2]; if (typeof cpuLoadChart === 'undefined') { cpuLoadChart = new SmoothieChart( { millisPerPixel: 100, minValue: 0, grid: { fillStyle: 'rgba(249,249,249,1)', strokeStyle: 'transparent' }, labels: { fillStyle: 'rgba(0,0,0,0.4)', fontSize: 12 } }); cpuLoadChart.streamTo(document.getElementById("cpuloadcanvas"), 1000/*delay*/); cpuLoadLine = new TimeSeries(); cpuLoadChart.addTimeSeries(cpuLoadLine, { lineWidth: 1, strokeStyle: 'rgb(180, 180, 180)', fillStyle: OCA.Theming ? OCA.Theming.color : 'rgb(54, 129, 195)' }); } $('#cpuFooterInfo').text(t('serverinfo', 'Load average')+": "+cpu1+" ("+t('serverinfo', 'Last minute')+")"); cpuLoadLine.append(new Date().getTime(), cpu1); } function updateMemoryStatistics (memTotal, memFree, swapTotal, swapFree) { if (memTotal === 'N/A' || memFree === 'N/A') { $('#memFooterInfo').text(t('serverinfo', 'Memory info not available')); $('#memorycanvas').addClass('hidden'); return; } else if ($("#memorycanvas").hasClass('hidden')) { $("#memorycanvas").removeClass('hidden'); } var memTotalBytes = memTotal * 1024, memUsageBytes = (memTotal - memFree) * 1024, memTotalGB = memTotal / (1024 * 1024), memUsageGB = (memTotal - memFree) / (1024 * 1024); var swapTotalBytes = swapTotal * 1024, swapUsageBytes = (swapTotal - swapFree) * 1024, swapTotalGB = swapTotal / (1024 * 1024), swapUsageGB = (swapTotal - swapFree) / (1024 * 1024); if (memTotalGB > swapTotalGB) { var maxValueOfChart = memTotalGB; } else { var maxValueOfChart = swapTotalGB; } if (typeof memoryUsageChart === 'undefined') { memoryUsageChart = new SmoothieChart( { millisPerPixel: 100, maxValue: maxValueOfChart, minValue: 0, grid: { fillStyle: 'rgba(0,0,0,0)', strokeStyle: 'transparent' }, labels: { fillStyle: 'rgba(0,0,0,0.4)', fontSize: 12 } }); memoryUsageChart.streamTo(document.getElementById("memorycanvas"), 1000/*delay*/); memoryUsageLine = new TimeSeries(); memoryUsageChart.addTimeSeries(memoryUsageLine, {lineWidth:1, strokeStyle:'rgb(180, 180, 180)', fillStyle:OCA.Theming ? OCA.Theming.color : 'rgb(54, 129, 195)'}); swapUsageLine = new TimeSeries(); memoryUsageChart.addTimeSeries(swapUsageLine, {lineWidth:1, strokeStyle:'rgb(100, 100, 100)', fillStyle:'rgba(100, 100, 100, 0.2)'}); } $('#memFooterInfo').text("RAM: "+t('serverinfo', 'Total')+": "+OC.Util.humanFileSize(memTotalBytes)+" - "+t('serverinfo', 'Current usage')+": "+OC.Util.humanFileSize(memUsageBytes)); memoryUsageLine.append(new Date().getTime(), memUsageGB); $('#swapFooterInfo').text("SWAP: "+t('serverinfo', 'Total')+": "+OC.Util.humanFileSize(swapTotalBytes)+" - "+t('serverinfo', 'Current usage')+": "+OC.Util.humanFileSize(swapUsageBytes)); swapUsageLine.append(new Date().getTime(), swapUsageGB); } function updateShareStatistics () { var shares = $('#sharecanvas').data('shares'), shares_data = [shares.num_shares_user, shares.num_shares_groups, shares.num_shares_link, shares.num_shares_mail, shares.num_fed_shares_sent, shares.num_fed_shares_received, shares.num_shares_room], stepSize = 0; if (Math.max.apply(null, shares_data) < 10) { stepSize = 1; } if (typeof sharesChart === 'undefined') { var ctx = document.getElementById("sharecanvas"); sharesChart = new Chart(ctx, { type: 'bar', data: { labels: [ t('serverinfo', 'Users'), t('serverinfo', 'Groups'), t('serverinfo', 'Links'), t('serverinfo', 'Mails'), t('serverinfo', 'Federated sent'), t('serverinfo', 'Federated received'), t('serverinfo', 'Talk conversations'), ], datasets: [{ label: " ", data: shares_data, backgroundColor: [ 'rgba(0, 76, 153, 0.2)', 'rgba(51, 153, 255, 0.2)', 'rgba(207, 102, 0, 0.2)', 'rgba(255, 178, 102, 0.2)', 'rgba(0, 153, 0, 0.2)', 'rgba(153, 255, 51, 0.2)', 'rgba(178, 102, 255, 0.2)' ], borderColor: [ 'rgba(0, 76, 153, 1)', 'rgba(51, 153, 255, 1)', 'rgba(207, 102, 0, 1)', 'rgba(255, 178, 102, 1)', 'rgba(0, 153, 0, 1)', 'rgba(153, 255, 51, 1)', 'rgba(178, 102, 255, 1)' ], borderWidth: 1 }] }, options: { legend: { display:false }, scales: { yAxes: [{ ticks: { min: 0, stepSize: stepSize } }] } } }); } sharesChart.update(); } function updateActiveUsersStatistics () { var activeUsers = $('#activeuserscanvas').data('users'), activeUsers_data = [activeUsers.last24hours, activeUsers.last1hour, activeUsers.last5minutes], stepSize = 0; if (Math.max.apply(null, activeUsers_data) < 10) { stepSize = 1; } if (typeof activeUsersChart === 'undefined') { var ctx = document.getElementById("activeuserscanvas"); activeUsersChart = new Chart(ctx, { type: 'line', data: { labels: [ t('serverinfo', '24 hours'), t('serverinfo', '1 hour'), t('serverinfo', '5 mins') ], datasets: [{ label: " ", data: activeUsers_data, fill: false, borderColor: [ 'rgba(0, 0, 255, 1)' ], borderWidth: 1, borderDashOffset: 0.0, borderJoinStyle: 'miter', pointBorderColor: 'rgba(0, 0, 255, 1)', pointBackgroundColor: "#fff", pointBorderWidth: 1, pointHoverRadius: 5, pointHoverBackgroundColor: "rgba(0,0,255,0.6)", pointHoverBorderColor: "rgba(0, 0, 255, 1)", pointHoverBorderWidth: 1, pointRadius: 5, pointHitRadius: 10, lineTension: 0 }] }, options: { legend: { display:false }, scales: { yAxes: [{ ticks: { min: 0, stepSize: stepSize } }] } } }); } } function setHumanReadableSizeToElement (elementId) { var maxUploadSize = parseInt($('#' + elementId).text()); if ($.isNumeric(maxUploadSize)) { $('#' + elementId).text(OC.Util.humanFileSize(maxUploadSize)); } } function resizeSystemCharts () { var cpu_canvas = document.getElementById("cpuloadcanvas"), mem_canvas = document.getElementById("memorycanvas"); activeuserscanvas = document.getElementById("activeuserscanvas"); sharecanvas = document.getElementById("sharecanvas"); var newWidth = $('#cpuSection').width(); newHeight = newWidth / 4 if (newWidth <= 100) newWidth = 100; if (newWidth >= 500) newWidth = 500; if (newHeight > 150) newHeight = 150; cpuloadcanvas.width = newWidth; cpuloadcanvas.height = newHeight; mem_canvas.width = newWidth; mem_canvas.height = newHeight; activeuserscanvas.width = 600; activeuserscanvas.height = 500; sharecanvas.width = 800; } function initMonitoringLinkToClipboard() { var monAPIBox = $("#ocsEndPoint"); /* reused from settings/js/authtoken_view.js */ monAPIBox.find('.clipboardButton').tooltip({placement: 'bottom', title: t('core', 'Copy'), trigger: 'hover'}); // Clipboard! var clipboard = new Clipboard('.clipboardButton'); clipboard.on('success', function(e) { var $input = $(e.trigger); $input.tooltip('hide') .attr('data-original-title', t('core', 'Copied!')) .tooltip('fixTitle') .tooltip({placement: 'bottom', trigger: 'manual'}) .tooltip('show'); _.delay(function() { $input.tooltip('hide') .attr('data-original-title', t('core', 'Copy')) .tooltip('fixTitle'); }, 3000); }); clipboard.on('error', function (e) { var $input = $(e.trigger); var actionMsg = ''; if (/iPhone|iPad/i.test(navigator.userAgent)) { actionMsg = t('core', 'Not supported!'); } else if (/Mac/i.test(navigator.userAgent)) { actionMsg = t('core', 'Press ⌘-C to copy.'); } else { actionMsg = t('core', 'Press Ctrl-C to copy.'); } $input.tooltip('hide') .attr('data-original-title', actionMsg) .tooltip('fixTitle') .tooltip({placement: 'bottom', trigger: 'manual'}) .tooltip('show'); _.delay(function () { $input.tooltip('hide') .attr('data-original-title', t('core', 'Copy')) .tooltip('fixTitle'); }, 3000); }); } })(jQuery, OC); $(document).ready(function(){ $.ajax({ url: OC.linkToOCS('apps/serverinfo/api/v1/', 2) + 'diskdata?format=json', method: "GET", success: function(response) { var diskdata = response.ocs.data; var x = document.querySelectorAll(".DiskChart"); var i; for (i = 0; i < x.length; i++) { var chartdata = { labels: ["Used GB", "Available GB"], datasets : [ { backgroundColor: [ OCA.Theming ? OCA.Theming.color : 'rgb(54, 129, 195)', 'rgb(249, 249, 249)', ], borderWidth: 0, data: diskdata[i] } ] }; var ctx = x[i]; var barGraph = new Chart(ctx, { type: 'doughnut', data: chartdata, options: { legend: { display: false, }, tooltips: { enabled: true, }, cutoutPercentage: 60 } }); } }, error: function(data) { console.log(data); } }); var interval = 1000; // 1000 = 1 second, 3000 = 3 seconds function doAjax() { $.ajax({ url: OC.linkToOCS('apps/serverinfo/api/v1/', 2) + 'basicdata?format=json', method: "GET", success: function(response) { var data = response.ocs.data; document.getElementById("servertime").innerHTML = data.servertime; document.getElementById("uptime").innerHTML = data.uptime; document.getElementById("timeservers").innerHTML = data.timeservers; }, error: function(data) { console.log(data); }, complete: function (data) { setTimeout(doAjax, interval); } }); } setTimeout(doAjax, interval); });