Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,721
Community Members
 
Community Events
185
Community Groups

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

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.
Nov 08, 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