tree: b35d793cc5f36d0880e4b9478f8033d38778595f [path history] [tgz]
  1. meta/
  2. tests/
  3. BUILD.gn
  4. main.cc
  5. OWNERS
  6. process_explorer.cc
  7. process_explorer.h
  8. README.md
  9. utils.cc
  10. utils.h
src/developer/process_explorer/README.md

process_explorer

A component that gets all the processes on a running Fuchsia device, and for each of them it retrieves information about all the handles in the process. The data is then packaged as a string in JSON format and sent over a socket.

Building

To add this component to your build, append --with-base src/developer/process_explorer to the fx set invocation.

Running

Use ffx component start to start this component for development purposes:

$ ffx component start /core/process_explorer

Testing

Unit tests for process_explorer are available in the process_explorer_tests package.

$ fx test process_explorer_tests