One Hat Cyber Team
Your IP :
216.73.216.216
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
systemtap
/
examples
/
memory
/
Edit File:
numa_faults.stp
#!/usr/bin/stap global execnames, page_faults, node_faults, nodes probe vm.pagefault { execnames[pid()] = execname() page_faults[pid(), write_access ? 1 : 0] <<< 1 try { n=addr_to_node(address) node_faults[pid(), n] <<< 1 nodes[n] <<< 1 } catch { } } function print_pf () { printf ("\n") printf ("%-16s %-6s %10s %10s %-20s\n", "Execname", "PID", "RD Faults", "WR Faults", "Node:Faults") print ("======================= ========== ========== =============\n") foreach (pid in execnames) { printf ("%-16s %6d %10d %10d ", execnames[pid], pid, @count(page_faults[pid,0]), @count(page_faults[pid,1])) foreach ([node+] in nodes) { if ([pid, node] in node_faults) printf ("%d:%d ", node, @count(node_faults[pid, node])) } printf ("\n") } printf("\n") } probe begin { printf("Starting pagefault counters \n") } probe end { printf("Printing counters: \n") print_pf () printf("Done\n") }
Simpan