Count Daily Login in APP

2
Hi everyone,    I would like to count the number of login that happen during a day and then put the information day by day in a column charts that can take track of the activity on the application…   Hope that someone can help me.    
asked
2 answers
8

If you don't need to know individual logins but only how many users have been online in a day, it's even easier. The “lastlogin” attribute on User keeps track of when someone was last logged in, so you could easily do a retrieve where the lastlogindate => the start of the day and do a count on that.

answered
3

Hi Luca,

One of the ways of achieving this is by using a microflow as a homepage, where you can increment a counter before sending the user to a page.

You could then use for example this widget to display the data.

answered