HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: //usr/share/systemtap/examples/general/also_ran.stp
#!/usr/bin/stap
# Copyright (C) 2018 Red Hat, Inc.
# Written by William Cohen <wcohen@redhat.com>
#
# also_ran.stp provides a tally of the executables and
# shared libraries used on the system formatted for
# consumption by prometheus.
# The data is read from /proc/systemtap/*/also_ran.stp
#
# Run the script with:
#   stap also_ran.stp
#
# control-c to exit data collection

global arr

# count processes starting up
probe kprocess.exec {
    arr[filename]++
}

# count shared libraries opened via dlopen operations
probe process("/usr/lib*/ld-*.so").function("_dl_map_object_from_fd")?
{
    # get 5th argument (char* realname) from the function
    arr[user_string_quoted(pointer_arg(5))]++
}

probe prometheus {
    @prometheus_dump_array1(arr, "count", "path")
}