protocollabs / hippod

A Test Aggregator for Distributed & Heterogeneous Test Environments
https://hgn.github.io/hippod/
MIT License
0 stars 4 forks source link

Submitter Statistics #81

Open hgn opened 7 years ago

hgn commented 7 years ago

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:

{
"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
}