You are not logged in.
Dear users of this forum,
we are pleased to inform you that we will be updating the software behind this forum in the near future.
Existing posts, users and categories will remain untouched.
Important:
We will keep you informed in the pinned thread.
Kind regards,
Your ReportServer Team
Liebe Nutzer dieses Forums,
wir freuen uns, euch mitteilen zu können, dass wir in naher Zukunft die Software hinter diesem Forum aktualisieren werden.
Existierende Beiträge, Nutzer und Kategorien bleiben weiterhin bestehen!
Wichtig:
Wir halten euch im angepinnten Beitrag auf dem Laufenden!
Mit vielen Grüßen
Euer ReportServer Team
Hi, i want to ask if the admin can see which user is currently online at the moment / which user are logging in into the reportserver ? if can't how can i see it ? can i see it in the app or through logs ? thankyou
Offline
Hi felipe,
you can try with this or similar scripts:
displayLoggedInUsers.groovy
import net.datenwerke.security.service.authenticator.*
import net.datenwerke.security.service.usermanager.*
import java.util.GregorianCalendar
def uservice = GLOBALS.getInstance(UserManagerService)
def diff = 1000*60*60
def now = new GregorianCalendar().timeInMillis
GLOBALS.getInstance(AuthenticatorService).lastRequests.collect({ key, value ->
uservice.getNodeById(key)?.username + ", " + ((now-value)/1000/60) + " minutes ago\n"
}).join();Regards,
Eduardo
Offline