forked from ADORSYS-GIS/monitor-mind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
56 lines (38 loc) · 1.38 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from flask import Flask, render_template, jsonify
from flask_apscheduler import APScheduler
# Import service modules
import services.cpu_service as cpu_service
import services.memory_service as memory_service
# Add other necessary imports here
# set configuration values
class Config:
SCHEDULER_API_ENABLED = True
# create app
app = Flask(__name__)
app.config.from_object(Config())
# initialize scheduler
scheduler = APScheduler()
# if you don't wanna use a config, you can set options here:
# scheduler.api_enabled = True
scheduler.init_app(app)
scheduler.start()
@app.route('/')
def home():
"""Serve the homepage with system metrics."""
return render_template('index.html')
@app.route('/api/cpu')
def get_cpu():
"""API endpoint to get CPU usage."""
timestamps, cpu_usage = cpu_service.get_cpu_usage_array()
return jsonify(timestamps=timestamps, cpu_usage=cpu_usage)
@app.route('/api/memory')
def get_memory():
"""API endpoint to get memory (RAM and Swap) usage."""
ram_usage, swap_usage = memory_service.get_memory_usage()
return jsonify(ram_usage_history=ram_usage, swap_usage_history=swap_usage)
# Add other API endpoints for additional resources
@scheduler.task('interval', id='cpu_get_data', seconds=15, misfire_grace_time=1000)
def actualise_cpu_data():
cpu_service.calculate_cpu_usage()
if __name__ == '__main__':
app.run(debug=True, port=2376)