42 |
|
int main(int argc, char **argv){ |
43 |
|
|
44 |
|
extern char *optarg; |
45 |
– |
extern int optind; |
45 |
|
int c; |
46 |
|
|
47 |
|
/* We default to 1 second updates and displaying in bytes*/ |
98 |
|
|
99 |
|
long long total_tx=0; |
100 |
|
long long total_rx=0; |
101 |
+ |
long long total_ipackets=0; |
102 |
+ |
long long total_opackets=0; |
103 |
+ |
long long total_ierrors=0; |
104 |
+ |
long long total_oerrors=0; |
105 |
+ |
long long total_collisions=0; |
106 |
|
|
107 |
|
for(x = 0; x < num_network_stats; x++){ |
108 |
|
/* Print at location 2, linenumber the interface name */ |
109 |
< |
printf("\033[%d;2H%-25s : %-10s", line_number++, "Network Interface Name", network_stats->interface_name); |
109 |
> |
printf("\033[%d;2H%-30s : %-10s", line_number++, "Network Interface Name", network_stats->interface_name); |
110 |
|
/* Print out at the correct location the traffic in the requsted units passed at command time */ |
111 |
|
switch(units){ |
112 |
|
case 'b': |
113 |
< |
printf("\033[%d;2H%-25s : %8lld b", line_number++, "Network Interface Rx", network_stats->rx); |
114 |
< |
printf("\033[%d;2H%-25s : %8lld b", line_number++, "Network Interface Tx", network_stats->tx); |
113 |
> |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Interface Rx", network_stats->rx); |
114 |
> |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Interface Tx", network_stats->tx); |
115 |
|
break; |
116 |
|
case 'k': |
117 |
< |
printf("\033[%d;2H%-25s : %5lld k", line_number++, "Network Interface Rx", (network_stats->rx / 1024)); |
118 |
< |
printf("\033[%d;2H%-25s : %5lld", line_number++, "Network Interface Tx", (network_stats->tx / 1024)); |
117 |
> |
printf("\033[%d;2H%-30s : %5lld k", line_number++, "Network Interface Rx", (network_stats->rx / 1024)); |
118 |
> |
printf("\033[%d;2H%-30s : %5lld", line_number++, "Network Interface Tx", (network_stats->tx / 1024)); |
119 |
|
break; |
120 |
|
case 'm': |
121 |
< |
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Interface Rx", network_stats->rx / (1024.00*1024.00)); |
122 |
< |
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Interface Tx", network_stats->tx / (1024.00*1024.00)); |
121 |
> |
printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Interface Rx", network_stats->rx / (1024.00*1024.00)); |
122 |
> |
printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Interface Tx", network_stats->tx / (1024.00*1024.00)); |
123 |
|
} |
124 |
< |
printf("\033[%d;2H%-25s : %ld ", line_number++, "Network Interface systime", (long) network_stats->systime); |
124 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface packets in", network_stats->ipackets); |
125 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface packets out", network_stats->opackets); |
126 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface errors in", network_stats->ierrors); |
127 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface errors out", network_stats->oerrors); |
128 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface collisions", network_stats->collisions); |
129 |
> |
printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface systime", (long) network_stats->systime); |
130 |
|
|
131 |
|
/* Add a blank line between interfaces */ |
132 |
|
line_number++; |
134 |
|
/* Add up this interface to the total so we can display a "total" network io" */ |
135 |
|
total_tx+=network_stats->tx; |
136 |
|
total_rx+=network_stats->rx; |
137 |
+ |
total_ipackets+=network_stats->ipackets; |
138 |
+ |
total_opackets+=network_stats->opackets; |
139 |
+ |
total_ierrors+=network_stats->ierrors; |
140 |
+ |
total_oerrors+=network_stats->oerrors; |
141 |
+ |
total_collisions+=network_stats->collisions; |
142 |
|
|
143 |
|
/* Move the pointer onto the next interface. Since this returns a static buffer, we dont need |
144 |
|
* to keep track of the orginal pointer to free later */ |
145 |
|
network_stats++; |
146 |
|
} |
147 |
|
|
148 |
< |
printf("\033[%d;2H%-25s : %-10s", line_number++, "Network Interface Name", "Total Network IO"); |
148 |
> |
printf("\033[%d;2H%-30s : %-10s", line_number++, "Network Interface Name", "Total Network IO"); |
149 |
|
switch(units){ |
150 |
|
case 'b': |
151 |
< |
printf("\033[%d;2H%-25s : %8lld b", line_number++, "Network Total Rx", total_rx); |
152 |
< |
printf("\033[%d;2H%-25s : %8lld b", line_number++, "Network Total Tx", total_tx); |
151 |
> |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total Rx", total_rx); |
152 |
> |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total Tx", total_tx); |
153 |
|
break; |
154 |
|
case 'k': |
155 |
< |
printf("\033[%d;2H%-25s : %5lld k", line_number++, "Network Total Rx", (total_rx / 1024)); |
156 |
< |
printf("\033[%d;2H%-25s : %5lld k", line_number++, "Network Total Tx", (total_tx / 1024)); |
155 |
> |
printf("\033[%d;2H%-30s : %5lld k", line_number++, "Network Total Rx", (total_rx / 1024)); |
156 |
> |
printf("\033[%d;2H%-30s : %5lld k", line_number++, "Network Total Tx", (total_tx / 1024)); |
157 |
|
break; |
158 |
|
case 'm': |
159 |
< |
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Total Rx", (total_rx / (1024.00*1024.00))); |
160 |
< |
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Total Tx", (total_tx / (1024.00*1024.00))); |
159 |
> |
printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Total Rx", (total_rx / (1024.00*1024.00))); |
160 |
> |
printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Total Tx", (total_tx / (1024.00*1024.00))); |
161 |
|
break; |
162 |
|
} |
163 |
+ |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total packets in", total_ipackets); |
164 |
+ |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total packets out", total_opackets); |
165 |
+ |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total errors in", total_ierrors); |
166 |
+ |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total errors out", total_oerrors); |
167 |
+ |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total collisions", total_collisions); |
168 |
|
|
169 |
|
fflush(stdout); |
170 |
|
|