Skip to content

Instantly share code, notes, and snippets.

@aamsur-mkt
Created February 18, 2020 07:57
Show Gist options
  • Save aamsur-mkt/3529891881d0239b7457dd975478a739 to your computer and use it in GitHub Desktop.
Save aamsur-mkt/3529891881d0239b7457dd975478a739 to your computer and use it in GitHub Desktop.
check resource (cpu & memory)
#!/bin/bash
## check cpu usage linux
## tpk 20190308
cores=`cat /proc/cpuinfo | grep processor | wc -l`
c_usage=`ps axfu | grep -v grep | awk '{sum += $3} END {print sum}'`
c=`echo "scale=2; $c_usage / $cores" | bc`
m_usage=`ps axfu | grep -v grep | awk '{sum += $4} END {print sum}'`
echo "cpu:$c mem:$m_usage"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment