You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.