We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b171929 commit d5689faCopy full SHA for d5689fa
src/server/bg_services/usage_aggregator.js
@@ -112,6 +112,9 @@ async function background_worker() {
112
const till = moment().subtract(8, 'weeks').valueOf();
113
dbg.log0('Deleting reports older than', new Date(till));
114
await EndpointStatsStore.instance.clean_bandwidth_reports({ till });
115
+
116
+ // Clean endpoint group reports here as well?
117
+ await EndpointStatsStore.instance.clean_endpoint_group_reports({ till });
118
}
119
120
function _accumulate_bandwidth(acc, update) {
0 commit comments