You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello. We are looking to identify all 'active' projects in our Jira Server instance, v8.20.17. We are defining 'active' as a project, which has had content created in the last 'X' amount of days.
Our team was considering the use of REST API or JQL or a combination of both.
I saw the possible use of a database query as well:
Example below.
select
pname,pkey,created as project_createtd,updated as project_updatetd
from
project
where updated <= '2019-10-01T02:15:00.102738Z'
Thank you
Here's how its done
SELECT DISTINCT i.PROJECT, MAX(i.UPDATED) as Last_Updated, p.pname, p.lead FROM jiraissue i INNER JOIN project p ON p.ID = i.PROJECT GROUP BY i.PROJECT, p.pname, p.lead having MAX(i.UPDATED) > '2023-01-01' ORDER BY MAX(i.UPDATED) desc, i.PROJECT, p.pname;
The Projects section in Administration lists all project where you can sort by Last issue update. Isn't this easier to identify active or non-active projects?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.