# -*- coding: utf-8 -*- """ License Copyright (C) 2013 YunoHost 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 """ """ yunohost_monitor.py Monitoring functions """ import xmlrpclib import json import psutil from urllib import urlopen from datetime import datetime, timedelta from yunohost import YunoHostError, win_msg, colorize, validate, get_required_args import os import sys try: import yaml except ImportError: sys.stderr.write('Error: Yunohost CLI Require yaml lib\n') sys.stderr.write('apt-get install python-yaml\n') sys.exit(1) import json import socket import fcntl import struct if not __debug__: import traceback s = xmlrpclib.ServerProxy('http://127.0.0.1:61209') def get_ip_address(ifname): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) return socket.inet_ntoa(fcntl.ioctl( s.fileno(), 0x8915, # SIOCGIFADDR struct.pack('256s', ifname[:15]) )[20:24]) def bytes2human(n): symbols = ('K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y') prefix = {} for i, s in enumerate(symbols): prefix[s] = 1 << (i+1)*10 for s in reversed(symbols): if n >= prefix[s]: value = float(n) / prefix[s] return '%.1f%s' % (value, s) return "%sB" % n def process_enable(args): output = subprocess.Popen(['update-rc.d', args, 'defaults'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) if output.wait() == 0: return process_start(args) return resultat else: raise YunoHostError(1, 'Enable : ' + args.title() + " " + _("failure")) def process_disable(args): output = subprocess.Popen(['update-rc.d', args, 'remove'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) if output.wait() == 0: return process_stop(args) return resultat else: raise YunoHostError(1, 'Disable : ' + args.title() + " " + _("failure")) def process_start(args): output = subprocess.Popen(['service', args, 'start'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) if output.wait() == 0: return { 'Start' : args.title() } else: raise YunoHostError(1, 'Start : ' + args.title() + " " + _("failure")) def process_stop(args): output = subprocess.Popen(['service', args, 'stop'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) if output.wait() == 0: return { 'Stop' : args.title() } else: raise YunoHostError(1, 'Stop : ' + args.title() + " " + _("failure")) def process_check(args): with open('process.yml', 'r') as f: processes = yaml.load(f) result = {} for process, commands in processes.items(): if commands['status'] == 'service': cmd = "service " + process + " status" else: cmd = commands['status'] if os.system(cmd + " > /dev/null 2>&1") == 0: result.update({ process : _('Running') }) else: result.update({ process : _('Down') }) return { 'Status' : result } def monitor_info(memory=False, swap=False, cpu=False, disk=False, ifconfig=False, uptime=False, public=False): """ Check System Keyword argument: uptime -- Show Uptime disk -- Check Disk public -- Show IP public cpu -- Check CPU memory -- Check Memory swap -- Check Swap ifconfig -- Show Ip and MAC Adress """ if memory: return json.loads(s.getMem()) if swap: return json.loads(s.getMemSwap()) elif cpu: return json.loads(s.getLoad()) elif ifconfig: result = {} for k, fs in enumerate(json.loads(s.getNetwork())): interface = fs['interface_name'] if interface != "lo": ip = get_ip_address(str(interface)) del fs['interface_name'] result[ip] = fs else: del fs['interface_name'] result[interface] = fs return result elif disk: result = {} for k, fs in enumerate(json.loads(s.getFs())): if fs['fs_type'] != 'tmpfs' and fs['fs_type'] != 'rpc_pipefs': mnt_point = str(fs['mnt_point']) del fs['mnt_point'] result[mnt_point] = fs return result elif uptime: uptime_value = (str(datetime.now() - datetime.fromtimestamp(psutil.BOOT_TIME)).split('.')[0]) return { 'Uptime' : uptime_value } elif public: try: ip = str(urlopen('http://ip.yunohost.org').read()) except: raise YunoHostError(1, _("No connection") ) return { 'Public IP' : ip } else: raise YunoHostError(1, _('No arguments provided')) def monitor_process(enable=None, disable=None, start=None, stop=None, check=False, info=False): """ Check Process Keyword argument: enable -- Enable process disable -- Disable process stop -- Stop process check -- Check process info -- Process info start -- Start process """ if enable: return process_enable(enable) elif disable: return process_disable(disable) elif start: return process_start(start) elif stop: return process_stop(stop) elif check: return process_check(check) elif info: return json.loads(s.getProcessCount())