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

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events