🌐
GitHub
github.com › rbonghi › jetson_stats
GitHub - rbonghi/jetson_stats: 📊 Simple 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:
Starred by 2.6K users
Forked by 327 users
Languages   Python 91.1% | Shell 8.8% | Dockerfile 0.1%
🌐
NVIDIA Developer
developer.nvidia.com › embedded › community › jetson-projects › jetson_stats
Jetson Stats | NVIDIA Developer
jetson-stats is a package for monitoring and controlling your NVIDIA Jetson [Orin, Xavier, Nano, TX] series. jetson-stats is a powerful tool to analyze your board, and you can use it with a stand-alone application with jtop or import in your ...
Discussions

A method to install jtop on Thor without --break-system-packages
Here’s two bash shell scripts that will clone github.com/rbonghi/jetson_stats make modifications to enable JTOP to be run with ‘sudo jtop’ on Jetson Thor and modify the python files to allow jtop to report on Thor. The idea to use NVML to access Thor came from eous’ pr github.com/rbongh... More on forums.developer.nvidia.com
🌐 forums.developer.nvidia.com
12
7
September 6, 2025
Jetson stats (jtop)
Is there any way to analyse data for a particular process running using jtop command(jetson stats package). More on forums.developer.nvidia.com
🌐 forums.developer.nvidia.com
3
0
June 3, 2022
Bash Script Keeps Logging Data After Application Stops Running

In reading around, it seems python does not register a handler for the SIGTERM signal. (The default when using kill $PID)

If you modify your kill line to be:

kill -9 $PID1

It should actually work a bit better - hopefully :-)

More on reddit.com
🌐 r/linuxquestions
2
2
October 22, 2023
jetson-stats 3.0
Thanks for the hard work! More on reddit.com
🌐 r/JetsonNano
5
17
August 1, 2020
🌐
PyPI
pypi.org › project › jetson-stats
jetson-stats · PyPI
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:
      » pip install jetson-stats
    
