Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
So I'm trying to use the default Reload monitor app that is by default in the QS repository but the script is super complicated and when loading, it starts loading a year worth of data on an hourly basis, and so it takes forever.
Does someone know how to limit the data to just showing this current month, instead of showing the past year? I just want to see total reloads, start-time and end-time of every reload, and the average time it takes to reload for my published apps.
in the attached screenshot you'll see it starts from June 2022.
Reload Monitor uses an incremental reload, I believe, so once you get through that one long reload, it shouldn't be a problem moving forward. We have a large number of reloads (several thousands a day), and the regular incremental reload takes about seven minutes.
If necessary, I believe you can limit the period loaded using the following statement in the "Initialize" tab:
SET monthsOfHistory = 12; // How many months of history should be available in the app. More history = more processing, bigger app, etc.
Do keep in mind this will get overwritten any time your Reloads Monitor app is updated to a newer version, though, and I'm guessing it'll still take a long time to run during the first reload.
Reload Monitor uses an incremental reload, I believe, so once you get through that one long reload, it shouldn't be a problem moving forward. We have a large number of reloads (several thousands a day), and the regular incremental reload takes about seven minutes.
If necessary, I believe you can limit the period loaded using the following statement in the "Initialize" tab:
SET monthsOfHistory = 12; // How many months of history should be available in the app. More history = more processing, bigger app, etc.
Do keep in mind this will get overwritten any time your Reloads Monitor app is updated to a newer version, though, and I'm guessing it'll still take a long time to run during the first reload.
Hi Or,
Thanks so much, that did it!