instrumentation: Update docs for available snippets

This commit is contained in:
Martin Duffy
2025-02-11 10:47:12 -05:00
parent 2299b2fcab
commit f777af7734

View File

@@ -251,14 +251,17 @@ and contain the following data:
``role``
The type of command executed, which will be one of the following values:
* ``compile``
* ``link``
* ``custom``
* ``cmakeBuild``
* ``build``
* ``install``
* ``ctest``
* ``test``
* ``configure``: the CMake configure step
* ``generate``: the CMake generate step
* ``compile``: an individual compile step invoked during the build
* ``link``: an individual link step invoked during the build
* ``custom``: an individual custom command invoked during the build
* ``build``: a complete ``make`` or ``ninja`` invocation. Only generated if ``preBuild`` or ``postBuild`` hooks are enabled.
* ``cmakeBuild``: a complete ``cmake --build`` invocation
* ``cmakeInstall``: a complete ``cmake --install`` invocation
* ``install``: an individual ``cmake -P cmake_install.cmake`` invocation
* ``ctest``: a complete ``ctest`` invocation
* ``test``: a single test executed by CTest
``target``
The CMake target associated with the command. Only included when ``role`` is