From b037e914be7ce904924602265dacf33a3f59abce Mon Sep 17 00:00:00 2001 From: nicolargo Date: Tue, 5 Nov 2019 18:11:11 +0100 Subject: First try to eable the connections plugin in the WebUI... (it's a fail) --- .../static/js/components/glances/controller.js | 8 + .../outputs/static/js/components/glances/view.html | 1 + glances/outputs/static/js/components/index.js | 1 + .../js/components/plugin-connections/component.js | 11 + .../js/components/plugin-connections/controller.js | 40 +++ .../js/components/plugin-connections/view.html | 10 + glances/outputs/static/public/glances.js | 388 +++++++++++++-------- glances/outputs/static/public/glances.map.js | 2 +- 8 files changed, 311 insertions(+), 150 deletions(-) create mode 100644 glances/outputs/static/js/components/plugin-connections/component.js create mode 100644 glances/outputs/static/js/components/plugin-connections/controller.js create mode 100644 glances/outputs/static/js/components/plugin-connections/view.html diff --git a/glances/outputs/static/js/components/glances/controller.js b/glances/outputs/static/js/components/glances/controller.js index 503fad25..f5b0aa17 100644 --- a/glances/outputs/static/js/components/glances/controller.js +++ b/glances/outputs/static/js/components/glances/controller.js @@ -45,6 +45,14 @@ export default function GlancesController($scope, GlancesStats, hotkeys, ARGUMEN } }); + // k => Show/hide connections stats + hotkeys.add({ + combo: 'k', + callback: function () { + ARGUMENTS.disable_connections = !ARGUMENTS.disable_connections; + } + }); + // n => Show/hide network stats hotkeys.add({ combo: 'n', diff --git a/glances/outputs/static/js/components/glances/view.html b/glances/outputs/static/js/components/glances/view.html index 0a52e83c..edbaa649 100644 --- a/glances/outputs/static/js/components/glances/view.html +++ b/glances/outputs/static/js/components/glances/view.html @@ -61,6 +61,7 @@ \n"; window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]); module.exports = path; @@ -57768,6 +57778,86 @@ module.exports = path; +/* unused harmony default export */ var _unused_webpack_default_export = (__WEBPACK_IMPORTED_MODULE_0_angular___default.a.module("glancesApp").component("glancesPluginConnections", { + controller: __WEBPACK_IMPORTED_MODULE_1__controller__["a" /* default */], + controllerAs: "vm", + templateUrl: __WEBPACK_IMPORTED_MODULE_2__view_html___default.a, +})); + + +/***/ }), +/* 37 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (immutable) */ __webpack_exports__["a"] = GlancesPluginConnectionsController; + +function GlancesPluginConnectionsController($scope, GlancesStats) { + var vm = this; + var _view = {}; + + vm.listen = null; + vm.initiated = null; + vm.established = null; + vm.terminated = null; + vm.tracked = null; + + vm.$onInit = function () { + loadData(GlancesStats.getData()); + }; + + $scope.$on('data_refreshed', function (event, data) { + loadData(data); + }); + + var loadData = function (data) { + var stats = data.stats['connections']; + _view = data.views['connections']; + + vm.isLinux = data.isLinux; + + vm.listen = stats.listen; + vm.initiated = stats.initiated; + vm.established = stats.established; + vm.terminated = stats.terminated; + //vm.tracked = null; + } + + vm.getDecoration = function (value) { + if (_view[value] === undefined) { + return; + } + + return _view[value].decoration.toLowerCase(); + }; +} + + +/***/ }), +/* 38 */ +/***/ (function(module, exports) { + +var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-connections/view.html'; +var html = "
0\">\n
IRQ
\n
\n
Rate/s
\n
\n
\n
{{irq.irq_line}}
\n
\n
{{irq.irq_rate}}
\n
\n"; +window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]); +module.exports = path; + +/***/ }), +/* 39 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(40); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(41); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); + + + + + + /* unused harmony default export */ var _unused_webpack_default_export = (__WEBPACK_IMPORTED_MODULE_0_angular___default.a.module("glancesApp").component("glancesPluginCpu", { controller: __WEBPACK_IMPORTED_MODULE_1__controller__["a" /* default */], controllerAs: 'vm', @@ -57776,7 +57866,7 @@ module.exports = path; /***/ }), -/* 37 */ +/* 40 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -57850,7 +57940,7 @@ function GlancesPluginCpuController($scope, GlancesStats) { /***/ }), -/* 38 */ +/* 41 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-cpu/view.html'; @@ -57859,14 +57949,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 39 */ +/* 42 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(40); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(41); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(43); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(44); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -57882,7 +57972,7 @@ module.exports = path; /***/ }), -/* 40 */ +/* 43 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -57926,7 +58016,7 @@ function GlancesPluginDiskioController($scope, $filter, GlancesStats, ARGUMENTS) /***/ }), -/* 41 */ +/* 44 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-diskio/view.html'; @@ -57935,14 +58025,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 42 */ +/* 45 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(43); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(44); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(46); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(47); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -57958,7 +58048,7 @@ module.exports = path; /***/ }), -/* 43 */ +/* 46 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58009,7 +58099,7 @@ function GlancesPluginDockerController($scope, GlancesStats) { /***/ }), -/* 44 */ +/* 47 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-docker/view.html'; @@ -58018,14 +58108,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 45 */ +/* 48 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(46); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(47); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(49); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(50); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58041,7 +58131,7 @@ module.exports = path; /***/ }), -/* 46 */ +/* 49 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58098,7 +58188,7 @@ function GlancesPluginFoldersController($scope, GlancesStats) { /***/ }), -/* 47 */ +/* 50 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-folders/view.html'; @@ -58107,14 +58197,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 48 */ +/* 51 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(49); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(50); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(52); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(53); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58130,7 +58220,7 @@ module.exports = path; /***/ }), -/* 49 */ +/* 52 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58188,7 +58278,7 @@ function GlancesPluginFsController($scope, $filter, GlancesStats, ARGUMENTS) { /***/ }), -/* 50 */ +/* 53 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-fs/view.html'; @@ -58197,14 +58287,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 51 */ +/* 54 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(52); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(53); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(55); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(56); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58220,7 +58310,7 @@ module.exports = path; /***/ }), -/* 52 */ +/* 55 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58294,7 +58384,7 @@ function GlancesPluginGpuController($scope, GlancesStats, ARGUMENTS) { /***/ }), -/* 53 */ +/* 56 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-gpu/view.html'; @@ -58303,14 +58393,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 54 */ +/* 57 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(55); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(56); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(58); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(59); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58326,7 +58416,7 @@ module.exports = path; /***/ }), -/* 55 */ +/* 58 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58363,7 +58453,7 @@ function GlancesPluginIpController($scope, GlancesStats, ARGUMENTS) { /***/ }), -/* 56 */ +/* 59 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-ip/view.html'; @@ -58372,14 +58462,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 57 */ +/* 60 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(58); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(59); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(61); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(62); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58395,7 +58485,7 @@ module.exports = path; /***/ }), -/* 58 */ +/* 61 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58432,7 +58522,7 @@ function GlancesPluginIrqController($scope, GlancesStats) { /***/ }), -/* 59 */ +/* 62 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-irq/view.html'; @@ -58441,14 +58531,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 60 */ +/* 63 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(61); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(62); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(64); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(65); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58464,7 +58554,7 @@ module.exports = path; /***/ }), -/* 61 */ +/* 64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58508,7 +58598,7 @@ function GlancesPluginLoadController($scope, GlancesStats) { /***/ }), -/* 62 */ +/* 65 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-load/view.html'; @@ -58517,14 +58607,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 63 */ +/* 66 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(64); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(65); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(67); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(68); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58540,7 +58630,7 @@ module.exports = path; /***/ }), -/* 64 */ +/* 67 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58584,7 +58674,7 @@ function GlancesPluginMemController($scope, GlancesStats) { /***/ }), -/* 65 */ +/* 68 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-mem/view.html'; @@ -58593,14 +58683,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 66 */ +/* 69 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(67); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(68); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(70); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(71); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58616,7 +58706,7 @@ module.exports = path; /***/ }), -/* 67 */ +/* 70 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58650,7 +58740,7 @@ function GlancesPluginMemMoreController($scope, GlancesStats) { /***/ }), -/* 68 */ +/* 71 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-mem-more/view.html'; @@ -58659,14 +58749,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 69 */ +/* 72 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(70); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(71); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(73); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(74); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58682,7 +58772,7 @@ module.exports = path; /***/ }), -/* 70 */ +/* 73 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58726,7 +58816,7 @@ function GlancesPluginMemswapController($scope, GlancesStats) { /***/ }), -/* 71 */ +/* 74 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-memswap/view.html'; @@ -58735,14 +58825,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 72 */ +/* 75 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(73); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(74); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(76); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(77); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58758,7 +58848,7 @@ module.exports = path; /***/ }), -/* 73 */ +/* 76 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58804,7 +58894,7 @@ function GlancesPluginNetworkController($scope, $filter, GlancesStats, ARGUMENTS /***/ }), -/* 74 */ +/* 77 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-network/view.html'; @@ -58813,14 +58903,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 75 */ +/* 78 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(76); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(79); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(79); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(82); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58836,7 +58926,7 @@ module.exports = path; /***/ }), -/* 76 */ +/* 79 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -58890,7 +58980,7 @@ function GlancesPluginPercpuController($scope, GlancesStats, GlancesPluginHelper /***/ }), -/* 77 */ +/* 80 */ /***/ (function(module, exports) { var g; @@ -58917,7 +59007,7 @@ module.exports = g; /***/ }), -/* 78 */ +/* 81 */ /***/ (function(module, exports) { module.exports = function(module) { @@ -58945,7 +59035,7 @@ module.exports = function(module) { /***/ }), -/* 79 */ +/* 82 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-percpu/view.html'; @@ -58954,14 +59044,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 80 */ +/* 83 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(81); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(82); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(84); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(85); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -58977,7 +59067,7 @@ module.exports = path; /***/ }), -/* 81 */ +/* 84 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59033,7 +59123,7 @@ function GlancesPluginPortsController($scope, GlancesStats) { /***/ }), -/* 82 */ +/* 85 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-ports/view.html'; @@ -59042,14 +59132,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 83 */ +/* 86 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(84); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(85); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(87); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(88); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59065,7 +59155,7 @@ module.exports = path; /***/ }), -/* 84 */ +/* 87 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59156,7 +59246,7 @@ function GlancesPluginProcessController(ARGUMENTS, hotkeys) { /***/ }), -/* 85 */ +/* 88 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-process/view.html'; @@ -59165,14 +59255,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 86 */ +/* 89 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(87); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(88); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(90); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(91); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59191,7 +59281,7 @@ module.exports = path; /***/ }), -/* 87 */ +/* 90 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59227,7 +59317,7 @@ function GlancesPluginProcesscountController($scope, GlancesStats) { /***/ }), -/* 88 */ +/* 91 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-processcount/view.html'; @@ -59236,14 +59326,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 89 */ +/* 92 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(90); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(91); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(93); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(94); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59262,7 +59352,7 @@ module.exports = path; /***/ }), -/* 90 */ +/* 93 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59370,7 +59460,7 @@ function GlancesPluginProcesslistController($scope, GlancesStats, GlancesPluginH /***/ }), -/* 91 */ +/* 94 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-processlist/view.html'; @@ -59379,14 +59469,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 92 */ +/* 95 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(93); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(94); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(96); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(97); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59402,7 +59492,7 @@ module.exports = path; /***/ }), -/* 93 */ +/* 96 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59460,7 +59550,7 @@ function GlancesPluginQuicklookController($scope, GlancesStats, ARGUMENTS) { /***/ }), -/* 94 */ +/* 97 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-quicklook/view.html'; @@ -59469,14 +59559,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 95 */ +/* 98 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(96); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(97); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(99); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(100); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59492,7 +59582,7 @@ module.exports = path; /***/ }), -/* 96 */ +/* 99 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59559,7 +59649,7 @@ function GlancesPluginRaidController($scope, GlancesStats) { /***/ }), -/* 97 */ +/* 100 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-raid/view.html'; @@ -59568,14 +59658,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 98 */ +/* 101 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(99); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(100); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(102); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(103); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59591,7 +59681,7 @@ module.exports = path; /***/ }), -/* 99 */ +/* 102 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59636,7 +59726,7 @@ function GlancesPluginSensorsController($scope, GlancesStats, GlancesPluginHelpe /***/ }), -/* 100 */ +/* 103 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-sensors/view.html'; @@ -59645,14 +59735,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 101 */ +/* 104 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(102); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(103); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(105); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(106); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59668,7 +59758,7 @@ module.exports = path; /***/ }), -/* 102 */ +/* 105 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59712,7 +59802,7 @@ function GlancesPluginSystemController($scope, GlancesStats) { /***/ }), -/* 103 */ +/* 106 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-system/view.html'; @@ -59721,14 +59811,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 104 */ +/* 107 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(105); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(106); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(108); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(109); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59744,7 +59834,7 @@ module.exports = path; /***/ }), -/* 105 */ +/* 108 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59769,7 +59859,7 @@ function GlancesPluginUptimeController($scope, GlancesStats) { /***/ }), -/* 106 */ +/* 109 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-uptime/view.html'; @@ -59778,14 +59868,14 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 107 */ +/* 110 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_angular___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_angular__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(108); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(109); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__controller__ = __webpack_require__(111); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html__ = __webpack_require__(112); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view_html___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__view_html__); @@ -59801,7 +59891,7 @@ module.exports = path; /***/ }), -/* 108 */ +/* 111 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59856,7 +59946,7 @@ function GlancesPluginWifiController($scope, $filter, GlancesStats) { /***/ }), -/* 109 */ +/* 112 */ /***/ (function(module, exports) { var path = '/Users/floranbrutel/dev/glances/glances/outputs/static/js/components/plugin-wifi/view.html'; @@ -59865,7 +59955,7 @@ window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, htm module.exports = path; /***/ }), -/* 110 */ +/* 113 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -59999,7 +60089,7 @@ function timedeltaFilter($filter) { /***/ }), -/* 111 */ +/* 114 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; diff --git a/glances/outputs/static/public/glances.map.js b/glances/outputs/static/public/glances.map.js index b41cdf1d..7685db31 100644 --- a/glances/outputs/static/public/glances.map.js +++ b/glances/outputs/static/public/glances.map.js @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap 72884d63698645bfaea7","webpack:///./node_modules/angular/index.js","webpack:///./node_modules/css-loader/lib/css-base.js","webpack:///./node_modules/style-loader/lib/addStyles.js","webpack:///./node_modules/lodash/lodash.js","webpack:///./js/app.js","webpack:///./css/bootstrap.less?794f","webpack:///./css/bootstrap.less","webpack:///./node_modules/style-loader/lib/urls.js","webpack:///./css/style.scss?adee","webpack:///./css/style.scss","webpack:///./node_modules/css-loader/lib/url/escape.js","webpack:///./images/glances.png","webpack:///./js/module.js","webpack:///./node_modules/angular/angular.js","webpack:///./node_modules/angular-hotkeys/build/hotkeys.js","webpack:///./js/services/index.js","webpack:///./js/services/stats.js","webpack:///./js/services/plugin_helper.js","webpack:///./js/services/favicon.js","webpack:///./node_modules/favico.js/favico.js","webpack:///./js/components/index.js","webpack:///./js/components/glances/component.js","webpack:///./js/components/glances/controller.js","webpack:///./js/components/glances/view.html","webpack:///./js/components/help/component.js","webpack:///./js/components/help/controller.js","webpack:///./js/components/help/view.html","webpack:///./js/components/plugin-alert/component.js","webpack:///./js/components/plugin-alert/controller.js","webpack:///./js/components/plugin-alert/view.html","webpack:///./js/components/plugin-amps/component.js","webpack:///./js/components/plugin-amps/controller.js","webpack:///./js/components/plugin-amps/view.html","webpack:///./js/components/plugin-cloud/component.js","webpack:///./js/components/plugin-cloud/controller.js","webpack:///./js/components/plugin-cloud/view.html","webpack:///./js/components/plugin-cpu/component.js","webpack:///./js/components/plugin-cpu/controller.js","webpack:///./js/components/plugin-cpu/view.html","webpack:///./js/components/plugin-diskio/component.js","webpack:///./js/components/plugin-diskio/controller.js","webpack:///./js/components/plugin-diskio/view.html","webpack:///./js/components/plugin-docker/component.js","webpack:///./js/components/plugin-docker/controller.js","webpack:///./js/components/plugin-docker/view.html","webpack:///./js/components/plugin-folders/component.js","webpack:///./js/components/plugin-folders/controller.js","webpack:///./js/components/plugin-folders/view.html","webpack:///./js/components/plugin-fs/component.js","webpack:///./js/components/plugin-fs/controller.js","webpack:///./js/components/plugin-fs/view.html","webpack:///./js/components/plugin-gpu/component.js","webpack:///./js/components/plugin-gpu/controller.js","webpack:///./js/components/plugin-gpu/view.html","webpack:///./js/components/plugin-ip/component.js","webpack:///./js/components/plugin-ip/controller.js","webpack:///./js/components/plugin-ip/view.html","webpack:///./js/components/plugin-irq/component.js","webpack:///./js/components/plugin-irq/controller.js","webpack:///./js/components/plugin-irq/view.html","webpack:///./js/components/plugin-load/component.js","webpack:///./js/components/plugin-load/controller.js","webpack:///./js/components/plugin-load/view.html","webpack:///./js/components/plugin-mem/component.js","webpack:///./js/components/plugin-mem/con