Skip to content

Commit

Permalink
fix how the metricRequestedForBilling is counted to use queries.size()
Browse files Browse the repository at this point in the history
Signed-off-by: Perotto <[email protected]>
  • Loading branch information
emmanuelperotto committed Sep 10, 2024
1 parent 0fba7df commit 176a4c2
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 176a4c2

Please sign in to comment.