Added stats collector for users and globally - visualization for this will come later but updating now will allow to start collecting the stats already.
See new config values:
qeta?: {
/**
* Stats config
*/
stats?: {
/**
* Schedule to run the stats collector, defaults to 2 times a day
*/
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
/**
* Number of days to keep the stats, defaults to 30
*/
historyDays?: number;
};
};