'\" t .\" Man page generated from reStructuredText. . . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .TH "CMAKE-INSTRUMENTATION" "7" "Mar 27, 2025" "4.0.0" "CMake" .SH NAME cmake-instrumentation \- CMake Instrumentation .sp Added in version 4.0. .SH INTRODUCTION .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 This feature is only available when experimental support for instrumentation has been enabled by the \fBCMAKE_EXPERIMENTAL_INSTRUMENTATION\fP gate. .UNINDENT .UNINDENT .sp The CMake Instrumentation API allows for the collection of timing data, target information and system diagnostic information during the configure, generate, build, test and install steps for a CMake project. .sp This feature is only available for projects using the \fI\%Makefile Generators\fP or the \fI\%Ninja Generators\fP\&. .sp All interactions with the CMake instrumentation API must specify both an API version and a Data version. At this time, there is only one version for each of these: the \fI\%API v1\fP and \fI\%Data v1\fP\&. .SS Data Collection .sp Whenever a command is executed with instrumentation enabled, a \fI\%v1 Snippet File\fP is created in the project build tree with data specific to that command. These files remain until after \fI\%Indexing\fP occurs. .sp CMake sets the \fI\%RULE_LAUNCH_COMPILE\fP, \fI\%RULE_LAUNCH_LINK\fP and \fI\%RULE_LAUNCH_CUSTOM\fP global properties to use the \fBctest \-\-instrument\fP launcher in order to capture details of each compile, link and custom command respectively. If the project has been configured with \fI\%CTestUseLaunchers\fP, \fBctest \-\-instrument\fP will also include the behavior usually performed by \fBctest \-\-launch\fP\&. .SS Indexing .sp Indexing is the process of collating generated instrumentation data. Indexing occurs at specific intervals called hooks, such as after every build. These hooks are configured as part of the \fI\%v1 Query Files\fP\&. Whenever a hook is triggered, an index file is generated containing a list of snippet files newer than the previous indexing. .sp Indexing and can also be performed by manually invoking \fBctest \-\-collect\-instrumentation \fP\&. .SS Callbacks .sp As part of the \fI\%v1 Query Files\fP, users can provide a list of callbacks intended to handle data collected by this feature. .sp Whenever \fI\%Indexing\fP occurs, each provided callback is executed, passing the path to the generated index file as an argument. .sp These callbacks, defined either at the user\-level or project\-level should read the instrumentation data and perform any desired handling of it. The index file and its listed snippets are automatically deleted by CMake once all callbacks have completed. Note that a callback should never move or delete these data files manually as they may be needed by other callbacks. .SH ENABLING INSTRUMENTATION .sp Instrumentation can be enabled either for an individual CMake project, or for all CMake projects configured and built by a user. For both cases, see the \fI\%v1 Query Files\fP for details on configuring this feature. .SS Enabling Instrumentation at the Project\-Level .sp Project code can contain instrumentation queries with the \fI\%cmake_instrumentation()\fP command. .sp In addition, query files can be placed manually under \fB/.cmake/instrumentation//query/\fP at the top of a build tree. This version of CMake supports only one version schema, \fI\%API v1\fP\&. .SS Enabling Instrumentation at the User\-Level .sp Instrumentation can be configured at the user\-level by placing query files in the \fI\%CMAKE_CONFIG_DIR\fP under \fB/instrumentation//query/\fP\&. .SS Enabling Instrumentation for CDash Submissions .sp You can enable instrumentation when using CTest in \fI\%Dashboard Client\fP mode by setting the \fI\%CTEST_USE_INSTRUMENTATION\fP environment variable to the current UUID for the \fBCMAKE_EXPERIMENTAL_INSTRUMENTATION\fP feature. Doing so automatically enables the \fBdynamicSystemInformation\fP query. .sp The following table shows how each type of instrumented command gets mapped to a corresponding type of CTest XML file. .TS box center; l|l. T{ \fI\%Snippet Role\fP T} T{ CTest XML File T} _ T{ \fBconfigure\fP T} T{ \fBConfigure.xml\fP T} _ T{ \fBgenerate\fP T} T{ \fBConfigure.xml\fP T} _ T{ \fBcompile\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBlink\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBcustom\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBbuild\fP T} T{ unused! T} _ T{ \fBcmakeBuild\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBcmakeInstall\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBinstall\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBctest\fP T} T{ \fBBuild.xml\fP T} _ T{ \fBtest\fP T} T{ \fBTest.xml\fP T} .TE .sp By default the command line reported to CDash is truncated at the first space. You can instead choose to report the full command line (including arguments) by setting \fI\%CTEST_USE_VERBOSE_INSTRUMENTATION\fP to 1. .SH API V1 .sp The API version specifies both the subdirectory layout of the instrumentation data, and the format of the query files. .sp The Instrumentation API v1 is housed in the \fBinstrumentation/v1/\fP directory under either \fB/.cmake/\fP for output data and project\-level queries, or \fB/\fP for user\-level queries. The \fBv1\fP component of this directory is what signifies the API version. It has the following subdirectories: .INDENT 0.0 .TP .B \fBquery/\fP Holds query files written by users or clients. Any file with the \fB\&.json\fP file extension will be recognized as a query file. These files are owned by whichever client or user creates them. .TP .B \fBquery/generated/\fP Holds query files generated by a CMake project with the \fI\%cmake_instrumentation()\fP command. These files are owned by CMake and are deleted and regenerated automatically during the CMake configure step. .TP .B \fBdata/\fP Holds instrumentation data collected on the project. CMake owns all data files, they should never be removed by other processes. Data collected here remains until after \fI\%Indexing\fP occurs and all \fI\%Callbacks\fP are executed. .TP .B \fBcdash/\fP Holds temporary files used internally to generate XML content to be submitted to CDash. .UNINDENT .SS v1 Query Files .sp Any file with the \fB\&.json\fP extension under the \fBinstrumentation/v1/query/\fP directory is recognized as a query for instrumentation data. .sp These files must contain a JSON object with the following keys. The \fBversion\fP key is required, but all other fields are optional. .INDENT 0.0 .TP .B \fBversion\fP The Data version of snippet file to generate, an integer. Currently the only supported version is \fB1\fP\&. .TP .B \fBcallbacks\fP A list of command\-line strings for \fI\%Callbacks\fP to handle collected instrumentation data. Whenever these callbacks are executed, the full path to a \fI\%v1 Index File\fP is appended to the arguments included in the string. .TP .B \fBhooks\fP A list of strings specifying when \fI\%Indexing\fP should occur automatically. These are the intervals when instrumentation data should be collated and user \fI\%Callbacks\fP should be invoked to handle the data. Elements in this list should be one of the following: .INDENT 7.0 .IP \(bu 2 \fBpostGenerate\fP .IP \(bu 2 \fBpreBuild\fP (called when \fBninja\fP or \fBmake\fP is invoked; unavailable on Windows) .IP \(bu 2 \fBpostBuild\fP (called when \fBninja\fP or \fBmake\fP completes; unavailable on Windows) .IP \(bu 2 \fBpreCMakeBuild\fP (called when \fBcmake \-\-build\fP is invoked) .IP \(bu 2 \fBpostCMakeBuild\fP (called when \fBcmake \-\-build\fP completes) .IP \(bu 2 \fBpostInstall\fP .IP \(bu 2 \fBpostTest\fP .UNINDENT .TP .B \fBqueries\fP A list of strings specifying additional optional data to collect during instrumentation. Elements in this list should be one of the following: .INDENT 7.0 .INDENT 3.5 .INDENT 0.0 .TP .B \fBstaticSystemInformation\fP Enables collection of the static information about the host machine CMake is being run from. This data is collected during \fI\%Indexing\fP and is included in the generated \fI\%v1 Index File\fP\&. .TP .B \fBdynamicSystemInformation\fP Enables collection of the dynamic information about the host machine CMake is being run from. Data is collected for every \fI\%v1 Snippet File\fP generated by CMake, and includes information from immediately before and after the command is executed. .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp The \fBcallbacks\fP listed will be invoked during the specified hooks \fIat a minimum\fP\&. When there are multiple query files, the \fBcallbacks\fP, \fBhooks\fP and \fBqueries\fP between them will be merged. Therefore, if any query file includes any \fBhooks\fP, every \fBcallback\fP across all query files will be executed at every \fBhook\fP across all query files. Additionally, if any query file includes any optional \fBqueries\fP, the optional query data will be present in all data files. .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .EX { \(dqversion\(dq: 1, \(dqcallbacks\(dq: [ \(dq/usr/bin/python callback.py\(dq, \(dq/usr/bin/cmake \-P callback.cmake arg\(dq, ], \(dqhooks\(dq: [ \(dqpostCMakeBuild\(dq, \(dqpostInstall\(dq ], \(dqqueries\(dq: [ \(dqstaticSystemInformation\(dq, \(dqdynamicSystemInformation\(dq ] } .EE .UNINDENT .UNINDENT .sp In this example, after every \fBcmake \-\-build\fP or \fBcmake \-\-install\fP invocation, an index file \fBindex\-.json\fP will be generated in \fB/.cmake/instrumentation/v1/data\fP containing a list of data snippet files created since the previous indexing. The commands \fB/usr/bin/python callback.py index\-.json\fP and \fB/usr/bin/cmake \-P callback.cmake arg index\-.json\fP will be executed in that order. The index file will contain the \fBstaticSystemInformation\fP data and each snippet file listed in the index will contain the \fBdynamicSystemInformation\fP data. Once both callbacks have completed, the index file and all snippet files listed by it will be deleted from the project build tree. .SH DATA V1 .sp Data version specifies the contents of the output files generated by the CMake instrumentation API as part of the \fI\%Data Collection\fP and \fI\%Indexing\fP\&. There are two types of data files generated: the \fI\%v1 Snippet File\fP and \fI\%v1 Index File\fP\&. When using the \fI\%API v1\fP, these files live in \fB/.cmake/instrumentation/v1/data/\fP under the project build tree. .SS v1 Snippet File .sp Snippet files are generated for every compile, link and custom command invoked as part of the CMake build or install step and contain instrumentation data about the command executed. Additionally, snippet files are created for the following: .INDENT 0.0 .IP \(bu 2 The CMake configure step .IP \(bu 2 The CMake generate step .IP \(bu 2 Entire build step (executed with \fBcmake \-\-build\fP) .IP \(bu 2 Entire install step (executed with \fBcmake \-\-install\fP) .IP \(bu 2 Each \fBctest\fP invocation .IP \(bu 2 Each individual test executed by \fBctest\fP\&. .UNINDENT .sp These files remain in the build tree until after \fI\%Indexing\fP occurs and any user\-specified \fI\%Callbacks\fP are executed. .sp Snippet files have a filename with the syntax \fB\-\-.json\fP and contain the following data: .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .TP .B \fBversion\fP The Data version of the snippet file, an integer. Currently the version is always \fB1\fP\&. .TP .B \fBcommand\fP The full command executed. Excluded when \fBrole\fP is \fBbuild\fP\&. .TP .B \fBworkingDir\fP The working directory in which the \fBcommand\fP was executed. .TP .B \fBresult\fP The exit\-value of the command, an integer. .TP .B \fBrole\fP The type of command executed, which will be one of the following values: .INDENT 7.0 .IP \(bu 2 \fBconfigure\fP: the CMake configure step .IP \(bu 2 \fBgenerate\fP: the CMake generate step .IP \(bu 2 \fBcompile\fP: an individual compile step invoked during the build .IP \(bu 2 \fBlink\fP: an individual link step invoked during the build .IP \(bu 2 \fBcustom\fP: an individual custom command invoked during the build .IP \(bu 2 \fBbuild\fP: a complete \fBmake\fP or \fBninja\fP invocation. Only generated if \fBpreBuild\fP or \fBpostBuild\fP hooks are enabled. .IP \(bu 2 \fBcmakeBuild\fP: a complete \fBcmake \-\-build\fP invocation .IP \(bu 2 \fBcmakeInstall\fP: a complete \fBcmake \-\-install\fP invocation .IP \(bu 2 \fBinstall\fP: an individual \fBcmake \-P cmake_install.cmake\fP invocation .IP \(bu 2 \fBctest\fP: a complete \fBctest\fP invocation .IP \(bu 2 \fBtest\fP: a single test executed by CTest .UNINDENT .TP .B \fBtarget\fP The CMake target associated with the command. Only included when \fBrole\fP is \fBcompile\fP or \fBlink\fP\&. .TP .B \fBtargetType\fP The \fI\%TYPE\fP of the target. Only included when \fBrole\fP is \fBlink\fP\&. .TP .B \fBtargetLabels\fP The \fI\%LABELS\fP of the target. Only included when \fBrole\fP is \fBlink\fP\&. .TP .B \fBtimeStart\fP Time at which the command started, expressed as the number of milliseconds since the system epoch. .TP .B \fBduration\fP The duration that the command ran for, expressed in milliseconds. .TP .B \fBoutputs\fP The command\(aqs output file(s), an array. Only included when \fBrole\fP is one of: \fBcompile\fP, \fBlink\fP, \fBcustom\fP\&. .TP .B \fBoutputSizes\fP The size(s) in bytes of the \fBoutputs\fP, an array. For files which do not exist, the size is 0. Included under the same conditions as the \fBoutputs\fP field. .TP .B \fBsource\fP The source file being compiled. Only included when \fBrole\fP is \fBcompile\fP\&. .TP .B \fBlanguage\fP The language of the source file being compiled. Only included when \fBrole\fP is \fBcompile\fP\&. .TP .B \fBtestName\fP The name of the test being executed. Only included when \fBrole\fP is \fBtest\fP\&. .TP .B \fBconfig\fP The type of build, such as \fBRelease\fP or \fBDebug\fP\&. Only included when \fBrole\fP is \fBcompile\fP, \fBlink\fP or \fBtest\fP\&. .TP .B \fBdynamicSystemInformation\fP Specifies the dynamic information collected about the host machine CMake is being run from. Data is collected for every snippet file generated by CMake, with data immediately before and after the command is executed. Only included when enabled by the \fI\%v1 Query Files\fP\&. .INDENT 7.0 .TP .B \fBbeforeHostMemoryUsed\fP The Host Memory Used in KiB at \fBtimeStart\fP\&. .TP .B \fBafterHostMemoryUsed\fP The Host Memory Used in KiB at \fBtimeStop\fP\&. .TP .B \fBbeforeCPULoadAverage\fP The Average CPU Load at \fBtimeStart\fP\&. .TP .B \fBafterCPULoadAverage\fP The Average CPU Load at \fBtimeStop\fP\&. .UNINDENT .UNINDENT .UNINDENT .UNINDENT .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .EX { \(dqversion\(dq: 1, \(dqcommand\(dq : \(dq\e\(dq/usr/bin/c++\e\(dq \e\(dq\-MD\e\(dq \e\(dq\-MT\e\(dq \e\(dqCMakeFiles/main.dir/main.cxx.o\e\(dq \e\(dq\-MF\e\(dq \e\(dqCMakeFiles/main.dir/main.cxx.o.d\e\(dq \e\(dq\-o\e\(dq \e\(dqCMakeFiles/main.dir/main.cxx.o\e\(dq \e\(dq\-c\e\(dq \e\(dq/main.cxx\e\(dq\(dq, \(dqrole\(dq : \(dqcompile\(dq, \(dqreturn\(dq : 1, \(dqtarget\(dq: \(dqmain\(dq, \(dqlanguage\(dq : \(dqC++\(dq, \(dqoutputs\(dq : [ \(dqCMakeFiles/main.dir/main.cxx.o\(dq ], \(dqoutputSizes\(dq : [ 0 ], \(dqsource\(dq : \(dq/main.cxx\(dq, \(dqconfig\(dq : \(dqDebug\(dq, \(dqdynamicSystemInformation\(dq : { \(dqafterCPULoadAverage\(dq : 2.3500000000000001, \(dqafterHostMemoryUsed\(dq : 6635680.0 \(dqbeforeCPULoadAverage\(dq : 2.3500000000000001, \(dqbeforeHostMemoryUsed\(dq : 6635832.0 }, \(dqtimeStart\(dq : 1737053448177, \(dqduration\(dq : 31 } .EE .UNINDENT .UNINDENT .SS v1 Index File .sp Index files contain a list of \fI\%v1 Snippet File\fP\&. It serves as an entry point for navigating the instrumentation data. They are generated whenever \fI\%Indexing\fP occurs and deleted after any user\-specified \fI\%Callbacks\fP are executed. .INDENT 0.0 .TP .B \fBversion\fP The Data version of the index file, an integer. Currently the version is always \fB1\fP\&. .TP .B \fBbuildDir\fP The build directory of the CMake project. .TP .B \fBdataDir\fP The full path to the \fB/.cmake/instrumentation/v1/data/\fP directory. .TP .B \fBhook\fP The name of the hook responsible for generating the index file. In addition to the hooks that can be specified by one of the \fI\%v1 Query Files\fP, this value may be set to \fBmanual\fP if indexing is performed by invoking \fBctest \-\-collect\-instrumentation \fP\&. .TP .B \fBsnippets\fP Contains a list of \fI\%v1 Snippet File\fP\&. This includes all snippet files generated since the previous index file was created. The file paths are relative to \fBdataDir\fP\&. .TP .B \fBstaticSystemInformation\fP Specifies the static information collected about the host machine CMake is being run from. Only included when enabled by the \fI\%v1 Query Files\fP\&. .INDENT 7.0 .IP \(bu 2 \fBOSName\fP .IP \(bu 2 \fBOSPlatform\fP .IP \(bu 2 \fBOSRelease\fP .IP \(bu 2 \fBOSVersion\fP .IP \(bu 2 \fBfamilyId\fP .IP \(bu 2 \fBhostname\fP .IP \(bu 2 \fBis64Bits\fP .IP \(bu 2 \fBmodelId\fP .IP \(bu 2 \fBnumberOfLogicalCPU\fP .IP \(bu 2 \fBnumberOfPhysicalCPU\fP .IP \(bu 2 \fBprocessorAPICID\fP .IP \(bu 2 \fBprocessorCacheSize\fP .IP \(bu 2 \fBprocessorClockFrequency\fP .IP \(bu 2 \fBprocessorName\fP .IP \(bu 2 \fBtotalPhysicalMemory\fP .IP \(bu 2 \fBtotalVirtualMemory\fP .IP \(bu 2 \fBvendorID\fP .IP \(bu 2 \fBvendorString\fP .UNINDENT .UNINDENT .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .EX { \(dqversion\(dq: 1, \(dqhook\(dq: \(dqmanual\(dq, \(dqbuildDir\(dq: \(dq\(dq, \(dqdataDir\(dq: \(dq/.cmake/instrumentation/v1/data\(dq, \(dqsnippets\(dq: [ \(dqconfigure\-\-.json\(dq, \(dqgenerate\-\-.json\(dq, \(dqcompile\-\-.json\(dq, \(dqcompile\-\-.json\(dq, \(dqlink\-\-.json\(dq, \(dqinstall\-\-.json\(dq, \(dqctest\-\-.json\(dq, \(dqtest\-\-.json\(dq, \(dqtest\-\-.json\(dq, ] } .EE .UNINDENT .UNINDENT .SH COPYRIGHT 2000-2025 Kitware, Inc. and Contributors .\" Generated by docutils manpage writer. .