An error occurred fetching the project authors.
  1. 13 Feb, 2017 1 commit
    • Sasha Goldshtein's avatar
      u* tools: Gracefully handle missing probes · dc3a57cc
      Sasha Goldshtein authored
      When the target process is missing the required USDT probes, it can
      be a simple mistake (e.g. attaching a script as Java to a Python
      process), or a runtime that is not instrumented with the required
      probes. Attempt to gracefully handle the error and print a helpful
      message instructing the user why the error might have occurred.
      
      ```
      $ uthreads -l java $(pidof python)
      Error attaching USDT probes: the specified pid might not contain
      the given language's runtime, or the runtime was not built with the
      required USDT probes. Look for a configure flag similar to
      --with-dtrace or --enable-dtrace. To check which probes are present
      in the process, use the tplist tool.
      ```
      dc3a57cc
  2. 08 Feb, 2017 1 commit
    • Sasha Goldshtein's avatar
      ugc: Add -M for minimum time and -F for text filtering · c325200c
      Sasha Goldshtein authored
      Filter out collections that are shorter than x milliseconds by using
      `ugc -M x`. Display only collections that contain a certain string s
      in their description by using `ugc -F s`. The latter option is not
      implemented in the kernel, but rather just before printing the event
      in the user script (for simplicity), and documented as such.
      c325200c
  3. 19 Dec, 2016 5 commits