The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

How can I find out who and when was new deployment project created?

Darrell Sutherland
October 10, 2018

I am writing a script to look for specific data in a sandpit database. The problem ive got is that i want any new deployment project info like who created it and when but this does not seem to be available?

Ideas?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Foong
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 8, 2018

There isn't such data in the database but there is audit log on deployment environment created.

Try the following SQL:

SELECT dp.NAME AS "Deployment Project",
al.USER_NAME AS "Creator Username",
MIN(al.MSG_TIME_STAMP) AS "Unix Timestamp"
FROM AUDIT_LOG al
JOIN DEPLOYMENT_PROJECT dp ON dp.DEPLOYMENT_PROJECT_ID=ENTITY_ID
WHERE ENTITY_TYPE='DeploymentProject'
AND MSG='Environment created'
GROUP BY 1,2
ORDER BY 1,3

There might be more than 1 result for each deployment but you can just refer to the earliest or lowest time.

You can use this site to convert the Unix Timestamp.

If you want to check specific Deployment Project only, you can refer to the Audit Log at Deployment Project > <deploymentProjectName> > Edit Project > Audit Log

TAGS
AUG Leaders

Atlassian Community Events