On 23-06-16 07:21, Aneesh R wrote:
Hi
Hi Aneesh,
Is there any way to collect domjudge usage statistics Like
a)how much data is uploaded by each participants
We don't keep track of such things inside DOMjudge, although the only data uploaded are submission files, so you could directly query the database to find out. You'd have to write the SQL queries yourself though.
b) how much size is used by each participant in domjudge
What do you mean by "how much size is used"? In my interpretation this would be the same as above.
c) how many users are logged in contest
We don't keep track of this (since what it means to be logged in depends on the method used), but you can check the 'last_login' field of the user table, e.g. when using PHP_SESSIONS.
Best, Jaap