Quantcast
Channel: Limina.Log » Bash
Viewing all articles
Browse latest Browse all 10

Bash Snippet: Monitor Process Memory Usage

$
0
0

Here’s a neat Bash one-liner:

ps aux | grep -E '[l]ighttpd|[m]ain.py'

This returns your process list with memory columns (RSS & VSZ) filtered by multiple names. Now you could make a little script to put in a cron job to log memory usage:

#!/usr/bin/env bash
ps aux | grep -E '[l]ighttpd|[m]ain.py' >> mem.log

Not very fancy and not the easiest to read, but it will do in a pinch.


Viewing all articles
Browse latest Browse all 10

Trending Articles