| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- 'use strict';
- /**
- * @ngdoc function
- * @name deivDashApp.controller:MainCtrl
- * @description
- * # MainCtrl
- * Controller of the deivDashApp
- */
- angular.module('deivDashApp')
- .controller('MainCtrl', function ($scope) {
- $scope.labels = ["Download Sales", "In-Store Sales", "Mail-Order Sales", "Tele Sales", "Corporate Sales"];
- $scope.data = [300, 500, 100, 40, 120];
-
- $scope.dataHosts = {
- "hosts": [
- {
- "host": "casa.especificosba.com.ar",
- "status": {
- "loadavg": [
- 0.03,
- 0.09,
- 0.13
- ],
- "disk": [
- {
- "mount": "/",
- "free": "6.0G",
- "used": "7.0G",
- "perc_used": "47"
- },
- {
- "mount": "/dev",
- "free": "0",
- "used": "10M",
- "perc_used": "0"
- },
- {
- "mount": "/home",
- "free": "187G",
- "used": "449G",
- "perc_used": "30"
- }
- ],
- "proc": {
- "motion": 1,
- "php-fpm": 1,
- "nginx": 1,
- "mysql": 1,
- "clearly_test_process": 0
- }
- }
- },
- {
- "host": "192.168.1.125",
- "status": {
- "loadavg": [
- 0,
- 0.01,
- 0.05
- ],
- "disk": [
- {
- "mount": "/",
- "free": "1.2G",
- "used": "5.7G",
- "perc used": "18"
- },
- {
- "mount": "/boot",
- "free": "19M",
- "used": "29M",
- "perc used": "40"
- },
- {
- "mount": "/dev",
- "free": "0",
- "used": "428M",
- "perc used": "0"
- }
- ],
- "proc": {
- "uv4l": 1,
- "ntpd": 1
- }
- }
- },
- {
- "host": "23.227.188.233",
- "status": {
- "loadavg": [
- 0,
- 0.01,
- 0.05
- ],
- "disk": [
- {
- "mount": "/",
- "free": "39G",
- "used": "195G",
- "perc used": "17"
- },
- {
- "mount": "/dev",
- "free": "0",
- "used": "10M",
- "perc used": "0"
- }
- ],
- "proc": {
- "fail2ban": 1,
- "nginx": 1
- }
- }
- },
- {
- "host": "especificosba.com.ar",
- "status": {
- "loadavg": [
- 0.02,
- 0.02,
- 0.05
- ],
- "disk": [
- {
- "mount": "/",
- "free": "19G",
- "used": "9.9G",
- "perc used": "65"
- },
- {
- "mount": "/dev",
- "free": "0",
- "used": "10M",
- "perc used": "0"
- }
- ],
- "proc": {
- "nginx": 1,
- "php-fpm": 1,
- "dovecot": 1,
- "serverCanvas": 1,
- "apache": 0
- }
- }
- }
- ]
- };
- });
|