Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
passionate
Specialist
Specialist

Qlik Scalablity tool performance counter

Hi Experts,

I am not able to load performance counter data to my scalablity tools.

Qvd is getting generated in QVD folder (PerformanceCounterQVD).

this is because while loading there is condition that:

PerformanceCounters:

LOAD * Inline [PCDummy];

FOR EACH File IN FILELIST ('QVD\PerformanceCounterQVD\*.qvd')

//Performance counters linked with TimeSlot ONLY. Used for Calendar time analysis

Concatenate (PerformanceCounters)

LOAD

*,

ProcessName & '@' & ServerName AS ProcessServer

Where Exists(TimeSlot, PCTimeSlot);

// Where Exists(%KEY_MachineTimeSlot);

LOAD .........

But there is no match between PCTimeSlot and TimeSlot

so no data is picked from qvd.

Please help on this if anyone is successful in using performance counter.

Thanks and Regards,

Pankaj

1 Solution

Accepted Solutions
Daniel_Larsson
Employee
Employee

Hi,

Start by checking these two things:

  • You have selected the correct time zone in the QVD Generator
  • The machine names on the test result correspond to the name in the perfomance counter file. (File normally named HOSTNAME_Processes...). If they don't correspond this can be linked pressing the "Edit Meta-data in Notepad" button in the QVD-Generator.

View solution in original post

2 Replies
Daniel_Larsson
Employee
Employee

Hi,

Start by checking these two things:

  • You have selected the correct time zone in the QVD Generator
  • The machine names on the test result correspond to the name in the perfomance counter file. (File normally named HOSTNAME_Processes...). If they don't correspond this can be linked pressing the "Edit Meta-data in Notepad" button in the QVD-Generator.
passionate
Specialist
Specialist
Author

Thanks for your Response Daniel.