Summary: | rpm-set path based probes | ||
---|---|---|---|
Product: | systemtap | Reporter: | Frank Ch. Eigler <fche> |
Component: | translator | Assignee: | Unassigned <systemtap> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | fche, ryan.s.goldberg |
Priority: | P2 | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Host: | Target: | ||
Build: | Last reconfirmed: | ||
Attachments: |
proof of concept shell script
Submit A Patch for 27410 |
Description
Frank Ch. Eigler
2021-02-13 00:00:29 UTC
Created attachment 13221 [details]
proof of concept shell script
Created attachment 14322 [details] Submit A Patch for 27410 The following expands on the original proposal. This patch allows for the user to probe processes similarly to regular process("PATH").** probes but instead searches the current federation of debuginfod servers instead of the host file system. The new syntax which would achieve the original task is as follows: $ debuginfod -R /path/to/RPMs/prefix $ env DEBUGINFOD_URLS=http://localhost:8002/ stap -e 'probe debuginfod.process("/path/name").function(...) { }' commit a2d19c8670690f87ee74db4a106829aa8edefbce Author: Ryan Goldberg <rgoldber@redhat.com> Date: Fri, 25 Aug 2023 14:20:09 +0000 (10:20 -0400) PR27410: Probe processes using debuginfod New tapset which allows for process probing using executables/debuginfo stored in debuginfod servers. |