cpu-usage Questions
4
I'm running a Centos 7 desktop with gnome, although similar issues regularly come up with Arch and other distros.
When I checked my cpu usage via top, pulseaudio was using nearly 20% cpu.
I hunted ...
Fenske asked 20/2, 2021 at 9:57
4
Docker provides an interactive stats command, docker stats [cid] which gives up to date information on the CPU usage, like so:
CONTAINER CPU % MEM USAGE/LIMIT MEM % NET I/O
36e8a65d 0.03% 4.086 MiB...
Scrape asked 16/5, 2015 at 4:49
14
I'm running Windows 10. VSCode, even when idle, takes up a consistent 26-30% of my cpu. I tried code --disable-extensions in CMD to check if an extension was causing the problem, but my performance...
Farrish asked 16/8, 2018 at 22:17
5
Solved
As part of a stress tests I'm doing I'm trying to figure out if there is an SQL query (quite specifically SQL Server query) that will max all CPUs usage to 100% or close enough.
Suggestions anyone...
Conquian asked 17/7, 2014 at 18:25
6
How could I generate steady CPU load in C#, lower than 100% for a certain time? I would also like to be able to change the load amount after a certain period of time. How do you recommend to genera...
5
Solved
I am using Docker to run some containerized apps. I am interested in measuring how much resources they consume (as far as regarding CPU and Memory usage).
Is there any way to measure the resources...
Cythera asked 23/9, 2013 at 9:38
3
Solved
I am running docker stats $CONTAINER_ID from a shell script to monitor my Docker container memory and CPU usage over a period of 1 hour. I have the below shell script.
#!/bin/sh
# First, start the...
Dabchick asked 8/7, 2021 at 8:34
4
7
Solved
R is single-threaded.
Using R, how to check how many cores/threads are running R in Windows and Linux? (Or how many Rs are running)
Using R, how to check the usage of each core that is running R...
4
Solved
How to get the CPU, RAM and Disk drive usage of the system in C# code?
7
I would like to ask whether there is some simple way to determine cpu usage per thread in java. Thanks
Fingerling asked 16/4, 2009 at 12:27
5
I was trying to develop an app to get CPU usage per app and kill apps when consuming much CPU. But I couldn't figure out how to do this.
I have read this post and have seen this answer. So I look...
2
My Elixir app is using about 50% of the CPU, but it really should only be using <1%. I'm trying to figure out what is causing the high CPU usage and I'm having some trouble.
In a remote console...
24
Solved
The emulator qemu-system-i386.exe cpu usage almost constantly running between 7~9
Android studio 2.1
Android SDK Tools: 25.1.3
Host Operating System: Windows 7 - i7 2630QM - 8GB Ram
Intel x86 Atom...
Mccreary asked 6/5, 2016 at 2:28
2
I have a question about docker stats command if anyone can help me. I am new in Docker area and I want to monitor the cpu usage of a docker container.
The physical machine has 8 cores (CPU0...CPU7)...
Sasnett asked 20/11, 2017 at 21:46
6
Solved
Problem: I have a developers machine (read: fast, lots of memory), but the user has a users machine (read: slow, not very much memory).
I can simulate a slow network using Fiddler (http://www.fidd...
Emit asked 27/2, 2009 at 6:46
5
Solved
I'm trying to figure out how to get the CPU usage for a particular process but can only find information relating to overall CPU usage.
Does anyone know how to extract the current CPU usage in per...
3
I have an application running on Postgres database, sometimes when I have about 8-10 people working on the application, the CPU usage soars high to something between 99-100%, The application was bu...
Jarodjarosite asked 24/8, 2015 at 5:52
0
I am trying to find cause for high CPU usage of my app.
TL;DR
My relatively simple .Net6 API application consumes 100% of 1vCPU doing only ~20 requests (each ~100ms) per second (only 2 concurrent r...
Intensify asked 5/2, 2023 at 10:38
2
Solved
I'm currently doing this:
PerformanceCounter cpuUsage = new PerformanceCounter("Processor", "% Processor Time", "_Total");
cpuUsage.NextValue();
System.Threading.Thread.Sleep(1000);
RV = cpuUsage....
Disgraceful asked 30/4, 2014 at 14:55
2
I just had to use pg_restore with a small dump of 30MB and it took in average 5 minutes! On my colleagues' computers, it is ultra fast, like a dozen of seconds. The difference between the two is th...
Hemianopsia asked 10/3, 2022 at 15:29
1
I'm trying to migrate a project from .NET Framework 4.7.2 to .NET 5, but the performance of my program has dropped significantly. Parts of the program exploit parallelism for bulk operations on a s...
Kirtley asked 1/3, 2022 at 17:2
9
Solved
Say, "run myApp.jar with cpu=800 and memory=1024"
Ive been doing java programming for many years and it is an embarrasment to ask this question. I don't even know whether this is possible or not. ...
Sorrell asked 10/2, 2011 at 1:32
1
My Dockerfile executes RUN npm run build command. When I execute docker build command on t2.micro EC2 instance, instance freezes and does not respond (I cannot even connect with ssh). When I monito...
Spinose asked 6/12, 2022 at 22:46
4
Solved
1) Exclusive time is the time spent in the method
2) Inclusive time is the time spent in the method plus the time spent in any called functions
3) We refer to calling methods as "parents" and calle...
Anthropopathy asked 2/4, 2013 at 9:21
1 Next >
© 2022 - 2025 — McMap. All rights reserved.