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
Online 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.