User Tools

Site Tools


recap_oneliner

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
recap_oneliner [2015/07/06 14:20] – created luke7858recap_oneliner [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
 Command for navigating through recap/rs-sysmon easier Command for navigating through recap/rs-sysmon easier
 \\ \\
-Recap:+**Recap**:
 <sxh bash> <sxh bash>
 echo -e "\nActive users:"; w -h | grep -v rack; echo -e "\n"; \sar -q -s `date -d '-3 hour' +%T`;cd /var/log/recap;echo ""; ls -ltr resour* | tail -n 10 ; echo -e "\n\nTime?";read vr2;echo ""; ls -ltr resources* | grep $vr2 | cat $(awk '{ print $NF }') | egrep -m 2 -A 15 "UPTIME report | cut -b 119- |Top 10 cpu using processes"; unset vr2;echo ""; echo -e "\nActive users:"; w -h | grep -v rack; echo -e "\n"; \sar -q -s `date -d '-3 hour' +%T`;cd /var/log/recap;echo ""; ls -ltr resour* | tail -n 10 ; echo -e "\n\nTime?";read vr2;echo ""; ls -ltr resources* | grep $vr2 | cat $(awk '{ print $NF }') | egrep -m 2 -A 15 "UPTIME report | cut -b 119- |Top 10 cpu using processes"; unset vr2;echo "";
 </sxh> </sxh>
 \\ \\
 +**rs-sysmon**:
 <sxh bash> <sxh bash>
 echo -e "\nActive users:"; w -h | grep -v rack; echo -e "\n"; \sar -q -s `date -d '-3 hour' +%T`;cd /var/log/rs-sysmon;echo ""; ls -ltr resour* | tail -n 10 ; echo -e "\n\nTime?";read vr2;echo ""; ls -ltr resources* | grep $vr2 | cat $(awk '{ print $NF }') | egrep -m 2 -A 15 "UPTIME report | cut -b 119- |Top 10 cpu using processes"; unset vr2;echo ""; echo -e "\nActive users:"; w -h | grep -v rack; echo -e "\n"; \sar -q -s `date -d '-3 hour' +%T`;cd /var/log/rs-sysmon;echo ""; ls -ltr resour* | tail -n 10 ; echo -e "\n\nTime?";read vr2;echo ""; ls -ltr resources* | grep $vr2 | cat $(awk '{ print $NF }') | egrep -m 2 -A 15 "UPTIME report | cut -b 119- |Top 10 cpu using processes"; unset vr2;echo "";
-</bash>+</sxh> 
 +=== Splitting Recap logs === 
 +Every day the recap logs are concanentated into a single file. If you wish to break them into multiple files you can use the following. Note, you will need to replace 2017-07-04 with the date and ps_daily_20170704.log with the daily log file: 
 +<sxh bash
 +awk '/^2017-07-04/{x=$0;next}{print > "ps."x;}' ps_daily_20170704.log  
 +</sxh> 
 +<sxh bash> 
 +awk '/^2017-07-04/{x=$0;next}{print > "resource."x;}' resource_daily_20170704.log  
 +</sxh> 
 +<sxh bash> 
 +awk '/^2017-07-04/{x=$0;next}{print > "mysql."x;}' mysql_daily_20170704.log  
 +</sxh>
recap_oneliner.1436192441.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki