Skip to content

Commit b9969e5

Browse files
committed
Add actions-specific telemetry fields
1 parent 83605b3 commit b9969e5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/analyze.ts

+9
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ export class CodeQLAnalysisError extends Error {
4242
}
4343

4444
export interface QueriesStatusReport {
45+
/**
46+
* Time taken in ms to run queries for actions (or undefined if this language was not analyzed).
47+
*
48+
* The "builtin" designation is now outdated with the move to CLI config parsing: this is the time
49+
* taken to run _all_ the queries.
50+
*/
51+
analyze_builtin_queries_actions_duration_ms?: number;
4552
/**
4653
* Time taken in ms to run queries for cpp (or undefined if this language was not analyzed).
4754
*
@@ -98,6 +105,8 @@ export interface QueriesStatusReport {
98105
*/
99106
analyze_builtin_queries_swift_duration_ms?: number;
100107

108+
/** Time taken in ms to interpret results for actions (or undefined if this language was not analyzed). */
109+
interpret_results_actions_duration_ms?: number;
101110
/** Time taken in ms to interpret results for cpp (or undefined if this language was not analyzed). */
102111
interpret_results_cpp_duration_ms?: number;
103112
/** Time taken in ms to interpret results for csharp (or undefined if this language was not analyzed). */

0 commit comments

Comments
 (0)