Questions tagged [perfmon]

A tool used to launch Performance Monitor for Microsoft Windows.

A tool used to launch Performance Monitor for Microsoft Windows.

Performance Monitor is an MMC (Microsoft Management Console) snap-in used to view Microsoft Windows performance data, and configure performance metrics tracking.

More information on perfmon.exe here, and on Performance Monitor here.

297 questions
0
votes
1 answer

log4Net causing thread to be blocked

I am using log4Net to log the activity and after analyzing the stack trace from perfmon I see there is a deadlock like scenario as shown below ntdll!NtWaitForMultipleObjects+a KERNELBASE!WaitForMultipleObjectsEx+e1 …
user2526236
  • 1,538
  • 2
  • 15
  • 29
0
votes
1 answer

performance counters and Hyper-V VM and Azure VM and windows server 2012

Ok so i have a web application that is setup on Azure VM (IIS). The performance counters will not report data on Azure VM, but they seem to report well on hyper-v vm. Both vm's are running windows server 2012 R2. Do I need to open ports on Azure…
Syler
  • 1,151
  • 1
  • 13
  • 30
0
votes
1 answer

Jmeter performance monitoring using perfmon plugin

I am trying to use Jmeter perfmon plugin to monitor cpu and memory utilisation of server. Server is hosted on linux machine and is running apache and postgresql. I am running serveragent in linux server and added cpu and memory parameters in Jmeter…
anand
  • 11,071
  • 28
  • 101
  • 159
0
votes
1 answer

Formatting the output data in csv from powershell script

I'm trying to fetch the perfmon counters and exporting the data to csv file. $pg_co = "\Processor(_total)\% processor time" $pg_Da = Get-Counter $pg_co $pg_Da.counterSamples | Select-Object TimeStamp, CookedValue, RawValue | Export-CSV…
San852
  • 19
  • 8
0
votes
0 answers

PerformanceCounter.NextSample(): Sampling

Are CounterSample instances returned from PerformanceCounter.NextSample() configurable? Can I configure the counter and sampling e.g. to query instant values 5 times a minute and give me an average for 5 minutes? How is the sampling…
pomeroy
  • 1,377
  • 1
  • 12
  • 21
0
votes
1 answer

Performance Monitoring Counters Threshold

I have a performance monitoring running on Server. It recorded several counters from SQL Server, Server, Web Service Performance, Web Service Cache Performance, IIS Performance, and ASP.NET Performance. After seeing the results I can't decide…
Arina
  • 70
  • 7
0
votes
0 answers

How to reset perfmon counter added using System.Diagnostics.PerformanceCounter

I inherited a project that uses custom performance counters to monitor number of successful/failed requests and their processing time for an IIS deployed web service. Code I used to log counters is like below: using (var performanceCounter = new…
TechnicalSmile
  • 1,387
  • 5
  • 16
  • 30
0
votes
1 answer

Why does perfmon fail to give available memory and what are the alternatives?

I am trying to get reliable information on when my C# application (Windows XP) will run out of memory. I did some research and tests on my machine and picked the most reliable perfmon counters: Memory.Pages Output/sec Memory.Available Bytes I use…
kelebron
  • 61
  • 1
  • 5
0
votes
1 answer

Scheduled perfmon skips every other day

I have a perfmon data collection set, scheduled to start every day. I get data files only every other day. I've checked the schedule details; all days are selected. I'll answer my own question.
Elroy Flynn
  • 3,032
  • 1
  • 24
  • 33
0
votes
1 answer

CPU usage of a process using perfmon

Im using Windows10, i need to check CPU usage and memory usage for a power shell script which is scheduled to run every 3mins. I have created a data collector set with following details I use perfmon, to monitor CPU Usage i have…
Yerigeri
  • 1
  • 2
0
votes
0 answers

What step should be considered for CPU/memory shortage in SQL Server

We recently faced an issue in a server where 12000 concurrent users were trying to access an application but only 120 SQL Server connections were available. Basic issue I've found is in the architecture of deployment of application and database as…
0
votes
1 answer

WCF concurrent connection configuration

We have a new Win 2012 server hosting a legacy .NET 3.5 WCF Service (with 22 endpoints and maybe a couple of hundred operations) and we are having some performance issues and want to control the number of connections. We have attached perfmon Web…
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
0
votes
1 answer

Zabbix trigger as INACTIVE

I'm trying to make an Item/trigger where: When the counter reachs 0 , then send me emails. I'm using perfmon for this. The counter i'm using is : PERF_COUNTER["\\HQPC30599\MSSQL$DBA_SQL:General Statistics\User Connections"] This is the expression…
Racer SQL
  • 207
  • 1
  • 3
  • 14
0
votes
1 answer

Perfmon show Process CPU usage

I would like to show one process CPUs usage with Perfmon. I already know how it should work. In your collection you can select your indicators and you select "Add.." Then you select Process and below you can select your instances like explorer.exe…
Michael
  • 251
  • 1
  • 2
  • 13
0
votes
1 answer

PerfMon plugin throwing error (with use of variables) in JMeter distributed Mode

I have implemented PerfMon Metrics Collector (listeners) in my JMeter scripts. These listeners have HOST and PORT fields. I have defined variables for these in Test Plan and using them in listeners. I tested these scripts in non-distributed mode and…
TestingWithArif
  • 894
  • 2
  • 13
  • 19