Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xAAL
Code
Python
Commits
6e1fc0e0
Commit
6e1fc0e0
authored
3 months ago
by
KERDREUX Jerome
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/msg_stats.py
+43
-5
43 additions, 5 deletions
scripts/msg_stats.py
with
43 additions
and
5 deletions
scripts/msg_stats.py
+
43
−
5
View file @
6e1fc0e0
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
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment