Added speedtest plugin, fixed database connection error.
This commit is contained in:
parent
4c010f2174
commit
0b0ae857ac
10
collector.py
10
collector.py
@ -15,6 +15,7 @@ from plugins.system.memory_plugin import MemoryPlugin
|
|||||||
from plugins.system.network_plugin import NetworkPlugin
|
from plugins.system.network_plugin import NetworkPlugin
|
||||||
from plugins.system.ping_plugin import PingPlugin
|
from plugins.system.ping_plugin import PingPlugin
|
||||||
from plugins.system.temperatures_plugin import TemperaturesPlugin
|
from plugins.system.temperatures_plugin import TemperaturesPlugin
|
||||||
|
from plugins.system.speedtest_plugin import SpeedtestPlugin
|
||||||
|
|
||||||
|
|
||||||
class Collector(object):
|
class Collector(object):
|
||||||
@ -29,6 +30,7 @@ class Collector(object):
|
|||||||
NetworkPlugin(),
|
NetworkPlugin(),
|
||||||
TemperaturesPlugin(),
|
TemperaturesPlugin(),
|
||||||
PingPlugin(),
|
PingPlugin(),
|
||||||
|
SpeedtestPlugin(),
|
||||||
|
|
||||||
# finance
|
# finance
|
||||||
StocksPlugin(),
|
StocksPlugin(),
|
||||||
@ -46,9 +48,10 @@ class Collector(object):
|
|||||||
def schedule_plugins(self):
|
def schedule_plugins(self):
|
||||||
start_date = datetime.now() + timedelta(seconds=10)
|
start_date = datetime.now() + timedelta(seconds=10)
|
||||||
for plugin in self.plugins:
|
for plugin in self.plugins:
|
||||||
self.scheduler.add_job(plugin.execute, 'interval',
|
self.scheduler.add_job(plugin.execute_wrapper, 'interval',
|
||||||
seconds=plugin.get_interval(),
|
seconds=plugin.get_interval(),
|
||||||
start_date=start_date)
|
start_date=start_date,
|
||||||
|
name=plugin.__class__.__name__)
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
logging.basicConfig()
|
logging.basicConfig()
|
||||||
@ -56,7 +59,8 @@ class Collector(object):
|
|||||||
|
|
||||||
models = self.collect_models()
|
models = self.collect_models()
|
||||||
database.initialize_db()
|
database.initialize_db()
|
||||||
database.DB.create_tables(models)
|
with database.DB.connection_context():
|
||||||
|
database.DB.create_tables(models)
|
||||||
|
|
||||||
self.schedule_plugins()
|
self.schedule_plugins()
|
||||||
logging.info('Started.')
|
logging.info('Started.')
|
||||||
|
@ -59,6 +59,9 @@ PING_HOSTS = [
|
|||||||
'tibich.com'
|
'tibich.com'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
### Speedtest
|
||||||
|
SPEEDTEST_INTERVAL = 15 * 60 # every 15 min
|
||||||
|
|
||||||
### Stocks
|
### Stocks
|
||||||
STOCKS_INTERVAL = 12 * 60 * 60 # updates daily
|
STOCKS_INTERVAL = 12 * 60 * 60 # updates daily
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
from peewee import DatabaseProxy, Model
|
from peewee import DatabaseProxy, Model
|
||||||
from playhouse.db_url import connect
|
from playhouse.db_url import connect
|
||||||
|
from playhouse.pool import PooledPostgresqlExtDatabase
|
||||||
import config
|
import config
|
||||||
|
|
||||||
DB = DatabaseProxy()
|
DB = DatabaseProxy()
|
||||||
|
@ -33,6 +33,7 @@ After=network.target
|
|||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
|
User=$USER
|
||||||
Restart=always
|
Restart=always
|
||||||
RestartSec=1
|
RestartSec=1
|
||||||
ExecStart=/usr/bin/env python3 $(pwd)/collector.py
|
ExecStart=/usr/bin/env python3 $(pwd)/collector.py
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from typing import Tuple
|
from typing import Tuple
|
||||||
|
import database
|
||||||
|
|
||||||
|
|
||||||
class Plugin(ABC):
|
class Plugin(ABC):
|
||||||
@ -12,3 +13,7 @@ class Plugin(ABC):
|
|||||||
@abstractmethod
|
@abstractmethod
|
||||||
def execute(self) -> None:
|
def execute(self) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def execute_wrapper(self) -> None:
|
||||||
|
with database.DB.connection_context():
|
||||||
|
self.execute()
|
39
plugins/system/smart_plugin.py
Normal file
39
plugins/system/smart_plugin.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
import psutil
|
||||||
|
from peewee import *
|
||||||
|
from playhouse.shortcuts import model_to_dict
|
||||||
|
|
||||||
|
import config
|
||||||
|
from database import BaseModel
|
||||||
|
from plugins.plugin import Plugin
|
||||||
|
|
||||||
|
|
||||||
|
class SMART(BaseModel):
|
||||||
|
time = DateTimeField(index=True, default=datetime.utcnow)
|
||||||
|
drive = TextField(null=False)
|
||||||
|
attribute_id = IntegerField(null=False)
|
||||||
|
attribute_name = TextField(null=False)
|
||||||
|
value = IntegerField(null=False)
|
||||||
|
worst = IntegerField(null=False)
|
||||||
|
threshold = IntegerField(null=False)
|
||||||
|
raw = IntegerField(null=False)
|
||||||
|
|
||||||
|
|
||||||
|
class SMARTPlugin(Plugin):
|
||||||
|
models = [SMART]
|
||||||
|
|
||||||
|
def get_interval(self):
|
||||||
|
return config.DISK_USAGE_INTERVAL
|
||||||
|
|
||||||
|
def execute(self):
|
||||||
|
for partition in psutil.disk_partitions():
|
||||||
|
usage = psutil.disk_usage(partition.mountpoint)
|
||||||
|
|
||||||
|
entry = DiskUsage()
|
||||||
|
entry.partition = partition.device
|
||||||
|
entry.mountpoint = partition.mountpoint
|
||||||
|
entry.total = usage.total
|
||||||
|
entry.used = usage.used
|
||||||
|
entry.free = usage.free
|
||||||
|
entry.save()
|
57
plugins/system/speedtest_plugin.py
Normal file
57
plugins/system/speedtest_plugin.py
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
import subprocess
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
import psutil
|
||||||
|
from peewee import *
|
||||||
|
from playhouse.shortcuts import model_to_dict
|
||||||
|
|
||||||
|
import config
|
||||||
|
from database import BaseModel
|
||||||
|
from plugins.plugin import Plugin
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
class Speedtest(BaseModel):
|
||||||
|
time = DateTimeField(index=True, default=datetime.utcnow)
|
||||||
|
upload = IntegerField(null=False)
|
||||||
|
download = IntegerField(null=False)
|
||||||
|
latency = FloatField(null=True)
|
||||||
|
jitter = FloatField(null=True)
|
||||||
|
packetLoss = IntegerField(null=True)
|
||||||
|
|
||||||
|
|
||||||
|
class SpeedtestPlugin(Plugin):
|
||||||
|
models = [Speedtest]
|
||||||
|
|
||||||
|
def get_interval(self):
|
||||||
|
return config.SPEEDTEST_INTERVAL
|
||||||
|
|
||||||
|
def execute(self):
|
||||||
|
command = ['/usr/local/bin/SpeedTest', '--output', 'json']
|
||||||
|
proc = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
stdout = proc.stdout.decode()
|
||||||
|
stderr = proc.stderr.decode()
|
||||||
|
|
||||||
|
entry = Speedtest()
|
||||||
|
entry.download = 0
|
||||||
|
entry.upload = 0
|
||||||
|
|
||||||
|
if proc.returncode == 0:
|
||||||
|
try:
|
||||||
|
result = json.loads(stdout)
|
||||||
|
entry.download = int(float(result['download']))
|
||||||
|
entry.upload = int(float(result['upload']))
|
||||||
|
entry.latency = float(result['ping'])
|
||||||
|
entry.jitter = float(result['jitter'])
|
||||||
|
except BaseException as e:
|
||||||
|
logging.error(f"SpeedTest failed: {e}")
|
||||||
|
|
||||||
|
else:
|
||||||
|
logging.error(f"SpeedTest nonzero return: {proc.returncode}\n-----\n{stdout}\n{stderr}\n\n")
|
||||||
|
|
||||||
|
|
||||||
|
entry.save()
|
@ -7,6 +7,9 @@ psycopg2-binary
|
|||||||
# Used in most system plugins
|
# Used in most system plugins
|
||||||
psutil
|
psutil
|
||||||
|
|
||||||
|
# Used by SMART plugin, requires 'smartmontools' installed + root access
|
||||||
|
pySMART
|
||||||
|
|
||||||
# robor plugin
|
# robor plugin
|
||||||
requests
|
requests
|
||||||
lxml
|
lxml
|
||||||
|
Loading…
Reference in New Issue
Block a user