Has anybody got a module they are using to easily track comprehensive API/server usage by users? Any recommendations?
I just want to see who's signing on, how often, what's they're doing, what routes they're hitting, keep track of any possible hiccups in delivering quick responses, etc.
I can build one out myself, just putting activity in a database, but if there's already a wheel, I'd love to use it!
Have you checked my project's backend database? There is a table name tbl_users_log that log the user's activity. The tbl_users also logs the user last login time and counts.
Updates: Latest B4XPages user login client apps (using B4J server): https://www.b4x.com/android/forum/threads/project-template-user-login-client-b4x.161914/ Finally I would like to share my B4J API server written in B4J. Compare to my previous PHP API, this API server implements user...