302 questions
0 votes
1 answer
46 views
How to add perfmon datas/graphs in the HTML report in jmeter?
I’m using JMeter 5.6.3 on Debian in non-GUI mode, and I’m encountering the following issue: I don’t know how to include performance monitoring data—such as CPU, memory, disk I/O, and network I/O—in my ...
0 votes
1 answer
165 views
AWS cloudwatch monitoring for perfmon counters
Im trying to monitor a windows perfmon counter with AWS cloudwatch agents. However i seem to hit a bit of a brickwall where i cant seem to get anywhere. In particular i am trying to monitor the MSMQ ...
0 votes
0 answers
45 views
Garbage Collection Performance Counters
I'm trying to understand if I am facing an issue with garbage collection in my application and if so, what kind of an issue it is. I'm seeing that the Gen0 and Gen1 collections are staying on the same ...
0 votes
0 answers
230 views
Using IIS MaxQueueItemAge performance counter
I want to use the built in performance counter MaxQueueItemAge from the "HTTP Service Request Queues" to measure how long the latest request to my application waited in the IIS queue. This ...
0 votes
1 answer
113 views
Perfmon Metrics Collector plugin not working in JMeter. What could be the issue?
I have installed the perfmon metric collector plugin in JMeter. I have downloaded the startAgent.bat file from GITHUB repository. I run the startAgent.bat file. The agent is started. But when I try to ...
0 votes
1 answer
78 views
"Waiting for samples..." message in perfmon report while running JMeter
I am getting "Waiting for samples..." in perfmon report while running the script in JMeter. The agent server is run correctly and the application itself runs correctly. I am expecting the ...
1 vote
1 answer
1k views
.NET Core performance counters
I have a .net core service running on windows. In the performance monitor tool I could find counters such as "\Process(MyServiceName)\% Processor Time" but not others like "\.NET CLR ...
0 votes
1 answer
260 views
How to incorporate perfmon (plugin) stats into the standard JMeter report
I'm using the perfmon plugin within JMeter to collect stats like CPU usage and would like to display this in a custom (over time) graph in the standard JMeter HTML report. So far I have a custom graph ...
0 votes
1 answer
181 views
Need to add perfmon in HTML file of jmeter
I am trying to configure perfmon in html, but it is showing error. I have tried multiple steps but still shows error. What I have tried. Steps I followed (Checked in version 5.4 and 5.5) First, I ...
0 votes
1 answer
2k views
How to setup and start a Perfmon Counter via PowerShell v5 and above on Windows 10 Enterprise servers using xml template as Input
I am troubleshooting some possible performance issues on Windows 10 Enterprise servers and want to setup performance counters for memory, and CPU Utilization for a few processes. I have setup few ...
1 vote
1 answer
394 views
Is GC stats still accessible on perfmon/PerformanceCounter.dll for a .NET6 desktop app?
We have a WPF app (x64) running on .NET4.8 and we used to print GC/memory related stats onto log periodically using System.Diagnostics.PerformanceCounter. (Using category: ".NET CLR Memory") ...
0 votes
1 answer
368 views
JMeter PerfMon stops monitoring after while
My perfMon pluggin stops monitoring the server health always after 6 seconds. perfMon chart I am using: jMeter 5.4.1 ServerAgent-2.2.1 jre1.8.0_241 I have a successful connection between my client ...
0 votes
1 answer
889 views
How to put the live data in the queue from subprocess.Popen() stdout or communicate() function?
I'm new to subprocess module of python. I have below piece of code which executes the command on the windos machine and fetches the data from the windows perfmon counters. The command executes over ...
1 vote
1 answer
3k views
HTTP Service Request Queues\CurrentQueueSize counter instance name
I am currently looking to monitor the Current Queue Size counter and have been poking about in PowerShell via Get-Counter -Counter "\HTTP Service Request Queues(*)\CurrentQueueSize" which ...
0 votes
1 answer
622 views
How can I increment Windows Performance Counters from Python 3.7?
I have a Python script running on Python 3.7 and I would like to increment, decrement, or otherwise write to Windows Performance Monitor Counters as used by Perfmon.exe. I found a module called ...