PerformanceCounter is a .NET class in the System.Diagnostics namespace that represents a Windows NT performance counter component.
0
votes
1answer
17 views
SQL Server performance counter for incoming and outgoing bytes
For a project I need to read the incoming and outgoing bytes per second of an SQL-Server (2012) instance of an instance or database (doesn't matter). For this I found the following performance ...
1
vote
0answers
18 views
Monitor available threads in threadpool within an asp.net application
I want to find a way to realise how many threads are available in a threadpool of an ASP.net application.
I've found this link http://msdn.microsoft.com/en-us/library/ff650682.aspx
which example ...
0
votes
1answer
31 views
Why my PerformanceCounter always returns 0 when passing the counter to the method
I've already found this question telling that the first occurrence of my PerformanceCounter is 0, so I have to call it multiple times to get the right result.
I got that to work fine - it looks like ...
0
votes
0answers
10 views
Is there a way to get utilization of Individual tasks in the task manager?
Currently, I'm getting the CPU and Memory Utilization from the Performance Monitor, it lists all the task as in the task manager, with some counters. Here, the utilization of the Task Scheduler is ...
0
votes
0answers
29 views
Do Contention Rate rises with more locks in C# code?
Do contention rate increases with increase of locks in code?
Consider below code.
public partial class _Default : System.Web.UI.Page
{
private static string count = "0";
protected void ...
0
votes
1answer
74 views
Possible to view azure performance diagnostics via Perfmon
I've setup a 150plus performance counters via diagnostics.wascfg file. The counters are appearing in wadperformance table.
When I logged on to azure VM and used Permon tool I could not see any of ...
0
votes
1answer
26 views
Performance Counter greater than 100%
I'm tracking the CPU utilisation for the process as part of regular heartbeat for an application, using code something similar to this:
var process = Process.GetCurrentProcess();
...
0
votes
0answers
28 views
.NET Memory Cache 4.0 performance counter showing phantom cache entries
I've been monitoring a WCF API service, that's installed on 2 of our servers running under IIS 7.5, using the .NET Memory Cache 4.0 "Cache Entries" performance counter, and I happened upon some ...
-1
votes
0answers
18 views
Category does not exist exception while trying to query if a performance counter exists
In my application I create a custom performance counter and then update that counter. this happens in a loop. now in this loop when I try to verify the existence of the counter I keep getting an ...
1
vote
0answers
82 views
Performance counters - get counter name list
I have a small winforms app written in c# framework 4.0.
In my app i would like to provide the user a list of available counters under category "serviceModelService 4.0.0.0"
From where can I populate ...
0
votes
1answer
62 views
How to enable performance counters in azure
We need to enable 25+ performance counters in windows azure web roles. I'm thinking of RDP'ing and enable them one by one. But this could take long time and also not guranteed for if we scale up.
...
0
votes
1answer
61 views
Performance counters not being written by Powershell job
I'm working on setting up a script that can be run from any Windows servers to gather some perfmon scripts in the background in a rolling log file. I could use the PerfMon GUI, but I figured this ...
0
votes
0answers
70 views
ARM Cortex-a9 event counters return 0
I'm currently trying to use the event counters on an ARM Cortex-a9 (on a Xilinx zynq EPP) to count cycles. I've adapted some ARM example code from ARM for this purpose. I'm programming this bare-metal ...
0
votes
1answer
62 views
Getting Memory Usage in percentage (%) in C#
I want to get the Memory Usage of a particular process in percentage (%). Below is the code which I used for CPU. But I am unable to get the same for Memory. There are so many counters in Memory ...
1
vote
1answer
72 views
What is “cooked value” returning in Powershell's get-counters cmdlet?
I'm using Powershell to return values for certain performance counters, and I'm seeing that it is referring to "Cookedvalues" when presenting the information. I'm looking for each counter hit to be ...
0
votes
0answers
45 views
Add Performance Counter Category Hangs Computers
I am trying from a ASP.NET MVC Application (with VS 2012 on Windows 8 x64 PC) to add a Perfomance Counter but I have the problem that if I check the category exists or add a new Performance Counter ...
0
votes
1answer
81 views
How can I represent a certain number of seconds (minutes) with the type unsigned long long int in C++
I need to perform an operation for 64 seconds. Every 8 seconds I need to perform another operation. Since I need an extreme temporal precision I am using QueryPerformanceFrequency and ...
3
votes
1answer
86 views
C# performance counter data is “all over the map”
I need to calculate CPU and RAM usage for the overall system as well as for a specific process. I've never done this in C#. So I was able to come up with the following code (that I took primarily from ...
0
votes
1answer
18 views
+50
any feature on linux like Perfermance Counter on Windows servers?
I have a tomcat web application, when invoking an unstable remote API, I want to get realtime http request time at any time. On windows server, I can use Performance Counter, does centos provide ...
0
votes
0answers
29 views
Apple Instruments - Counters - Source unavailable
I've been running into a problem with Apple Instruments (4.6, Xcode 4.6.2 on 10.8.3).
Normally when using the Time Profiler, I can look at my source and see the hotspots without any problems (same ...
0
votes
0answers
43 views
PerformanceCounterCategory.Create breaks with The parameter is incorrect
So I'm creating a couple custom performance counters and grouping them under a single category. This is built inside a WCF application hosted on IIS 7 and running through visual studio.
I've been ...
2
votes
1answer
49 views
Performance Counter is not working
Performance Counter is not working in c#. I think it is a system problem. Because, It works fine in other system. How to correct it? It shows error for below code:
Code from Ranorex Tool:
string ...
7
votes
1answer
120 views
PerformanceCounterCategory.GetCategories is inconsistent with Perfmon
Okay, So I'm basically trying to create a list of installed Performance Counter Categories, like the one you get in PerfMon. For this I'm using
...
0
votes
0answers
32 views
Using Method Level Performance Counters in Windows Azure Web Site
I have an ASP.NET MVC 4 app hosted in Windows Azure as a Web Site. Based on the "MONITOR" tab in the Windows Azure Portal, this Web Site is using the entire CPU all the time. I'm trying to get a grasp ...
0
votes
0answers
36 views
Strange delay when querying WMI performance counter for the first time
I am querying WMI (win32_perfrawdata_perfproc_process class) and something strange happens: the first time you query it, it stops for almost 50 seconds to show an answer. The next times are almost ...
0
votes
0answers
35 views
KVM Performance counters
I want to count the number of branches a guest takes. For that KVM supports Intel Performance Monitoring counters. I am trying to understand how exactly does it work at lower level in the KVM code. I ...
1
vote
0answers
44 views
Confusion about AverageTimer32 PerformanceCounter
I'm trying to set up a PerformanceCounter to measure the average execution time of a certain method. I've tried to read up on AverageTimer32 and I've looked at a lot of examples, but I just can't seem ...
1
vote
1answer
103 views
collecting wmi performance counters with refresher object
I am a beginner in c# and .net.
My intention as a unix guy is to provide a service for the windows team collecting performance data from windows servers and recoding them in graphite (via StatsD).
I ...
0
votes
0answers
95 views
Accessing WCF Performance Counter Programmatically
So I've seen a lot of posts about using PerfMon and such to view WCF Performance counters after they are enabled.
I am researching how I could access the Endpoint, service, and operation performance ...
0
votes
0answers
36 views
C# Collect IOps PErformance Data RealTime?
I am trying to build a small Software App which can collect Performance Data from a Windows Machine.
Here is a part of the code i use and PrintScreen which gives me not a right number.
Please Tell me ...
-1
votes
2answers
64 views
QueryPerformanceCounter returning negative number
Hey im trying to count how long the function takes to execute
I am doing it like this:
Timer.cpp
long long int Timer :: clock1()
{
QueryPerformanceCounter((LARGE_INTEGER*)&time1);
return ...
0
votes
1answer
23 views
QueryPerformanceCounter run-time error
Hey im using QueryPerformanceCounter to count how long the function takes in milli-seconds but i am getting this run-time error:
Run-Time Check Failure #2 - Stack around variable 'time1' is ...
0
votes
0answers
69 views
.Net Memory Cache Performance Counters are not reused
I've been investigating memory bloat in an ASP.Net MVC application by inspecting process dumps with windbg. One thing I've noticed is that the finalizer queue is almost completely full of ...
-1
votes
1answer
96 views
How to read performance counter values without special privileges?
My Office add-in needs to be able to read System.Diagnostics performance counters (CPU, memory, etc) and I can't assume that the user is a member of the administrators group or Performance Monitor ...
0
votes
0answers
63 views
get-counter commandlet will not get counters for all processes when ProcessNameFormat=2
I have set the registry key to identify procmon process by PID
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\PerfProc\Performance ProcessNameFormat=2 REG_DWORD
I have 2 process called ...
0
votes
0answers
55 views
How to get windows PerformanceCounter through a Firewall with http?
I'm using the System.Diagnostics.PerformanceCounter .Net class in C# to access remote Performance Counter of a Windows server, is working fine but which protocol does this class use? DCOM?
How can I ...
2
votes
1answer
228 views
Why GetTickCount and timeGetTime have different resolution?
By default, GetTickCount and timeGetTime has the same resolution -- 15.625ms, but after I call timeBeginPeriod(1), GetTickCount still updates every 15.625 ms, while timeGetTime does update every 1ms, ...
1
vote
1answer
39 views
Monitor a specific port with Performance Counter
Is there any way I can use Performance Counter to monitor all the traffic, but in a specific port?
I am doing:
GetCounterValue(_netRecvCounters[index], "Network Interface", "Bytes Received/sec", ...
0
votes
0answers
50 views
How do I determine the size of performance counters?
My code where I create and use some performance counters runs into issues with this exception:
System.InvalidOperationException: Custom counters file view is out of memory.
at ...
0
votes
0answers
89 views
Using Microsoft.SqlServer.Management.Smo to get performance metrics
Was wondering how I can programmatically get performance metrics for a given sql server instance or database by using SMO (sql management objects).
Basically similar to what the Activity Monitor in ...
7
votes
2answers
343 views
GPU Pixel and Texel write speed
Many of the embedded/mobile GPUs are providing access to performance registers called Pixel Write Speed and Texel Write speed. Could you explain how those terms can be interpreted and defined from the ...
0
votes
1answer
140 views
Is there a WCF service request queue performance counter?
There is a nice ASP.NET perf counter category and set of counters that can be used to track the request queue during perf test runs. However I can't find similar set for a WCF service not hosted thru ...
0
votes
1answer
44 views
Program to gather statistics on disk activity
I'm benchmarking our application's database performance with various settings in order to determine which values give us the best performance. The metric I need to track is called Active Time in ...
2
votes
2answers
147 views
Unable to get performance counters from certain servers when running load tests
I am running load tests using the built in system in Visual Studio 2010. The setup is a test controller with four agents. The tests that I am running will put load on an application server and a ...
0
votes
0answers
42 views
Performance monitoring with Web Gardening
Does anyone know hot to monitor performance of an application having web gardening implemented in it? Basically with web gardening implementation, there are multiple instances of w3wp process. So when ...
0
votes
0answers
72 views
programatically creating WCF Performance Counters
We have some WCF REST full API services.
I want to be able to monitor performance of any WCF REST full API services by passing API method names,other depenendant WCF Services when ever I need(switch ...
0
votes
0answers
104 views
PerformanceCounter extremely slow in connecting remote server
I try to use PerformanceCounter to monitor remote server information in a domain environment, like:
var counter = new PerformanceCounter("PhysicalDisk", "Disk Bytes/sec", "_Total", "REMOTE_SERVER");
...
2
votes
1answer
95 views
Using Performance Counters with Attributes
I'm looking for a way to simplify creating and using Performance Counters in our applications in order to run load tests and get the application specific information using the counters . It would be ...
1
vote
0answers
76 views
appfabric caching failure exceptions=getandlock requests for session state
I'm using the session provider in an asp.net app with a 3 host appfabric cluster.
The cluster is version 3 and is running on windows server 2008.
My sessions cluster has secondaries set to 1 and min ...
4
votes
1answer
194 views
Performance Counter shows different values when ReadOnly=false
I was trying to figure out why certain performance counters aren't updated in our production server, when I've hit this weird issue - the counter seems to return different RawValue values when it is ...
