diff options
author | Samba Release Account <samba-bugs@samba.org> | 1996-05-06 06:47:02 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1996-05-06 06:47:02 +0000 |
commit | 0b13d2e55d8fda8d7b173dd2d2495f3d24275fe6 (patch) | |
tree | 10e6403f4088bb9bc31d818d43508f2842bc9403 /examples/misc/extra_smbstatus | |
parent | c9f9f6bc7a36738d5b5d77041895ef5b9b25bcff (diff) | |
download | samba-0b13d2e55d8fda8d7b173dd2d2495f3d24275fe6.tar.gz samba-0b13d2e55d8fda8d7b173dd2d2495f3d24275fe6.tar.xz samba-0b13d2e55d8fda8d7b173dd2d2495f3d24275fe6.zip |
Updated smbstat script with a better one, Paul.
(This used to be commit c26a534541b96f939daaf9b35f805db2594783ca)
Diffstat (limited to 'examples/misc/extra_smbstatus')
-rw-r--r-- | examples/misc/extra_smbstatus | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/examples/misc/extra_smbstatus b/examples/misc/extra_smbstatus index b018f3dcce9..363e7f67af5 100644 --- a/examples/misc/extra_smbstatus +++ b/examples/misc/extra_smbstatus @@ -10,28 +10,31 @@ added things at source level, script was quick&easy. if ($1 == "-p") then smbstatus -p |sort -u else if ($1 == "-c") then - echo There are `smbstatus -p |sort -u |grep -n -v z |grep -c :` unique -smbd processes running. + echo There are `smbstatus -p |sort -u |grep -n -v z |grep -c :` unique smbd processes running. else if ($1 == "-l") then - echo `date '+ %d/%m/%y %H:%M:%S'` `smbstatus -p |sort -u |grep -n -v z -|grep -c :` >>$2 + echo `date '+ %d/%m/%y %H:%M:%S'` `smbstatus -p |sort -u |grep -n -v z |grep -c :` >>$2 +else if ($1 == "-cs") then + echo There are `smbstatus |awk '$1==share {n++;} END {print n}' share=$2` concurrent connections to share: $2 +else if ($1 == "-csl") then + echo `date '+ %d/%m/%y %H:%M:%S'` `smbstatus |awk '$1==share {n++;} END {print n}' share=$2` >>$3 else - smbstatus |sort +3 -4 -u + echo "'smbstat -c' ==> Count unique smbd processes." + echo "'smbstat -p' ==> List unique smbd processes." + echo "'smbstat -l logfile' ==> Append a log entry for the number of" + echo " concurrent and unique processes to logfile." + echo "'smbstat -cs sharename'" + echo " ==> Count processes connected to sharename (assumed unique)" + echo "'smbstat -csl sharename logfile'" + echo " ==> Append a log entry for the number of concurrent" + echo " processes connected to sharename (assumed unique)" endif ****** -The '-p' option was just to show unique PIDs. +Run this script from cron eg. -The more important ones are the '-c' and '-l' options '-c' just counts -the number of unique smbd's, While '-l' logs this count with date and -time to a log file specified on the command line. I'm using '-l' at -the moment with cron to give me an idea of usage/max connections etc. -I was also thinking of doing a log for individual/specified services. +0,5,10,15,20,25,30,35,40,50,55 * * * * /usr/local/samba/bin/smbstat -l /usr/local/samba/var/smbdcount.log -The default (last) option was to show unique PIDs with user names. -Unfortunately this still lists all file locks etc. This would be -better with a 'no locked files' option from smbstatus (or is there one -that I didn't see) +and you get a good idea of usage over time. Cheers, ~^ MIME OK ^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~ |