![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/root/opt/rh/gcc-toolset-11/root/usr/share/systemtap/examples/general/ |
#!/opt/rh/gcc-toolset-11/root/usr/bin/stap # Copyright (C) 2018 Red Hat, Inc. # Written by William Cohen <[email protected]> # # 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_map_unquoted(arr, "usage_count", "path", sprint, sprint) }