fix: use projectInternalId in the usage stats

This commit is contained in:
Christy Jacob 2022-11-22 21:26:10 +05:30
parent c7f2785b45
commit 92a59cdf3f

View file

@ -489,7 +489,7 @@ class TimeSeries extends Calculator
$query .= "WHERE \"time\" > '{$start}' ";
$query .= "AND \"time\" < '{$end}' ";
$query .= "AND \"metric_type\"='counter' {$filters} ";
$query .= "GROUP BY time({$period['key']}), \"projectId\" {$groupBy} ";
$query .= "GROUP BY time({$period['key']}), \"projectId\", \"projectInternalId\" {$groupBy} ";
$query .= "FILL(null)";
try {
@ -516,7 +516,7 @@ class TimeSeries extends Calculator
}
$this->createOrUpdateMetric(
$point['projectId'],
$point['projectInternalId'],
$point['time'],
$period['key'],
$metricUpdated,