df -k Alerts


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting df -k Alerts
# 1  
Old 11-23-2009
Question df -k Alerts

Hi -

I would like to send an e-mail alerts if in the output below capacity reaches to 80% and 90%

df -k /d500/oracle /d905/oracle /d805/oracle /d705/oracle
Filesystem kbytes used avail capacity Mounted on
/dev/vx/dsk/abcde_raid5_db/d500
52428800 24994408 27221040 48% /d500/oracle
/dev/vx/dsk/abcde_raid5_db/d905
41943040 16203832 25538992 39% /d905/oracle
/dev/vx/dsk/abcde_raid5_db/d805
20971520 10527896 10362888 51% /d805/oracle
/dev/vx/dsk/abcde_raid10/d705
41871360 4102520 37474800 10% /d705/oracle

How to do this in Shell script ?
Thanks in advance
# 2  
Old 11-23-2009
some clues for you

Code:
df -k /d500/oracle /d905/oracle /d805/oracle /d705/oracle |sed '/^\//{N;s/\n//};s/%//' |awk '$4>50 && $4<90 && NR>1'

/dev/vx/dsk/abcde_raid5_db/d80520971520 10527896 10362888 51 /d805/oracle


Last edited by rdcwayx; 11-23-2009 at 01:28 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

False alerts

Hi I have written a script to send email alerts when load of my linux server reaches max point I keep getting false emails thought the load is normal , looks like same email is generated again and again - called from cron tab checked if the tempfile is present , no it is not , cleaned... (22 Replies)
Discussion started by: anil529
22 Replies

2. UNIX for Dummies Questions & Answers

Nagios, clean all alerts

In NAGIOS i have an host with lots of alerts , host detail- warnings -service , is there any way to acknowledge all of then at one time , or i have to click in all of then one by one? (3 Replies)
Discussion started by: prpkrk
3 Replies

3. Emergency UNIX and Linux Support

Grouping of Nagios alerts

Hi! I want to group alerts in Nagios and want to know if and how that can be done? So something like 1 alert for multiple alerts and I am notified only once than multiple times. I tried using nan and nans (two of the opensource solutions) and tried hooking them into Nagios but after... (0 Replies)
Discussion started by: jacki
0 Replies

4. Solaris

ALOM Email Alerts

Hi I'm new to this forum and I was hoping you can help me with this strange activity. I have a Sol10 sun4u sparc SunFireV250 machine. Currently running ALOM 1.6.8 firmware. The following error was experienced on this machine: "Input power unavailable for PSU @ PS0" Reading the documention... (0 Replies)
Discussion started by: La-Paloma78
0 Replies

5. UNIX for Dummies Questions & Answers

Email Alerts

hi I am running so scripts that clean up empty folders on our servers once a week. I run from a cron. But what i would like to do is add a email notfication so i can be notified that it completed. The script is #Clean Empty Folders on Studio Share perl... (1 Reply)
Discussion started by: treds
1 Replies

6. Solaris

sms alerts

how to configure sms alerts in SUN SPARC servers to notify file system , cpu, memory and disk errors. (2 Replies)
Discussion started by: phani.madiraju
2 Replies

7. IP Networking

Email Alerts

Dear Network Masters, I want to know who brought up the concept of Email Alerts Feature. are their any RFC's on Email Alerts???? Please let me know. Thanks in Adv, meti (1 Reply)
Discussion started by: ashokmeti
1 Replies

8. Solaris

Alarms/Alerts

Is there a imbedded command (Solaris v8 ksh) that will send an administrative alert/alarm. Or is it just triggering a mail message via shell script? If no, is there a good open-source code someone knows about? Thanks so much in advance for any replies. ...Gozer13 (3 Replies)
Discussion started by: gozer13
3 Replies

9. UNIX for Dummies Questions & Answers

Vulnerability Alerts

Aside from CERT, are there any additional sources for unix/linux vulnerabilities? (1 Reply)
Discussion started by: kmgrady01
1 Replies
Login or Register to Ask a Question