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.
Is there a built in command (potentially under options like the max-time) to prepend timestamps at the start of all console output generated by a pipeline? If not, what other methods can I use to achieve the same result?
- Thank you
Hi @Geoffrey He and welcome to the community.
I'm afraid that we don't have a built-in command that does that. I can create a feature request for our development team to consider, please feel free to let me know if you'd like me to do that.
You could use moreutils to do that. If you use a Docker image based on Ubuntu you can install it at the beginning of (each) script with
apt-get install moreutils
or you can create a custom Docker image that includes this tool.
Then, you can do the following for every command in the script(s) of your yml file:
- command | ts '[%Y-%m-%d %H:%M:%S]'
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.