File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ interface InitWithConfigStatusReport extends InitStatusReport {
93
93
trap_cache_download_size_bytes : number ;
94
94
/** Time taken to download TRAP caches, in milliseconds. */
95
95
trap_cache_download_duration_ms : number ;
96
+ /** Stringified JSON object representing a query-filters, from the 'query-filters' config field. **/
97
+ query_filters : string ;
96
98
}
97
99
98
100
/** Fields of the init status report populated when the tools source is `download`. */
@@ -207,6 +209,7 @@ async function sendCompletedStatusReport(
207
209
await getTotalCacheSize ( config . trapCaches , logger ) ,
208
210
) ,
209
211
trap_cache_download_duration_ms : Math . round ( config . trapCacheDownloadTime ) ,
212
+ query_filters : JSON . stringify ( config . originalUserInput [ "query-filters" ] ) ,
210
213
} ;
211
214
await sendStatusReport ( {
212
215
...initWithConfigStatusReport ,
You can’t perform that action at this time.
0 commit comments