You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jetson-stats is a package for monitoring and control your NVIDIA Jetson [Orin, Xavier, Nano, TX] series.
jetson-stats is a powerful tool to analyze your board, you can use with a stand alone application with jtop or import in your python script, the main features are:
Decode hardware, architecture, L4T and NVIDIA Jetpack
Monitoring, CPU, GPU, Memory, Engines, fan
Control NVP model, fan speed, jetson_clocks
Importable in a python script
Dockerizable in a container
Do not need super user
Tested on many different hardware configurations
Works with all NVIDIA Jetpack
Install
jetson-stats can be installed with pip, but need superuser:
sudo pip3 install -U jetson-stats
Don't forget to logout/login or reboot your board
π That's it! π
Run
Start jtop it's pretty simple just write jtop!
jtop
A simple interface will appear on your terminal, more capabilities are documented at jtop page.
Library
You can use jtop such a python library to integrate in your software
fromjtopimportjtopwithjtop() asjetson:
# jetson.ok() will provide the proper update frequencywhilejetson.ok():
# Read tegra statsprint(jetson.stats)