...
Dataset | % of Audit Log Messages | % of unique programs | Time Since Last Read | Score |
---|---|---|---|---|
DS1 | 70 | 60 | 80s | 72 |
DS2 | 30 | 50 | 1000s | 42 |
Calculation Example:
DS1: 70% of the Audit Log Messages are for DS1. 70*40/100 = 28 (40% of the score)
60% of the programs access DS1: 60 * 40/100 = 24 (40% of the score)
Among the two datasets, DS1 has been accessed the most recently, so 2/2 * 20 = 20 (20% of the score)
Total: 72
Sample Output 2
Dataset | % of Audit Log Message | % of unique programs | Time Since Last Read | Score |
---|---|---|---|---|
DS1 | 25 | 30 | 10000s | 27 |
DS2 | 25 | 30 | 9000s | 32 |
DS3 | 25 | 30 | 800s | 37 |
DS4 | 25 | 30 | 70s | 42 |
Calculation Example:
DS1:
25 * 0.4 + 30 * 0.4 + 1/4 * 20 = 27
Sample Output 3
Dataset | % of Audit Log Message | % of unique programs | Time Since Last Read | Score |
---|---|---|---|---|
DS1 | 65 | 80 | 10s | 78 |
DS2 | 25 | 40 | 20s | 41 |
DS3 | 10 | 40 | 40s | 25 |
DS4 | 5 | 10 | 30s | 16 |
...