Tagged Questions
The performancecounter tag has no wiki summary.
22
votes
5answers
13k views
Can a C# program measure its own CPU usage somehow?
I am working on a background program that will be running for a long time, and I have a external logging program (SmartInspect) that I want to feed with some values periodically, to monitor it in ...
22
votes
6answers
23k views
C# - How do you get total amount of RAM the computer has?
I'm wanting to get the total amount of RAM my computer has using C#.
Using the PerformanceCounter I can get the amount of Available ram, by setting:
counter.CategoryName = "Memory";
...
17
votes
6answers
2k views
What is the performance hit of Performance Counters
When considering using performance counters as my companies' .NET based site, I was wondering how big the overhead is of using them.
Do I want to have my site continuously update it's counters or am ...
11
votes
4answers
195 views
Is this clock tick suitable on Intel i3?
I adopted online to measure SSE performance.
#ifndef __TIMER_H__
#define __TIMER_H__
#pragma warning (push)
#pragma warning (disable : 4035) // disable no return value warning
__forceinline ...
8
votes
2answers
4k views
How to determine total size of ASP.Net cache?
I'm using the ASP.net cache in a web project, and I'm writing a "status" page for it which shows the items in the cache, and as many statistics about the cache as I can find. Is there any way that I ...
7
votes
1answer
660 views
How do performance counter average timers get associated with their base?
I am adding some performance counters to my c# project and am creating a new PerformanceCounterCategory. In this category, I would like to have multiple counters/timers that track different things. I ...
7
votes
1answer
4k views
The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly
I am getting repeated errors about the ReadOnly property on performance counters whenever I try to debug a .NET windows service app. This app works fine on x86 windows vista, or x86 windows 2003. It's ...
7
votes
1answer
3k views
PerformanceCounters on .NET 4.0 & Windows 7
I have a program that works fine on VS2008 and Vista, but I'm trying it on Windows 7 and VS2010 / .NET Framework 4.0 and it's not working. Ultimately the problem is that ...
7
votes
1answer
1k views
Performance counters on the iPhone
I'm trying to find the best method of incode performance monitoring on the iPhone.
On a windows platform I would use the following functions :
QueryPerformanceCounter((LARGE_INTEGER *)&ctr);
...
7
votes
3answers
2k views
Deleting Windows performance counter categories
I have a custom performance counter category. Visual Studio Server Explorer refuses to delete it, claiming it is 'not registered or a system category'. Short of doing it programmatically, how can I ...
7
votes
4answers
6k views
Get Performance Counter Instance Name (w3wp#XX) from ASP.NET worker process ID
I would like to display some memory statistics (working set, GCs etc.) on a web page using the .NET/Process performance counters. Unfortunately, if there are multiple application pools on that server, ...
6
votes
1answer
199 views
Explanation about high-resolution performance counter and its existance related to .NET Stopwatch?
Inside static Stopwatch constructor we can see following code, that basicly checks whether high-resolution performance counter exists.
static Stopwatch()
{
if ...
6
votes
2answers
4k views
Performance Counter Category Names? (C#)
I'm trying to program in a performance counter into my C# application that launches another process and checks the processor usage of that launched process. As I understand it, the performance counter ...
5
votes
3answers
912 views
How to get CPU usage for more than 2 cores?
I try to get in my program CPU usage divided by a cores. Now I use the PerformanceCounter
and changing the InstanceName between 0 and 1 I have the data from 2 cores.
PerformanceCounter pc0 = new ...
5
votes
3answers
929 views
Determining a computer's maximum hard drive data transfer rate programmatically with C#
I have written a small WPF widget using C# that displays the current CPU activity, RAM used and disk activity as three small percentage type bars. I have used the following PerformanceCounters for ...
5
votes
3answers
1k views
Multi-threading calls in Windows Forms application?
I'm trying to make my C# application multi threaded because sometimes, I get an exception that says I have made a call to a thread in an unsafe manner. I've never done any multi-threading before in a ...
5
votes
4answers
2k views
Installing a Total instance for Performance Counters
VS 2005, C# 2.0, .NET 2.0/3.0, Win2003
I'm trying to install a set of performance counters for a MultiInstance. I noticed that some system performance counter categories manage to keep a "total" ...
5
votes
3answers
590 views
Memory Bandwidth Usage
How do you calculate memory (RAM) bandwidth used? Which performance counters are required?
I came across a tool that was able to do it, the "Rightmark multi-threaded memory test". But unlike the rest ...
5
votes
4answers
215 views
Running a managed application 2nd time shows different performance than 1st
I have a benchmarking application to test out the performance of some APIs that I have written. In this benchmarking application, I am basically using the QueryPerformanceCounter and getting the ...
4
votes
3answers
362 views
How to get the number of CPU cycles used by a process
I have a need to get the number of CPU cycles used by a specific process using C# (or VB.Net). This information is available in the Process properties popup within Sysinternal's Process Explorer. ...
4
votes
1answer
374 views
Exception: Instance 'Name of instance' does not exist in the specified Category
When I create and use performance counters like this:
private readonly PerformanceCounter _cpuPerformanceCounter;
public ProcessViewModel(Process process)
{
...
4
votes
2answers
300 views
Memory mapped files: how to monitor memory usage
I work on a 32 bit end user application that needs a lot of memory. Up to several gigabytes. I recently switched our internal memory allocation strategy to use memory-mapped-files-without-files ...
4
votes
1answer
406 views
Performance counter vs ETW
Are performance counters part of ETW? If not what is the difference betweent the two
4
votes
3answers
423 views
Do Core i3/5/7 CPUs provide a mechanism to measure IPC?
All the Intel CPUs in the last decade (at least) include a set of performance monitors that count a variety of events. Do the latest Intel CPUs, Core i3, i5 and i7 (aka Nehalem) provide a mechanism ...
4
votes
2answers
736 views
Understanding Memory Performance Counters
[Update - Sep 30, 2010]
Since I studied a lot on this & related topics, I'll write whatever tips I gathered out of my experiences and suggestions provided in answers over here-
1) Use memory ...
4
votes
3answers
525 views
How to programatically log PerformanceCounter
I understand that using Perfmon.msc you can create a custom performance counter and by using counter log, you can write the counter value to a text file.
I also understand I can also use this ...
4
votes
1answer
306 views
Why does NextValue call of performanceCounter change thread affinity mask
I have a C# project, where I have to both access the current workload of my processor, and ensure, that I run some specific code on every kernel of the processor. My problem is, that accessing the ...
4
votes
1answer
609 views
Naming multi-instance performance counters in .NET
Most multiple instance performance counters in Windows seem to automatically(?) have a #n on the end if there's more than one instance with the same name.
For example: if, in Perfmon, you look under ...
4
votes
4answers
680 views
What is the most appropriate performance counter type for measuring operation time?
Say I have a method Foo() and I want to measure the time in milliseconds it took to execute which type of Windows Performance Counter should I be using?
var stopwatch = new Stopwatch();
...
4
votes
2answers
322 views
To PerformanceCounter or To Write Custom Monitoring?
I have a Windows service that runs implementations of a framework across multiple threads. Each running instance has several things in common that I need to keep track of, for example, number of ...
4
votes
4answers
1k views
Using custom performance counters across appdomain recyclyes
I have an ASP.NET application which tracks statistics by creating and writing to custom performance counters. Occasionally, I see in the error logs that indicate that the counters have failed to open ...
3
votes
3answers
304 views
Performance Counter - System.InvalidOperationException: Category does not exist
I have following class that returns number of current Request per Second of IIS. I call RefreshCounters every minute in order to keep Requests per Second value refreshed (because it is average and if ...
3
votes
1answer
92 views
Performance Counters for all processes with same name?
I am currently running nginx on my windows system and am making a little control panel to show statistics of my web server.
I'm trying to get the performance counters for the CPU Usage and Memory ...
3
votes
1answer
68 views
Async Web Service Calls appear to stop being processed, but remote debugger shows otherwise
I fire off about 2k async we service calls that usually take about a 30 to complete in total. Though sometimes they get stuck (visible on performance counter, asp.net, Requests Current when the ...
3
votes
2answers
211 views
Web Interface For Visualizing ASP.NET Performance Counters Remotely
Is there an ELMAH equivalent for performance monitoring (e.g. something you can plug into an ASP.NET app so you can visualize performance counters remotely)?
There are some solutions for Azure but ...
3
votes
2answers
110 views
Understanding difference between running an in-code time-counter and an out-code time-counter
OK. The title of this qiestion is not easy to decode, but let me explain you.
In order to set a common ground I am going to provide some detailed information, but this question is meant to be applied ...
3
votes
2answers
218 views
Using PerformanceCounters to target specific drives
Guys, I have the following code:
using System.Diagnostics;
private PerformanceCounter diskRead = new PerformanceCounter();
private PerformanceCounter diskWrite = new PerformanceCounter();
...
3
votes
4answers
198 views
Options for uniquely identifying objects at runtime?
I need to attach a unique identifier to objects at runtime. The identifier must be unique for the duration of the application. I plan to do this my having a private member variable in the base class ...
3
votes
2answers
6k views
What is the correct Performance Counter to get CPU and Memory Usage of a Process?
How can I get the CPU and Memory usage of a particular process using .net Performance Counter class? And also what is the difference between
Processor\% Processor Time and Process\% Processor Time?
...
3
votes
1answer
205 views
Performance Counters per guest in KVM
My objective is to find the number of instructions after every interrupt delivered to the guest in KVM.
I use the instruction retired counter by programming the appropriate registers using wrmsr. I ...
3
votes
1answer
189 views
Performance logging library
I want to start monitoring the performance of my applications by logging business events. I was looking for something similiar to log4net or other logging libraries, but tailored for ...
3
votes
1answer
239 views
What would make PerformanceCounterCategory.Exists hang indefinitely?
I've got an application that uses performance counters, that has worked for months. Now, on my dev machine and another developers machine, it has started hanging when I call ...
3
votes
4answers
491 views
How can I count instructions executed on Red Hat Enterprise Linux (x86-64)?
I want to find out how many x86-64 instructions are executed during a given run of a program running on Red Hat Enterprise Linux. I know I can get this information from valgrind but the slowdown is ...
3
votes
4answers
571 views
Hardware Performance counter on Intel Core Duo
I have read that there are AMD processors out there that allow you to measure the number of
cache hits and misses. I am wondering if also such a feature is available on Intel Core Duo machines or if ...
3
votes
1answer
494 views
Monitoring batch requests per second on SQL Server through WMI
I need to programmatically (.NET 3.5, C#) monitor a SQL Server 2008 machine through WMI. I want to measure the number of batch requests per second that the server is receiving; this is what the ...
3
votes
1answer
206 views
What do ASP.NET performance counters mean?
I'm trying to get a better handle on how threads work in ASP.NET, so I have a test site with a few pages, and I have a test WinForms client that creates 40 roughly concurrent requests to the test ...
3
votes
1answer
239 views
Performance Counters in Windbg Crash Dump
Is it possible to see thread performance counters in dump of native c++ application in windbg.
3
votes
2answers
1k views
Webservice wcf performance counters for queue
Am trying to performance test a wcf webservice which should get a lot of traffic. Which performance counters are sensible to use and for which purpose..Naturally I am looking at CPU and RAM, but I ...
3
votes
2answers
628 views
Multiple Processors and PerformanceCounter C#
I'm trying to figure out how to gather the current usage percentage of each individual processor on my computer. If I use "System.Environment.ProcessorCount;" I can get the number of processors on my ...
3
votes
5answers
2k views
How do I get the counter for facebook share button to show all the time?
I have a twitter share button and a facebook share button in my blog page. The twitter counter always shows, but the facebook one only shows when you post something, and then goes away when the page ...