This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug translator/5898] adapt stap -c for user probes


------- Additional Comments From dsmith at redhat dot com  2008-03-11 13:47 -------
I've just started working on a related, yet different, feature.  It is possible
that the feature this bug talks about could fall out from that work or be a
small addition to it.

I'm work on providing the ability to do something like:

  probe process("/bin/program_of_interest").create {
    # do something here...
  }
  probe process("/bin/program_of_interest").exit {
    # do something here...
  }

(I'm undecided on the exact syntax, so feel free to suggest something better.)

This will give you the capability to attach to existing or new instances of
/bin/program_of_interest system-wide.  I'm attempting to do this just with utrace.

In terms of what I'm working on, I think your requested feature becomes:
1. use utrace to watch the pid of the shell (instead of the entire system)
2. look for the exec of 'pgm'
3. attach the user utrace/uprobes probes to the newly created 'pgm'

Is this what you are looking for?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dsmith at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=5898

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]