Skip to content

Commit

Permalink
Merge pull request #741 from emmanuelperotto/fix/metric_requested_for…
Browse files Browse the repository at this point in the history
…_billing

fix how the metricRequestedForBilling is counted to use queries.size()
  • Loading branch information
matthiasr authored Nov 8, 2024
2 parents 9bb80e0 + 176a4c2 commit 05d3391
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private List<MetricDataQuery> buildMetricDataQueries(
queries.add(query);
}
}
metricRequestedForBilling += stats.size();
metricRequestedForBilling += queries.size();
return queries;
}

Expand Down

0 comments on commit 05d3391

Please sign in to comment.