Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Bashar
Contributor III
Contributor III

QlikSense - Reload Monitor Script

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.

 

 

Labels (3)
1 Solution

Accepted Solutions
Or
MVP
MVP

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.

View solution in original post

2 Replies
Or
MVP
MVP

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.

Bashar
Contributor III
Contributor III
Author

Hi Or,

Thanks so much, that did it!