Hello Team,
We are using Jira for last 10 years, how to get the user and project growth on Jira.
How to know how many projects are created per year and new users per year.
Database: Postgres
Thanks in Advance.
Hi @Raju Anumula ,
There is no way you can find out when the project is created. The only way is to check in the audit log table (this will capture the information, only if it is enabled).
/*When was a project created?*/
SELECT *
FROM audit_log
WHERE SUMMARY = 'Project created';
The other workaround is to check for the 1st ticket that is created in the project.
Thanks,
Sravya
Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!
Register today
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.