| 1 | #!/bin/bash |
|---|
| 2 | |
|---|
| 3 | /sw/bin/rrdtool graph net.png -a PNG --title="Network Traffic" \ |
|---|
| 4 | --upper-limit 10 --lower-limit -10 \ |
|---|
| 5 | --vertical-label "Rate (kbytes/sec)" \ |
|---|
| 6 | 'DEF:ibytes=net.rrd:ibytes:AVERAGE' \ |
|---|
| 7 | 'DEF:obytes=net.rrd:obytes:AVERAGE' \ |
|---|
| 8 | 'CDEF:omb=obytes,1024,/' \ |
|---|
| 9 | 'CDEF:imb=ibytes,-1024,/' \ |
|---|
| 10 | 'CDEF:imb_legend=ibytes,1024,/' \ |
|---|
| 11 | 'AREA:omb |
|---|
| 12 | 'LINE1:omb |
|---|
| 13 | 'GPRINT:omb:LAST:Outbound \: %3.3lf\j' \ |
|---|
| 14 | 'AREA:imb |
|---|
| 15 | 'LINE1:imb |
|---|
| 16 | 'GPRINT:imb_legend:LAST:Inbound \: %3.3lf\j' \ |
|---|
| 17 | 'LINE1:0 |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | /sw/bin/rrdtool graph net_hour.png -a PNG --title="Network Traffic" \ |
|---|
| 21 | --upper-limit 10 --lower-limit -10 \ |
|---|
| 22 | --vertical-label "Rate (kbytes/sec)" \ |
|---|
| 23 | --start "-6hour" \ |
|---|
| 24 | 'DEF:ibytes=net.rrd:ibytes:AVERAGE' \ |
|---|
| 25 | 'DEF:obytes=net.rrd:obytes:AVERAGE' \ |
|---|
| 26 | 'CDEF:omb=obytes,1024,/' \ |
|---|
| 27 | 'CDEF:imb=ibytes,-1024,/' \ |
|---|
| 28 | 'CDEF:imb_legend=ibytes,1024,/' \ |
|---|
| 29 | 'AREA:omb |
|---|
| 30 | 'LINE1:omb |
|---|
| 31 | 'GPRINT:omb:LAST:Outbound \: %3.3lf\j' \ |
|---|
| 32 | 'AREA:imb |
|---|
| 33 | 'LINE1:imb |
|---|
| 34 | 'GPRINT:imb_legend:LAST:Inbound \: %3.3lf\j' \ |
|---|
| 35 | 'LINE1:0 |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | /sw/bin/rrdtool graph net_week.png -a PNG --title="Network Traffic" \ |
|---|
| 39 | --upper-limit 10 --lower-limit -10 \ |
|---|
| 40 | --vertical-label "Rate (kbytes/sec)" \ |
|---|
| 41 | --start "-1week" \ |
|---|
| 42 | 'DEF:ibytes=net.rrd:ibytes:AVERAGE' \ |
|---|
| 43 | 'DEF:obytes=net.rrd:obytes:AVERAGE' \ |
|---|
| 44 | 'CDEF:omb=obytes,1024,/' \ |
|---|
| 45 | 'CDEF:imb=ibytes,-1024,/' \ |
|---|
| 46 | 'CDEF:imb_legend=ibytes,1024,/' \ |
|---|
| 47 | 'AREA:omb |
|---|
| 48 | 'LINE1:omb |
|---|
| 49 | 'GPRINT:omb:LAST:Outbound \: %3.3lf\j' \ |
|---|
| 50 | 'AREA:imb |
|---|
| 51 | 'LINE1:imb |
|---|
| 52 | 'GPRINT:imb_legend:LAST:Inbound \: %3.3lf\j' \ |
|---|
| 53 | 'LINE1:0 |
|---|
| 54 | |
|---|
| 55 | /sw/bin/rrdtool graph net_month.png -a PNG --title="Network Traffic" \ |
|---|
| 56 | --upper-limit 10 --lower-limit -10 \ |
|---|
| 57 | --vertical-label "Rate (kbytes/sec)" \ |
|---|
| 58 | --start "-1month" \ |
|---|
| 59 | 'DEF:ibytes=net.rrd:ibytes:AVERAGE' \ |
|---|
| 60 | 'DEF:obytes=net.rrd:obytes:AVERAGE' \ |
|---|
| 61 | 'CDEF:omb=obytes,1024,/' \ |
|---|
| 62 | 'CDEF:imb=ibytes,-1024,/' \ |
|---|
| 63 | 'CDEF:imb_legend=ibytes,1024,/' \ |
|---|
| 64 | 'AREA:omb |
|---|
| 65 | 'LINE1:omb |
|---|
| 66 | 'GPRINT:omb:LAST:Outbound \: %3.3lf\j' \ |
|---|
| 67 | 'AREA:imb |
|---|
| 68 | 'LINE1:imb |
|---|
| 69 | 'GPRINT:imb_legend:LAST:Inbound \: %3.3lf\j' \ |
|---|
| 70 | 'LINE1:0 |
|---|
| 71 | |
|---|
| 72 | /sw/bin/rrdtool graph net_year.png -a PNG --title="Network Traffic" \ |
|---|
| 73 | --lower-limit -10 --rigid \ |
|---|
| 74 | --vertical-label "Rate (kbytes/sec)" \ |
|---|
| 75 | --start "-1year" \ |
|---|
| 76 | 'DEF:ibytes=net.rrd:ibytes:AVERAGE' \ |
|---|
| 77 | 'DEF:obytes=net.rrd:obytes:AVERAGE' \ |
|---|
| 78 | 'CDEF:omb=obytes,1024,/' \ |
|---|
| 79 | 'CDEF:imb=ibytes,-1024,/' \ |
|---|
| 80 | 'CDEF:imb_legend=ibytes,1024,/' \ |
|---|
| 81 | 'AREA:omb |
|---|
| 82 | 'LINE1:omb |
|---|
| 83 | 'GPRINT:omb:LAST:Outbound \: %3.3lf\j' \ |
|---|
| 84 | 'AREA:imb |
|---|
| 85 | 'LINE1:imb |
|---|
| 86 | 'GPRINT:imb_legend:LAST:Inbound \: %3.3lf\j' \ |
|---|
| 87 | 'LINE1:0 |
|---|
| 88 | |
|---|
| 89 | |
|---|
| 90 | |
|---|
| 91 | |
|---|
| 92 | /sw/bin/rrdtool graph net_2year.png -a PNG --title="Network Traffic" \ |
|---|
| 93 | --lower-limit -10 --rigid \ |
|---|
| 94 | --vertical-label "Rate (kbytes/sec)" \ |
|---|
| 95 | --start "-5year" \ |
|---|
| 96 | 'DEF:ibytes=net.rrd:ibytes:AVERAGE' \ |
|---|
| 97 | 'DEF:obytes=net.rrd:obytes:AVERAGE' \ |
|---|
| 98 | 'CDEF:omb=obytes,1024,/' \ |
|---|
| 99 | 'CDEF:imb=ibytes,-1024,/' \ |
|---|
| 100 | 'CDEF:imb_legend=ibytes,1024,/' \ |
|---|
| 101 | 'AREA:omb |
|---|
| 102 | 'LINE1:omb |
|---|
| 103 | 'GPRINT:omb:LAST:Outbound \: %3.3lf\j' \ |
|---|
| 104 | 'AREA:imb |
|---|
| 105 | 'LINE1:imb |
|---|
| 106 | 'GPRINT:imb_legend:LAST:Inbound \: %3.3lf\j' \ |
|---|
| 107 | 'LINE1:0 |
|---|
| 108 | |
|---|
| 109 | |
|---|
| 110 | |
|---|
| 111 | |
|---|