Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to use QVSSettings.QVSPerformance.QVSPerformanceWorkingSetMemory

I'm looking through the Qlikview API and I want to create a C# app that will notify us when QlikView server hits its high threhold of 90% memory usage and I found in the API this. QVSSettings.QVSPerformance.QVSPerformanceWorkingSetMemory. This should be what I'm looking for but I'm not really should how to use it.  Essentially I want to check to see if my current Working Memory is >= the 90% threshold.  Not so worried about the notification part, but just wondering if anyone has any examples of using this api call before.

Thanks

3 Replies
mls
Former Employee
Former Employee

This would only show you what the current working set limits are set to, not the actual memory usage.


From the API documentation (QMS API Documentation - Version 11😞settings2.png

For example, a quick test with the QMS API Client (Power Tools 1.2 for QlikView), shows that my system is using the default settings, 70%, 90%

settings.png

Bill_Britt
Former Employee
Former Employee

HI,

The System Monitor and Governance (available from the QlikView Download site) DashBoard will give this information.

Bill

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
Not applicable
Author

Hi,

we are set up some monitoring with SCOM.

But you can use powershell, as well.

Just have a look to this

Get-Process qvs | select -Property *

in this case QVS is the QlikView Server process.

Regards

Michael