tree: 3920e250028b705dc924bd3954b48eee20de32af [path history] [tgz]
  1. include/
  2. test/
  3. BUILD.gn
  4. export.h
  5. fdio_connect.cc
  6. fnv1hash.h
  7. handler.cc
  8. OWNERS
  9. provider_impl.cc
  10. provider_impl.h
  11. provider_with_fdio.cc
  12. README.md
  13. session.cc
  14. session.h
  15. utils.cc
  16. utils.h
zircon/system/ulib/trace-provider/README.md

Trace Provider Library

A static library for publishing a trace provider. The trace manager connects to trace providers to collect trace records from running programs.

To register the trace provider, the program must call trace_provider_create() at some point during its startup sequence. The trace provider will take care of starting and stopping the trace engine in response to requests from the trace manager.

trace-provider-with-static-engine

This library exists for very special cases, and in general should not be used.

To use it, you will need to provide your own connection with trace-manager. This library does not come with the fdio support that the “normal” version of this library uses. See fdio_connect.cpp in this directory for boilerplate of what needs to be done. Then when you have the handle to trace-manager, call trace_provider_create_with_name().

trace_provider_t* trace_provider_create_with_name(
        zx_handle_t to_service_h, async_dispatcher_t* dispatcher,
        const char* name);

You will need to add these dependencies to your BUILD.gn file:

    "//zircon/system/ulib/trace:trace-with-static-engine",
    "//zircon/system/ulib/trace-provider:trace-provider-with-static-engine",