Published   Mar 19, 2025
Version   4.3.2
🌐
JetsonHacks
jetsonhacks.com › articles › article › jtop: the ultimate tool for monitoring nvidia jetson devices
jtop: The Ultimate Tool for Monitoring NVIDIA Jetson Devices - JetsonHacks
February 8, 2023 - This is beyond useful when trying to figure out which version of the Jetson software is installed. jtop works on all Jetson models, from the Jetson TX1/Nano to the Jetson Orin. The jetson-stats repository on Github contains the jtop tool.
🌐
GitHub
github.com › rbonghi › jetson_stats › blob › master › jtop › jtop.py
jetson_stats/jtop/jtop.py at master · rbonghi/jetson_stats
The :py:class:`~jtop.core.gpu.GPU` class is readable such a :py:class:`dict` where for each key are colleted all metrics for each GPU. ... GPC :py:class:`list` List GPC frequency in **kHz** (Available for Orin series) ========== =================== ============================================== ... All NVIDIA Jetson have one ore more integrate three-channel `INA3221 <https://www.ti.com/product/INA3221>`_ to measure the power consumption.
Author   rbonghi
🌐
jetson-stats
rnext.it › jetson_stats
jetson-stats 7.1.5 - rnext - Raffaello Bonghi
from jtop import jtop with jtop() as jetson: # jetson.ok() will provide the proper update frequency while jetson.ok(): # Read tegra stats print(jetson.stats)
🌐
jetson-stats
rnext.it › jetson_stats › jtop › jtop.html
📊 jtop - jetson-stats 7.1.5
GPU A real time GPU history about your NVIDIA Jetson ... In this page are summarized all information about your board. CPU For each CPU in this page the color is the percentage of utilization of: (summarized page 3) ... In this page the GPU status. A detailed documentation of this output is available at jtop.jtop.gpu
🌐
InfluxData
influxdata.com › home › the nvidia jetson series - part 1 (jetson-stats)
The NVIDIA Jetson Series - Part 1 (Jetson-Stats) | InfluxData
October 6, 2021 - # Import jtop python library. We will use this to access the Jetson_Stats service. from jtop import jtop import json, datetime if __name__ == "__main__": with jtop() as jetson: # jetson.stats provides our system measurements as type dict. tmp = jetson.stats # time and uptime are proved as time objects.
Find elsewhere
🌐
jetson-stats
rnext.it › jetson_stats › reference › jtop.html
jtop - jetson-stats 7.1.5
Fan status and control. This property show speed, rpm and control every fan on your board · The Fan class is readable such a dict where for each key are colleted all metrics for each Fan. If you are working with Jetpack 5 or higher, the fan profile map nvfancontrol nvfancontrol ... with jtop() as jetson: if jetson.ok(): # Print profile print(jetson.fan.profile) # Set new profile jetson.fan.profile = 'quiet' # Read speed print(jetson.fan.speed) # Set new speed jetson.fan.speed = 90
🌐
GitHub
github.com › SamGit001 › jetson_stats_jtop
GitHub - SamGit001/jetson_stats_jtop: 📊 Simple 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:
Author   SamGit001
🌐
NVIDIA Developer Forums
forums.developer.nvidia.com › robotics & edge computing › jetson systems › jetson thor
A method to install jtop on Thor without --break-system-packages - Jetson Thor - NVIDIA Developer Forums
September 6, 2025 - Here’s two bash shell scripts that will clone github.com/rbonghi/jetson_stats make modifications to enable JTOP to be run with ‘sudo jtop’ on Jetson Thor and modify the python files to allow jtop to report on Thor. The idea to use NVML to access Thor came from eous’ pr github.com/rbongh...
🌐
Grafana
grafana.com › grafana › dashboards › 25079-jetson-orin-exporter-jtop
Jetson Orin Exporter - jtop | Grafana Labs
System Internals: Current "NVP Model" power profile, EMC (Memory Controller) frequency, and jetson_clocks active status. An NVIDIA Jetson board running JetPack 6 / Ubuntu 22.04. The official jtop service https://github.com/rbonghi/jetson_stats v4.3.0 or higher
🌐
NVIDIA Developer Forums
forums.developer.nvidia.com › robotics & edge computing › jetson systems › jetson nano
Jetson stats (jtop) - Jetson Nano - NVIDIA Developer Forums
June 3, 2022 - Is there any way to analyse data for a particular process running using jtop command(jetson stats package).
🌐
HackMD
hackmd.io › @YungHuiHsu › H1kx5WdJn
Jetson 邊緣裝置查詢系統性能指令jtop - HackMD
> > 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, ...
🌐
GitHub
github.com › rbonghi › jetson_stats › wiki › jtop
jtop · rbonghi/jetson_stats Wiki · GitHub
📊 Simple package for monitoring and control your NVIDIA Jetson [Orin, Xavier, Nano, TX] series - jtop · rbonghi/jetson_stats Wiki
Author   rbonghi
🌐
GitHub
github.com › rbonghi › jetson_stats › tree › master › jtop
jetson_stats/jtop at master · rbonghi/jetson_stats
📊 Simple package for monitoring and control your NVIDIA Jetson [Orin, Xavier, Nano, TX] series - jetson_stats/jtop at master · rbonghi/jetson_stats
Author   rbonghi
🌐
GitHub
github.com › rbonghi › jetson_stats › blob › master › jtop › __main__.py
jetson_stats/jtop/__main__.py at master · rbonghi/jetson_stats
📊 Simple package for monitoring and control your NVIDIA Jetson [Orin, Xavier, Nano, TX] series - rbonghi/jetson_stats
Author   rbonghi
🌐
Seeed Studio
seeedstudio.com › home › monitor gpu, cpu, and other stats on jetson nano / xavier nx / tx1 / tx2
Monitor GPU, CPU, and other stats on Jetson Nano / Xavier NX / TX1 / TX2 - Latest News from Seeed Studio
July 9, 2020 - sudo -H pip install -U jetson-stats · Then run · sudo jtop · If you installed jetson-stats successfully, you will see this dashboard · Also, when you click the bottom tab menu, you can get detailed information and stats from every individual ...
🌐
SourceForge
sourceforge.net › projects › jetson-stats.mirror
jetson-stats download | SourceForge.net
3 weeks ago - It supports Jetson platforms such as Orin, Xavier, Nano, TX, and newer Jetson families. The project includes jtop, a terminal-based dashboard that gives users a live view of CPU, GPU, memory, power, temperature, engine usage, and system status.
🌐
GitHub
github.com › rbonghi › jetson_stats › releases
Releases · rbonghi/jetson_stats
🚀 jetson-stats works with NVIDIA Jetpack 5 and NVIDIA Jetson Orin series! Many bugs are fixed, and new features have been added to work more stable with python 3.6, 3.8, 3.9, 3.10 · You need only to update jtop using the following command:
Author   rbonghi