AppReports/lib/defaults.js
Timo Hocker f57444a3d1
All checks were successful
continuous-integration/drone/push Build is passing
reduction job, chart duplicates
2020-08-25 15:24:20 +02:00

24 lines
363 B
JavaScript

'use strict';
module.exports = {
app: {
/**
* reduce data after given time durations
* 1. delete duplicates (1 day)
* 2. divide by 2 (1 week)
* ...
* 7. delete all (6 weeks)
*/
reduction: JSON.stringify ([
86400,
604800,
1209600,
1814400,
2419200,
3024000,
3628800
])
}
};