Server IP : 15.235.198.142 / Your IP : 216.73.216.0 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/doc/bpfcc-tools/examples/tracing/ |
Upload File : |
Examples of urandomread.py, the Linux eBPF/bcc version. To demonstrate this, the following workload was issued: # dd if=/dev/urandom of=/dev/null bs=1k count=5 While urandomread.py was tracing in another session: # ./urandomread.py TIME(s) COMM PID GOTBITS 22592556.392825000 dd 14228 8192 22592556.392949000 dd 14228 8192 22592556.393068999 dd 14228 8192 22592556.393183999 dd 14228 8192 22592556.393298000 dd 14228 8192 The GOTBITS of 8192 matches the workload of 1 Kbyte (8 Kbit) reads. This program was really written as a simple example of tracing a tracepoint.