2015-09-14 12:08:30 +00:00
|
|
|
"""
|
|
|
|
homeassistant.components.sensor.glances
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Gathers system information of hosts which running glances.
|
|
|
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
2015-11-09 12:12:18 +00:00
|
|
|
https://home-assistant.io/components/sensor.glances/
|
2015-09-14 12:08:30 +00:00
|
|
|
"""
|
|
|
|
import logging
|
2016-02-19 05:27:50 +00:00
|
|
|
from datetime import timedelta
|
2015-11-29 21:49:05 +00:00
|
|
|
|
2015-09-14 12:08:30 +00:00
|
|
|
import requests
|
|
|
|
|
2015-11-14 14:23:20 +00:00
|
|
|
from homeassistant.const import STATE_UNKNOWN
|
2016-02-19 05:27:50 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
from homeassistant.util import Throttle
|
2015-09-14 12:08:30 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
_RESOURCE = '/api/2/all'
|
2015-11-14 14:23:20 +00:00
|
|
|
CONF_HOST = 'host'
|
|
|
|
CONF_PORT = '61208'
|
|
|
|
CONF_RESOURCES = 'resources'
|
2015-09-14 12:08:30 +00:00
|
|
|
SENSOR_TYPES = {
|
|
|
|
'disk_use_percent': ['Disk Use', '%'],
|
|
|
|
'disk_use': ['Disk Use', 'GiB'],
|
|
|
|
'disk_free': ['Disk Free', 'GiB'],
|
|
|
|
'memory_use_percent': ['RAM Use', '%'],
|
|
|
|
'memory_use': ['RAM Use', 'MiB'],
|
|
|
|
'memory_free': ['RAM Free', 'MiB'],
|
|
|
|
'swap_use_percent': ['Swap Use', '%'],
|
|
|
|
'swap_use': ['Swap Use', 'GiB'],
|
|
|
|
'swap_free': ['Swap Free', 'GiB'],
|
2016-01-18 01:50:20 +00:00
|
|
|
'processor_load': ['CPU Load', None],
|
|
|
|
'process_running': ['Running', None],
|
|
|
|
'process_total': ['Total', None],
|
|
|
|
'process_thread': ['Thread', None],
|
|
|
|
'process_sleeping': ['Sleeping', None]
|
2015-09-14 12:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
# Return cached results if last scan was less then this time ago
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=60)
|
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-variable
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
|
|
""" Setup the Glances sensor. """
|
|
|
|
|
2015-11-14 14:23:20 +00:00
|
|
|
host = config.get(CONF_HOST)
|
|
|
|
port = config.get('port', CONF_PORT)
|
2015-09-14 12:08:30 +00:00
|
|
|
url = 'http://{}:{}{}'.format(host, port, _RESOURCE)
|
2015-11-14 14:23:20 +00:00
|
|
|
var_conf = config.get(CONF_RESOURCES)
|
|
|
|
|
|
|
|
if None in (host, var_conf):
|
|
|
|
_LOGGER.error('Not all required config keys present: %s',
|
|
|
|
', '.join((CONF_HOST, CONF_RESOURCES)))
|
|
|
|
return False
|
2015-09-14 12:08:30 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
response = requests.get(url, timeout=10)
|
|
|
|
if not response.ok:
|
|
|
|
_LOGGER.error('Response status is "%s"', response.status_code)
|
2015-09-15 06:21:58 +00:00
|
|
|
return False
|
2015-09-14 12:08:30 +00:00
|
|
|
except requests.exceptions.MissingSchema:
|
2015-11-14 14:23:20 +00:00
|
|
|
_LOGGER.error("Missing resource or schema in configuration. "
|
|
|
|
"Please check the details in the configuration file.")
|
2015-09-14 12:08:30 +00:00
|
|
|
return False
|
|
|
|
except requests.exceptions.ConnectionError:
|
2015-11-14 14:23:20 +00:00
|
|
|
_LOGGER.error("No route to resource/endpoint: '%s'. "
|
|
|
|
"Please check the details in the configuration file.",
|
|
|
|
url)
|
2015-09-14 12:08:30 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
rest = GlancesData(url)
|
|
|
|
|
|
|
|
dev = []
|
2015-11-14 14:23:20 +00:00
|
|
|
for resource in var_conf:
|
2015-09-14 12:08:30 +00:00
|
|
|
if resource not in SENSOR_TYPES:
|
|
|
|
_LOGGER.error('Sensor type: "%s" does not exist', resource)
|
|
|
|
else:
|
2015-12-15 22:12:43 +00:00
|
|
|
dev.append(GlancesSensor(rest, config.get('name'), resource))
|
2015-09-14 12:08:30 +00:00
|
|
|
|
|
|
|
add_devices(dev)
|
|
|
|
|
|
|
|
|
|
|
|
class GlancesSensor(Entity):
|
2015-11-14 14:23:20 +00:00
|
|
|
""" Implements a Glances sensor. """
|
2015-09-14 12:08:30 +00:00
|
|
|
|
2015-12-15 22:12:43 +00:00
|
|
|
def __init__(self, rest, name, sensor_type):
|
2015-09-14 12:08:30 +00:00
|
|
|
self.rest = rest
|
2015-12-15 22:12:43 +00:00
|
|
|
self._name = name
|
2015-09-14 12:08:30 +00:00
|
|
|
self.type = sensor_type
|
2015-11-14 14:23:20 +00:00
|
|
|
self._state = STATE_UNKNOWN
|
2015-09-14 12:08:30 +00:00
|
|
|
self._unit_of_measurement = SENSOR_TYPES[sensor_type][1]
|
|
|
|
self.update()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
""" The name of the sensor. """
|
2015-12-15 22:12:43 +00:00
|
|
|
if self._name is None:
|
|
|
|
return SENSOR_TYPES[self.type][0]
|
|
|
|
else:
|
|
|
|
return '{} {}'.format(self._name, SENSOR_TYPES[self.type][0])
|
2015-09-14 12:08:30 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
|
|
|
""" Unit the value is expressed in. """
|
|
|
|
return self._unit_of_measurement
|
|
|
|
|
2015-11-14 14:23:20 +00:00
|
|
|
# pylint: disable=too-many-branches, too-many-return-statements
|
2015-09-14 12:08:30 +00:00
|
|
|
@property
|
|
|
|
def state(self):
|
2015-11-14 14:23:20 +00:00
|
|
|
""" Returns the state of the resources. """
|
2015-09-14 12:08:30 +00:00
|
|
|
value = self.rest.data
|
|
|
|
|
|
|
|
if value is not None:
|
|
|
|
if self.type == 'disk_use_percent':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['fs'][0]['percent']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'disk_use':
|
2015-11-14 14:23:20 +00:00
|
|
|
return round(value['fs'][0]['used'] / 1024**3, 1)
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'disk_free':
|
2015-11-18 18:19:27 +00:00
|
|
|
try:
|
|
|
|
return round(value['fs'][0]['free'] / 1024**3, 1)
|
|
|
|
except KeyError:
|
|
|
|
return round((value['fs'][0]['size'] -
|
2015-11-19 17:07:54 +00:00
|
|
|
value['fs'][0]['used']) / 1024**3, 1)
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'memory_use_percent':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['mem']['percent']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'memory_use':
|
2015-11-14 14:23:20 +00:00
|
|
|
return round(value['mem']['used'] / 1024**2, 1)
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'memory_free':
|
2015-11-14 14:23:20 +00:00
|
|
|
return round(value['mem']['free'] / 1024**2, 1)
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'swap_use_percent':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['memswap']['percent']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'swap_use':
|
2015-11-14 14:23:20 +00:00
|
|
|
return round(value['memswap']['used'] / 1024**3, 1)
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'swap_free':
|
2015-11-14 14:23:20 +00:00
|
|
|
return round(value['memswap']['free'] / 1024**3, 1)
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'processor_load':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['load']['min15']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'process_running':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['processcount']['running']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'process_total':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['processcount']['total']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'process_thread':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['processcount']['thread']
|
2015-09-14 12:08:30 +00:00
|
|
|
elif self.type == 'process_sleeping':
|
2015-11-14 14:23:20 +00:00
|
|
|
return value['processcount']['sleeping']
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
""" Gets the latest data from REST API. """
|
|
|
|
self.rest.update()
|
2015-09-14 12:08:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
class GlancesData(object):
|
|
|
|
""" Class for handling the data retrieval. """
|
|
|
|
|
|
|
|
def __init__(self, resource):
|
2015-11-14 14:23:20 +00:00
|
|
|
self._resource = resource
|
2015-09-14 12:08:30 +00:00
|
|
|
self.data = dict()
|
|
|
|
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
|
|
|
def update(self):
|
2015-11-14 14:25:52 +00:00
|
|
|
""" Gets the latest data from the Glances REST API. """
|
2015-09-14 12:08:30 +00:00
|
|
|
try:
|
2015-11-14 14:23:20 +00:00
|
|
|
response = requests.get(self._resource, timeout=10)
|
2015-09-14 12:08:30 +00:00
|
|
|
self.data = response.json()
|
|
|
|
except requests.exceptions.ConnectionError:
|
2015-11-14 14:23:20 +00:00
|
|
|
_LOGGER.error("No route to host/endpoint '%s'. Is device offline?",
|
|
|
|
self._resource)
|
2015-09-14 12:08:30 +00:00
|
|
|
self.data = None
|