tree: 4db1597ed49c75ae0e0467154701841cf112e938 [path history] [tgz]
  1. include/
  2. test/
  3. vmo/
  4. BUILD.gn
  5. health.cc
  6. hierarchy.cc
  7. inspector.cc
  8. reader.cc
  9. README.md
zircon/system/ulib/inspect/README.md

Inspect Library

This document was last reviewed for accuracy on: 2019-10-31

Inspect is a library for exposing structured, hierarchical diagnostics information from components at runtime. Full documentation for the Component Inspection project can be found here.

Using

Inspect can be used in-tree by depending on the //zircon/public/lib/inspect GN target and using #include <lib/inspect/cpp/inspect.h>.

Our quickstart guide is available here.

Inspect data may be read from components using the iquery tool.

Inspect is also available in the SDK.

Includes

#include <lib/inspect/cpp/inspect.h>

Support for writing Inspect data to a VMO.

#include <lib/inspect/cpp/reader.h>

Support for reading Inspect data from a VMO or an inspect::Snapshot of a VMO.

#include <lib/inspect/cpp/health.h>

Support for attaching health information to Inspect nodes. This information can be read and aggregated by iquery --health.

Testing

Unit tests for inspect are available in the Zircon tests package.

To include them, you must pass --with-base //garnet/packages/tests:zircon to fx set and re-pave your device.

$ fx shell runtests -t inspect-test