A new cache file should be implemented where we see a submitter statistic:
who is submitting
how often is this person/pc submitting
We can based on this information visualize this somehow on the front page. E.g. this graph: http://nvd3.org/examples/stackedArea.html
On a monthly basis (because on a daily basis the plots are shitty): we calculate this daily and we add data to a monthly entried data set:
{
"01-01-2017" : { "user_a" : 20, "user_b" : 10, } // <- here January, if January ends this entry is not updated anymore
"01-02-2017" : { "user_a" : 10, "user_b" : 10, } // <- here February, this entries are update during February
}
A new cache file should be implemented where we see a submitter statistic:
We can based on this information visualize this somehow on the front page. E.g. this graph: http://nvd3.org/examples/stackedArea.html On a monthly basis (because on a daily basis the plots are shitty): we calculate this daily and we add data to a monthly entried data set: