|
I want to get the CPU and memory usage of a single process on Linux - I know the PID. Hopefully, I can get it every second and write it to a CSV using the 'watch' command. What command can I use to get this info from the Linux command-line?
Started by Supertux on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To get the memory usage of just your.
Can leave off "cmd" but that might be helpful in debugging) .
|
|
I'm loading some fairly big data sets in to firefox (500 k or so) and drawing tables with them. Firefox is using up to 400 megs of memory. How can I tell if Firefox is leaking memory, or is just using a lot of memory just because it can?
Is there another...
Started by morgancodes on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It is my opinion that Firefox requires....
If it is leaking memory, then the mem usage (number of K) in your Windows task managerThere is a setting you can set in firefox that forces it to free as much memory as it can.
Restart FireFox.
|
|
Why does 'top' indicate low memory usage, whilst 'free' indicates high memory usage?
Mem: 262144k total, 225708k used, 36436k free, 47948k buffers Swap: 262136k total, 40k used, 262096k free, 110704k cached PID USER PR NI VIRT RES SHR S %CPU %MEM TIME...
Started by Sai on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Figure out process memory usage is more an art than a science IMHO, see that are running on your machine....
It is typical for Unix programs on what they have asked for .
Is this memory usage normal ? The short answer is yes.
Itself.
|
Ask your Facebook Friends
|
Hello all,
I am running SQL server with a lot of scripts that update large amounts of data (millions of records on several tables). However, I think there is a memory leak as RAM usage goes to 7.5GB of the possible 8GB - this is on a 8 Core Server. The...
Started by Abs on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
You can constrain the amount of memory it grabs, and there are several ways to do this, but probably the easiest, then go to the memory ....
SQLServer has its own memory management, it overrides the memory management of the OS.
|
|
How to monitor the processe usage of memory on linux .. eactly want to know how much each process take from memory
Answer Snippets (Read the full thread at stackoverflow):
It is generally difficult to know exactly how much memory is being used by shared supports shared memory, meaning ....
Note that non-resident pages are not necessarily swapped out | grep apache" .
We imagine by "memory usage".
|
|
I have a problem with a java application running under linux.
When I launch the application, using the default maximum heap size (64mb), I see using the tops application that 240 MB of virtual Memory are allocated to the application. This creates some...
Started by Mario Ortegón on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
However, note that this is virtual memory other JVM then Sun one, with....
I believe the default behavior of the JVM is stillNo, you can't configure memory amount needed by VM.
To the actual peak memory usage of your application.
|
|
What tools are available to monitor graphics card memory usage in linux?
Started by Andrew Cecil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Obviously, this only works for NVIDIA graphics cards, and it also requires the use .
memory usage.
|
|
I have written a converter that takes openstreetmap xml files and converts them to a binary runtime rendering format that is typically about 10% of the original size. Input file sizes are typically 3gb and larger. The input files are not loaded into memory...
Started by KPexEA on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
When this is the case that it cuts....
No matter what size your RAM is, if you don't have memory usage under control, you're going to bump that memory as the CRT expects, you'll see your memory usage constantly growing.
|
|
I need to check CPU and memory usage for the server in java, anyone know how it could be done?
Started by Johnny Bou on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
For CPU consumption you'll have://www.roseindia.net/javatutorials/determining_memory_usage_in_java.shtml
For memory usage, the following will ....
Java's Runtime object can report the JVM's memory usage.
Areas.
|
|
Is there a way to get the CPU and memory usage programatically (C++) of an application on HPUX?
Started by lk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
How to determine CPU and memory consumption from inside a process
Answers are given for Windows.
|