Good Day!
Given the following data...
src | dst |
1.2.3.4 | 9.8.7.6 |
1.2.3.4 | 9.8.7.6 |
1.2.3.4 | 9.8.7.6 |
4.3.2.1 | 6.7.8.9 |
1.2.3.4 | 5.6.7.8 |
I'd like to display a table showing the percentage of events by src and then breakdown this further by displaying the percentage of total events by src-dst pair...
The results would like like...
src | src % | dst - dst % |
1.2.3.4 | 80% | 9.8.7.6 60% |
5.6.7.8 20% | ||
4.3.2.1 | 20% | 6.7.8.9 20% |
Any help would me much appreciated.
Thanks.