Mongrel memory usage

Subscribe to Mongrel memory usage 3 posts, 2 voices

 
Avatar dagnyg 10 posts

Can some *nix literate person please tell me how to determine how much memory my mongrel process(es) are using? I think there’s a way to to this with ps or top but I don’t know the parameters to specify. I tried top but it seems to look at all the proceses on the server when I want to see only mine.

Thanks.

 
Avatar lanaer 28 posts

$ ps ux

The VSZ column is the amount of virtual memory used in KB. The RSS column is the amount of real memory used in KB.

 
Avatar dagnyg 10 posts

Thanks! That was exactly what I needed.