Reputation: 7
There's the possibility to view the course usage statistics / course activity. So I'm able to see which file was clicked how many times by how many students. (Data is anonymized) I have problems figuring out, where the data is saved. Also I couldn't any useful hint in the moodle docs.
Is there any MySQL table where the data is saved?
EDIT: I try to kind of develop a plugin which displays the activity data as graphs. Therefore I try to find where the data is saved. (I have access to the db because I use a local installation of Moodle)
Upvotes: 0
Views: 1220
Reputation: 127
You could check the logstore_standard_log
table. This is where user logs are stored in.
Upvotes: 1