Skip to content
Snippets Groups Projects
Commit 6e1fc0e0 authored by KERDREUX Jerome's avatar KERDREUX Jerome
Browse files

Added ncurses support

- Added most verbose devices
- Add nice ncurses / tabulate display
- Added MSG rate
parent 3d6ec674
No related branches found
No related tags found
No related merge requests found
import asyncio
import time
import curses
from tabulate import tabulate
from xaal.lib import AsyncEngine, Message, MessageAction
FMT = "rounded_grid"
MSG_STATS = {
"total": 0,
"alive": 0,
......@@ -55,24 +59,58 @@ def msg_count(msg: Message):
MSG_STATS["reply"] += 1
if msg.is_attributes_change():
MSG_STATS["attributes_change"] += 1
return
if msg.is_notify():
MSG_STATS["notify"] += 1
async def show():
async def on_start():
screen = curses.initscr()
curses.noecho()
curses.cbreak()
curses.curs_set(0)
screen.clear()
t0 = time.time()
while 1:
await asyncio.sleep(5)
screen.clear()
t = time.time() - t0
print(MSG_STATS)
print(DEVICE_STATS)
screen.addstr(1, 1, f"xAAL Messages stats since {time.ctime(t0)}")
r = []
for k, v in MSG_STATS.items():
# count the nb of messages / s
cnt = round(v / t, 1)
r.append([k, v, cnt])
data = tabulate(r, headers=["MSG Type", "Total", "Rate"], tablefmt=FMT)
for i, line in enumerate(data.splitlines()):
screen.addstr(3 + i, 1, line)
sort = sorted(DEVICE_STATS.items(), key=lambda x: x[1], reverse=True)[0:10]
# display the 10 most active devices, if any
r = []
for k, v in sort:
r.append([k, v])
data = tabulate(r, headers=["Device ADDR", "Total", "Rate"], tablefmt=FMT)
for i, line in enumerate(data.splitlines()):
screen.addstr(3 + i, 50, line)
screen.refresh()
await asyncio.sleep(5)
def on_stop():
curses.echo()
curses.nocbreak()
curses.endwin()
def run():
eng = AsyncEngine()
eng.disable_msg_filter()
eng.subscribe(count)
eng.on_start(show)
eng.on_start(on_start)
eng.on_start(on_start)
eng.run()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment