Linked Questions
16 questions linked to/from What is the correct Performance Counter to get CPU and Memory Usage of a Process?
0 votes
0 answers
186 views
How to get CPU and memory usage of the system in C# winforms? [duplicate]
In my application I want to display CPU and memory usage in every time intervel of 1 second. I'am using PerformanceCounter to get this information, but it is not correct with CPU usage of system. ...
594 votes
4 answers
401k views
What is private bytes, virtual bytes, working set?
I am trying to use the perfmon windows utility to debug memory leaks in a process. This is how perfmon explains the terms: Working Set is the current size, in bytes, of the Working Set of this ...
264 votes
11 answers
379k views
How to get the CPU Usage in C#?
I want to get the overall total CPU usage for an application in C#. I've found many ways to dig into the properties of processes, but I only want the CPU usage of the processes, and the total CPU like ...
78 votes
5 answers
68k views
Cannot load Counter Name data because an invalid index -Exception
I am using C# and WPF - Operating System is windows 7 Professional and Visual Studio 2012, SQL Server 2012. I used Devexpress Grid in wpf. I want to bind it to database using ADO.Net Server mode. I ...
3 votes
1 answer
11k views
Monitor memory usage of a process on another server
I am trying to develop an app that will monitor a memory usage of a process located on a server from my PC. I have created an app that will monitor memory usage of a process located on the same PC ...
3 votes
2 answers
6k views
How to calculate % CPU Utilization using PerformanceCounter Class?
I been looking at PerformanceCounter Class for monitoring system performance. I have figured out how to call built in counters. What I'm struggling with is understanding the values that I get back and ...
-1 votes
2 answers
9k views
Performance Counter to get CPU and Memory Usage of a Process
Firstly, I'm working on Visual Basic With Ref. to this pre-posted thread What is the correct Performance Counter to get CPU and Memory Usage of a Process? I wanted to get the cpu and memory used by a ...
1 vote
1 answer
4k views
Get the memory usage of a process in windows in vb.net
Is there any way i can get the memory usage for all processes currently running on a machine in vb.net?
1 vote
2 answers
2k views
VB.Net get CPU Usage of Program
Is it possible to get the CPU Usage of the own Program that you are running in VB.Net? I would like to add a CPU detection, in case the CPU of the Program is above for example 10% it increases a timer ...
5 votes
1 answer
1k views
How can I get started creating a multithreaded load balancer?
I have an interesting exercise to solve from my professor. But I need a little bit of help so it does not become boring during the holidays. The exercise is to create a multithreaded load balancer, ...
1 vote
3 answers
2k views
White screen in C# forms program
Im currently developing something to track CPU usage but as soon as i started the thread that pulls the data from the CPU the screen went blank as if i started a fresh program. using System; using ...
0 votes
1 answer
1k views
need to see how much physical memory is available to current process
I have a memory intensive c# 4.0 graphics program that must run on windows xp, so frequently is running out of memory. What is the best way of estimating the available physical memory for my process? ...
0 votes
1 answer
1k views
How can I get the Resource Monitor network values in vb.NET?
I need to implement in a existing application a new feature that records any unusual network activity in the computer. I do not want to block or intervene any connection, just filter these according ...
1 vote
1 answer
417 views
CPU Usage% NotifyIcon Using WMI
I've been trying to create a taskbar tray icon that displays the CPU usage (pulled from wbemtest if possible) when hovered over or clicked on using C#. I used the PercentProcessorTime Name from the ...
0 votes
1 answer
177 views
C# WPF MVVM | Use Performancecounter with Timer
I try to set up a very simple application. The application should display the current CPU Usage. My view: <Grid> <Label Content="{Binding CpuUsage}" /> </Grid&...