You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Scrript triggers data regeneration for events and sessions.
3
+
* It stores progress in county.data_regeneration_progress collection.
4
+
* Collection can be dropped once regeneration is complete. Data in there ensures that if script dies unexpectedly, then upon staring again it will not regenerate collections again.
5
+
* mongosh countly
6
+
* db.data_regeneration_progress.drop();
7
+
*
8
+
* script path: {countly}/bin/scripts/fix-data/
9
+
*
10
+
* To run script:
11
+
* node regenerate_aggregated_data.js
12
+
*/
13
+
//Adjust settings below before running script
14
+
varregenerate_events=true;//if true will regenerate all custom events aggregated data
15
+
varregenerate_sessions=false;
16
+
varperiod="732days";//any valid period
17
+
18
+
//Each app IDis listed as string, for example var appList = ["6075f94b7e5e0d392902520c",6075f94b7e5e0d392902520d]
19
+
varappList=[];//If left empty, will run for all apps.
20
+
//For each app defined there only listed events will be regenerated. If left empty, all events will be regenerated.
21
+
//Example var eventMap = {"6075f94b7e5e0d392902520c":["Logout","Login"],"6075f94b7e5e0d392902520d":["Logout","Login","Buy"]};
22
+
vareventMap={};//If left empty will run for all alls/events.
0 commit comments