Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Get the user/project growth trend on Jira

Raju Anumula October 3, 2019

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.

 

1 answer

1 vote
Deleted user October 3, 2019

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 

Suggest an answer

Log in or Sign up to answer