tree: b44e3196bd59b397dd40f4196f29e10ccddfd559
  1. meta/
  2. tests/
  3. BUILD.bazel
  4. BUILD.gn
  5. main.cc
  6. OWNERS
  7. process_data.cc
  8. process_data.h
  9. process_explorer.cc
  10. process_explorer.h
  11. README.md
  12. task_hierarchy_data.cc
  13. task_hierarchy_data.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