How to find the active users of Jira Portfolio
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Purpose
Pull a list of active users of the Jira Portfolio app.
Solution
Jira doesn't track any usage data of apps. The Jira admin has to rely on the HTTP access logs to pull the list of users browsing the Portfolio pages.
The command to run is:
grep -E "/secure/Portfolio.*.jspa|/secure/ManualPlans.jspa" access_log.2019* | cut -d" " -f3 | sort -u
- This command has to be run from <JIRA_INSTALL>/logs/ and will return the list of users who browsed Portfolio pages in 2019.
- If you're using Data Center, the command has to be run on all nodes and the results need to be merged.