-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
31 lines (26 loc) · 970 Bytes
/
server.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
import logging
from aiohttp import web
import os
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s [%(levelname)s] %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
logger = logging.getLogger('gpu-monitor')
async def handle_static(request):
file_path = request.path.strip('/')
if not file_path:
file_path = 'gpu-stats.html'
if os.path.exists(file_path):
return web.FileResponse(file_path)
return web.Response(status=404)
app = web.Application()
app.router.add_get('/{tail:.*}', handle_static)
if __name__ == '__main__':
logger.info("========================================")
logger.info("Starting NVIDIA GPU Monitor")
logger.info("https://github.com/bigsk1/gpu-monitor")
logger.info("----------------------------------------")
logger.info("Server running on: http://localhost:8081")
logger.info("========================================")
web.run_app(app, port=8081, access_log=None)