Color encoding on the disk space script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Color encoding on the disk space script
# 1  
Old 03-20-2014
Color encoding on the disk space script

Hi All,

Hope all are doing good!! Am glad that i have utilized some ideas and written a code to make the disk space result comes better and it was successfully running in the production. The next update from my manager was to make this code to come in a table format with color added.

1) The below code will generate a report for the files which have crossed above 70% and i will FTP the same to the main server ( totally 17 server report files will be FTP'd to the main server.

Code:
df -g | awk 'NR>1&&($4+0)>70' > report151.txt if [ -s report151.txt ] then cat report151.txt else echo "No file systems found above 70% utilization on the server `hostname`">>report151.txt

2) The main server will send the mail by collating all the report.txt files

Code:
 
#!/bin/sh echo>blank_line echo "The list of File systems that reached threshold were given below" > mailbody.txt echo "---------------------------------------------------------------------------------">>mailbody.txt cat report151.txt blank_line report115.txt blank_line report141.txt blank_line report161.txt>>mailbody.txt cat mailbody.txt|mailx -s "Disk space Report-$(date +'%A %B %d, %Y')" -r "DSReport@wellpoint.com" hari1189@gmail.com

Now i need these report.txt's to come in the mailbody as table format with the below colors

70% - 80% - AMBER or YELLOW
80% - 100% - RED

Can some one help me out with the above script by modifying the encoding part of that mailbody. Thanks in advance. Hope i will find a better solution from my friends over here.

Thanks
Hari
# 2  
Old 03-20-2014
If you want color in an email, you will need to do HTML.

It'd really help to see what your report looks like...
# 3  
Old 03-20-2014
I gave this away some time ago...

At A Glance Coloured Real Time Bargraph Generator... | Unix Linux Forums | Shell Programming and Scripting

It is an ANALOGUE bargraph generator that has Green, Yellow and Red portions.

It is purely an at a glance readout inside a terminal window...

You might be able to adapt it for your needs...
# 4  
Old 03-20-2014
Quote:
Originally Posted by wisecracker
I gave this away some time ago...
That's colors in console, not colors in email. Sadly quite different.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 03-20-2014
Hi Corona688...

My bad
(It will teach me to read the whole post properly before jumping in feet first.)

I made an assumption that because the final collation was a pure text file and not HTML that it was eventually going to be displayed inside a terminal...

Thanks for pointing it out...
# 6  
Old 03-20-2014
Thanks corona688

Hi Corona688,

I'd really appreciate if you can help me out with the HTML encoding as am not aware of it , am unable to do it

Code:
df -g | awk 'NR>1&&($4+0)>70' |awk 'NR>1&&($4+0)<80'  > hari.html

Just wrote this single line Smilie

output came like the below format (as normal)
/dev/hd9var 20.75 4.47 79% 22378 3% /var
/dev/itmlv 2.00 0.58 71% 8400 6% /opt/IBM/ITM
/dev/oradatalv 10.00 2.28 78% 17 1% /u02/oradata

I need your help to align this in a table format using HTML code and background of the Used% should be in RED color and foreground should be in black BOLD.

If it is possible to make the result generate like this :|

Kindly do the needful

---------- Post updated at 04:21 AM ---------- Previous update was at 04:11 AM ----------

Code:
df -g | awk 'NR>1&&($4+0)>70' |awk 'NR>1&&($4+0)<80'  > hari.html
export MAILTO="hari1189@gmail.com"
export CONTENT="/home/ac899/hari.html"
export SUBJECT="Disk Space Report"
(
 echo "Subject: $SUBJECT"
 echo "MIME-Version: 1.0"
 echo "Content-Type: text/html"
 echo "Content-Disposition: inline"
 cat $CONTENT
) | /usr/sbin/sendmail $MAILTO

Output came like this :
Code:
dev/hd9var 20.75 4.47 79% 22378 3% /var /dev/itmlv 2.00 0.58 71% 8400 6% /opt/IBM/ITM /dev/oradatalv 10.00 2.28 78% 17 1% /u02/oradata

I want this in a table format :'(. Am trying from my side too. But needed your help guys to make this successful
# 7  
Old 03-20-2014
Hi.

If you wrapped some <pre> / </pre> tags either side of cat $CONTENT, at least it would be formatted nicer.
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. 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

4. Emergency UNIX and Linux Support

Disk space script output in color

I'm connecting to 15 servers in using ssh and storing disk space details of each server in a text file Finally , I'm emailing that text file at the particular id using mail -x . The report looks something like this. Filesystem size used avail capacity Mounted on /proc ... (30 Replies)
Discussion started by: ajaypatil_am
30 Replies

5. 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

6. 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

7. Shell Programming and Scripting

Please help - disk space check script

I have a disk space check script that uses an exceptions file, the only issue with the script is that it does not work with values higher than the FSMAX=85 value. I have a file system that is at 92% and it doesn't change, so I would like to add it to the exceptions file. The exceptions file format... (0 Replies)
Discussion started by: maddhadder71
0 Replies

8. Shell Programming and Scripting

Disk Space Monitoring Script

#!/bin/bash # Disk Space Monitoring for more than 95 % # and Sending Alerts by Mail if ; 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... (8 Replies)
Discussion started by: sriram003
8 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