tracker
resource_tracker.tracker
#
Track resource usage of a process and/or the system.
To start tracker(s) in the background as spawned or forked process(es), use the
resource_tracker.ResourceTracker class. Starting this will not block the
main process and will allow you to access the collected data via the
pid_tracker
and system_tracker
properties of the instance in real-time, or
after stopping the resource tracker(s).
For more custom use cases, you can also use the resource_tracker.PidTracker and resource_tracker.SystemTracker classes directly logging either to the standard output or a file, and handle putting those into a background thread/process yourself.
Classes:
Name | Description |
---|---|
PidTracker |
Track resource usage of a process and optionally its children. |
SystemTracker |
Track system-wide resource usage. |
ResourceTracker |
Track resource usage of processes and the system in a non-blocking way. |
PidTracker
#
Track resource usage of a process and optionally its children.
This class monitors system resources like CPU times and usage, memory usage, GPU and VRAM utilization, I/O operations for a given process ID and optionally its child processes.
Data is collected every interval
seconds and written to the stdout or
output_file
(if provided) as CSV. Currently, the following columns are
tracked:
- timestamp (float): The current timestamp.
- pid (int): The monitored process ID.
- children (int | None): The current number of child processes.
- utime (int): The total user+nice mode CPU time in seconds.
- stime (int): The total system mode CPU time in seconds.
- cpu_usage (float): The current CPU usage between 0 and number of CPUs.
- memory (int): The current memory usage in kB. Implementation depends on the operating system, and it is preferably PSS (Proportional Set Size) on Linux, USS (Unique Set Size) on macOS and Windows, and RSS (Resident Set Size) on Windows.
- read_bytes (int): The total number of bytes read from disk.
- write_bytes (int): The total number of bytes written to disk.
- gpu_usage (float): The current GPU utilization between 0 and GPU count.
- gpu_vram (float): The current GPU memory used in MiB.
- gpu_utilized (int): The number of GPUs with utilization > 0.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pid
|
int
|
Process ID to track. Defaults to current process ID. |
getpid()
|
interval
|
float
|
Sampling interval in seconds. Defaults to 1. |
1
|
children
|
bool
|
Whether to track child processes. Defaults to True. |
True
|
autostart
|
bool
|
Whether to start tracking immediately. Defaults to True. |
True
|
output_file
|
str
|
File to write the output to. Defaults to None, print to stdout. |
None
|
Methods:
Name | Description |
---|---|
__call__ |
Dummy method to make this class callable. |
diff_stats |
Calculate stats since last call. |
start_tracking |
Start an infinite loop tracking resource usage of the process until it exits. |
Source code in resource_tracker/tracker.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
|
__call__
#
diff_stats
#
Calculate stats since last call.
Source code in resource_tracker/tracker.py
start_tracking
#
Start an infinite loop tracking resource usage of the process until it exits.
A CSV line is written every interval
seconds.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_file
|
Optional[str]
|
File to write the output to. Defaults to None, printing to stdout. |
None
|
print_header
|
bool
|
Whether to print the header of the CSV. Defaults to True. |
True
|
Source code in resource_tracker/tracker.py
SystemTracker
#
Track system-wide resource usage.
This class monitors system resources like CPU times and usage, memory usage, GPU and VRAM utilization, disk I/O, and network traffic for the entire system.
Data is collected every interval
seconds and written to the stdout or
output_file
(if provided) as CSV. Currently, the following columns are
tracked:
- timestamp (float): The current timestamp.
- processes (int): The number of running processes.
- utime (int): The total user+nice mode CPU time in seconds.
- stime (int): The total system mode CPU time in seconds.
- cpu_usage (float): The current CPU usage between 0 and number of CPUs.
- memory_free (int): The amount of free memory in kB.
- memory_used (int): The amount of used memory in kB.
- memory_buffers (int): The amount of memory used for buffers in kB.
- memory_cached (int): The amount of memory used for caching in kB.
- memory_active (int): The amount of memory used for active pages in kB.
- memory_inactive (int): The amount of memory used for inactive pages in kB.
- disk_read_bytes (int): The total number of bytes read from disk.
- disk_write_bytes (int): The total number of bytes written to disk.
- disk_space_total_gb (float): The total disk space in GB.
- disk_space_used_gb (float): The used disk space in GB.
- disk_space_free_gb (float): The free disk space in GB.
- net_recv_bytes (int): The total number of bytes received over network.
- net_sent_bytes (int): The total number of bytes sent over network.
- gpu_usage (float): The current GPU utilization between 0 and GPU count.
- gpu_vram (float): The current GPU memory used in MiB.
- gpu_utilized (int): The number of GPUs with utilization > 0.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
interval
|
float
|
Sampling interval in seconds. Defaults to 1. |
1
|
autostart
|
bool
|
Whether to start tracking immediately. Defaults to True. |
True
|
output_file
|
str
|
File to write the output to. Defaults to None, print to stdout. |
None
|
Methods:
Name | Description |
---|---|
__call__ |
Dummy method to make this class callable. |
diff_stats |
Calculate stats since last call. |
start_tracking |
Start an infinite loop tracking system resource usage. |
Source code in resource_tracker/tracker.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
__call__
#
diff_stats
#
Calculate stats since last call.
Source code in resource_tracker/tracker.py
start_tracking
#
Start an infinite loop tracking system resource usage.
A CSV line is written every interval
seconds.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_file
|
Optional[str]
|
File to write the output to. Defaults to None, printing to stdout. |
None
|
print_header
|
bool
|
Whether to print the header of the CSV. Defaults to True. |
True
|
Source code in resource_tracker/tracker.py
ResourceTracker
#
Track resource usage of processes and the system in a non-blocking way.
Start a resource_tracker.PidTracker and/or a resource_tracker.SystemTracker in the background as spawned
or forked process(es), and make the collected data available easily in the
main process via the pid_tracker
and system_tracker
properties.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pid
|
int
|
Process ID to track. Defaults to current process ID. |
getpid()
|
children
|
bool
|
Whether to track child processes. Defaults to True. |
True
|
interval
|
float
|
Sampling interval in seconds. Defaults to 1. |
1
|
method
|
Optional[str]
|
Multiprocessing method. Defaults to None, which tries to fork on Linux and macOS, and spawn on Windows. |
None
|
autostart
|
bool
|
Whether to start tracking immediately. Defaults to True. |
True
|
track_processes
|
bool
|
Whether to track resource usage at the process level. Defaults to True. |
True
|
track_system
|
bool
|
Whether to track system-wide resource usage. Defaults to True. |
True
|
Methods:
Name | Description |
---|---|
start |
Start the selected resource trackers in the background as subprocess(es). |
stop |
Stop the previously started resource trackers' background processes. |
Attributes:
Name | Type | Description |
---|---|---|
pid_tracker |
Union[TinyDataFrame, List]
|
Collected data from the resource_tracker.PidTracker. |
system_tracker |
Union[TinyDataFrame, List]
|
Collected data from the resource_tracker.SystemTracker. |
Source code in resource_tracker/tracker.py
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 |
|
start
#
Start the selected resource trackers in the background as subprocess(es).
Source code in resource_tracker/tracker.py
stop
#
Stop the previously started resource trackers' background processes.
Source code in resource_tracker/tracker.py
pid_tracker
property
#
Collected data from the resource_tracker.PidTracker.
Returns:
Type | Description |
---|---|
Union[TinyDataFrame, List]
|
A resource_tracker.TinyDataFrame object containing the collected data or an empty list if the resource_tracker.PidTracker is not running. |
system_tracker
property
#
Collected data from the resource_tracker.SystemTracker.
Returns:
Type | Description |
---|---|
Union[TinyDataFrame, List]
|
A resource_tracker.TinyDataFrame object containing the collected data or an empty list if the resource_tracker.SystemTracker is not running. |