Is there any report in Moodle, where I can see "online live users" for a period? I need a line graph:
Y axis- Number of online live users
X axis- From Jan 2022 to Sep 2024
Just like we see share price line graph.
# Shows users logged in the last 60 minutes.
# I wonder if it would be helpful to show the course that the student is in?
# Modified 1/15/20 with an attempt to fix problems around midnight. It should now work.
SELECT firstname,
lastname,
from_unixtime(lastaccess) AS LastClick,
timediff(now(), from_unixtime(lastaccess)) AS lastaccess,
timestampdiff(MINUTE, from_unixtime(lastaccess), now()) AS minutes_ago
FROM prefix_user HAVING minutes_ago < 60
order by lastaccess