Hi,
I'm looking for a groovy script that will give me a list of users that are currently logged in to Jira. In the Scriptrunner console, I can get a list of all users or users that have never logged in but I don't see a way to get just users that are logged in right now ("right now" = when I run the script in the console).
Thanks in advance for any help.
- B
Hi,
you can retrieve all application users.
And getting the last login time of user compares it with a delay (like 1 hour ago).
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.user.util.UserManager
import com.atlassian.jira.security.login.LoginManager
import groovy.time.TimeCategory
def twoHoursAg
use(TimeCategory) {
twoHoursAgo = 1.hours.ago
}
UserManager userManager = ComponentAccessor.getUserManager()
LoginManager loginManager = ComponentAccessor.getComponent(LoginManager)
userManager.users.findAll{loginManager.getLoginInfo(it.username)?.lastLoginTime!=null && new Date(loginManager.getLoginInfo(it.username)?.lastLoginTime) >= twoHoursAgo}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.