File tree Expand file tree Collapse file tree
definitions/output/reports Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -135,10 +135,10 @@ function generateReportConfigurations() {
135135 date >= DATE_RANGE . startDate ;
136136 date = constants . fnPastMonth ( date ) ) {
137137
138- const whitelistedMetrics = availableMetrics . Array . filter ( metric => metric . enabled ) // TODO: reports are whitelisted during migration
138+ const whitelistedMetrics = availableMetrics . filter ( metric => metric . enabled ) // TODO: reports are whitelisted during migration
139139
140140 // For each available metric
141- whitelistMetrics . forEach ( metric => {
141+ whitelistedMetrics . forEach ( metric => {
142142 // For each SQL type (histogram, timeseries)
143143 metric . SQL . forEach ( sql => {
144144 // For each available lens (all, top1k, wordpress, etc.)
@@ -227,7 +227,6 @@ reportConfigurations.forEach(reportConfig => {
227227 const operationName = createOperationName ( reportConfig )
228228
229229 operate ( operationName , {
230- disabled : true ,
231230 } )
232231 . tags ( [ 'crawl_reports' ] )
233232 . queries ( ctx => generateOperationSQL ( ctx , reportConfig ) )
You can’t perform that action at this time.
0 commit comments