|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /usr/share/systemtap/examples/io/ |
Upload File : |
#!/usr/bin/stap
#
# Copyright (C) 2010 Red Hat, Inc.
# By Dominic Duval, Red Hat Inc.
# dduval@redhat.com
#
# Keeps track of seeks on devices.
# Shows how to use hist_log.
#
# USAGE: stap deviceseeks.stp
#
global seeks, oldsec
probe ioblock_trace.request {
if (size == 0) next
%( $# == 1 %? if (devname !~ @1) next %) // reject mismatching device names
sectorsize = (@defined($q->limits->logical_block_size)
? $q->limits->logical_block_size
: (@defined($q->logical_block_size) ? $q->logical_block_size
: $q->hardsect_size))
# printf("%s %s\n", devname, rw ? "w" : "r")
sec = sector
seeks[devname] <<< sec - oldsec[devname]
oldsec[devname] = sector + (size/sectorsize)
}
probe timer.s(10), end, error {
printf("\n")
foreach ([devname] in seeks- limit 5) {
printf("Device: %s\n", devname)
println(@hist_log(seeks[devname]))
}
delete seeks
}