Disk Space Monitoring Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Disk Space Monitoring Script
# 1  
Old 08-23-2007
Disk Space Monitoring Script

#!/bin/bash
# Disk Space Monitoring for more than 95 %
# and Sending Alerts by Mail


if [ df -k |awk '$5 > 95 ];

then

`df -k |awk '$5 > 95 {print $1 " ----------- " $5}' |mailx -s "More than 95% disk usage in DEV" email@test.com';

else

exit 0

fi


I get the below error:
================
bash-3.00$ ./disk_usage_mail_alert-sriram.sh
./disk_usage_mail_alert-sriram.sh: line 14: syntax error near unexpected token `else'
./disk_usage_mail_alert-sriram.sh: line 14: `else '
# 2  
Old 08-23-2007
that's very kludgy. the usage of awk is more than meets the eye
try this
Code:
df -k | awk 'int($5) > 95{ 
  subject = $1 " More than 95% disk usage "
  email = "email@test.com"
  cmd = "mailx -s \"" subject "\" " email
  cmd  | getline #or system(cmd)
  }
'

# 3  
Old 08-23-2007
Can you suggest what is the syntax I am missing ?

bash-2.03$ ./new.sh
awk: syntax error near line 5
awk: illegal statement near line 5
./new.sh: line 8: 11058 Broken Pipe df -k
11059 Exit 2 | awk 'int($5) > 95{
subject = $1 " More than 95% disk usage "
email = "email@test.com"
cmd = "mailx -s \"" subject "\" " email
cmd | getline #or system(cmd)
}
'

====================================
bash-2.03$ cat new.sh (the script)
====================================
1
2 df -k | awk 'int($5) > 95{
3 subject = $1 " More than 95% disk usage "
4 email = "email@test.com"
5 cmd = "mailx -s \"" subject "\" " email
6 cmd | getline #or system(cmd)
7 }
8 '
====================================
bash-2.03$

Last edited by sriram003; 08-23-2007 at 10:55 AM..
# 4  
Old 08-23-2007
Quote:
Originally Posted by ghostdog74
that's very kludgy. the usage of awk is more than meets the eye
try this
Code:
df -k | awk 'if ( int($5) > 95) { 
  subject = $1 " More than 95% disk usage "
  email = "email@test.com"
  cmd = "mailx -s \"" subject "\" " email
  cmd  | getline #or system(cmd)
  close(cmd)
  }
'

modified the original.....
# 5  
Old 08-23-2007
Quote:
Originally Posted by vgersh99
modified the original.....
thanks, its good practice to close that. However, for my version of awk (GNU) , the "if" part, i don't think its needed cause i tested it. i think it differs across versions
# 6  
Old 08-23-2007
Quote:
Originally Posted by ghostdog74
thanks, its good practice to close that. However, the "if" part, i don't think its needed. but if you could enlighten why its needed, it would be great.
oooops, my bad - I didn't see clearly what you're doing - sorry 'bout that:
Code:
df -k | awk 'int($5) > 95 { 
  subject = $1 " More than 95% disk usage "
  email = "email@test.com"
  cmd = "mailx -s \"" subject "\" " email
  cmd  | getline #or system(cmd)
  close(cmd)
  }
'

for the OP benefit.... if you're under Solaris - use 'nawk' instead of 'awk'.

And once again - sorry for the confusion!

Last edited by vgersh99; 08-23-2007 at 12:27 PM..
# 7  
Old 08-23-2007
Quote:
Originally Posted by vgersh99
And once again - sorry for the confusion!
no worries..Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Disk space script

i have 3 servers and i am checking for the disk space of a specific mount-point, should not be more than 85 % considering example as below server1 mountpoint_1 has 70% diskutilization server2 mountpoint_1 has 80% diskutilization server3 mountpoint_1 has 7% diskutilization now when it... (6 Replies)
Discussion started by: abhaydas
6 Replies

2. Shell Programming and Scripting

I need help!! disk free space script

i want to write a shell script,when disk uses is 90% then automatically send a email to distribution list (group member)...... (1 Reply)
Discussion started by: sonu pandey
1 Replies

3. Shell Programming and Scripting

Help needed to create a UNIX Space monitoring script

Hi All, Its urgent.. pls help me out.. I want to create a KSH which should generate a report with the list of users and the files larger than 5 GB created by them in a direcorty and send autogenerated e-mail to them. my input would be users list,directory path and the file size (say 5 GB) ... (11 Replies)
Discussion started by: anman0523
11 Replies

4. Solaris

Disk space being used up while running a script

We have a script which when run consumes the space of the disk from where it is being run. we have to kill this script every time to release space. why do this happen ? any work around please we are using solaris 10 P.S. : a part of the code will make some connection to the DB (1 Reply)
Discussion started by: chidori
1 Replies

5. Shell Programming and Scripting

Script for monitoring disk failures

Hi , Does anyone have a script for monitoring disk failures on a Solaris 10/11 box? Need one today ASAP, thnks in advance. (2 Replies)
Discussion started by: walnutpony123
2 Replies

6. Shell Programming and Scripting

Disk Monitoring shell script giving incorrect information

Hi All, OS: Linux 86x64 bits Red Hat Linux I get the email alert for the following when Alert condition is set for 30: /dev/sda1 99M 21M 74M 22% /boot -> Below 30%(Should not get the email alert) Expected output as per E-Mail alert: /dev/sda3 20G ... (2 Replies)
Discussion started by: a1_win
2 Replies

7. Shell Programming and Scripting

Disk Space Monitoring Script - OLD and NEW

It's the old thread "Disk Space Monitoring Script", modified for UNIX This is the new code: df -k | awk ' { if ( int($4) > 90) {subject = $1 " More than 90% disk usage. Used: " $4 email = "email@test.com" print subject cmd = "mailx -s \"" subject "\" " email cmd | getline... (4 Replies)
Discussion started by: dungureanu
4 Replies

8. Shell Programming and Scripting

Script for Disk space

:( Hi All, i have 4 linux server for which i want set up script to monitor the disk space ... here my problem is i want the output like graph... also it should reflect in monitor ...as non stop process.. can any one suggest me any way where i can implement the script? ... (3 Replies)
Discussion started by: Shahul
3 Replies

9. Shell Programming and Scripting

Disk space script

Hi all, Can any one help me in making a disk space script in solaris 8/9 for instance i only want to get those partitions whose diskspace has exceed 70%. Any volunteer? Cheers! BR/asad (8 Replies)
Discussion started by: asadlone
8 Replies

10. Shell Programming and Scripting

Frustrating Disk space script

This my frustrating disk space script that is supposed to send me a email whenever the disk space reaches 90% but this has some problem that just would not work ..can anyone please tell me when im going wrong #!/bin/ksh sendemail=-1 space=`df -bhk /users/siebelserver |awk '{print$5}'` echo... (4 Replies)
Discussion started by: vivsiv
4 Replies
Login or Register to Ask a Question