28 Oct 2025
04:01 PM
- last edited on
30 Oct 2025
09:52 AM
by
AntonPineiro
i want to monitor the new deployment change events and place it on the dashboard, how to acheive it? can you pls share the json dashboard template to import it my window?
29 Oct 2025 08:16 AM
i can see the deployment changes in events in the host overview page but i cant find the solutions to attach those events in the dashboard.. my requirement in to create the dashboard new deployment changes in the host and how do get it.. can anyone help
29 Oct 2025 09:51 AM
I would also like to point you to our SDLC (Software Development Lifecycle Events). The idea is that we go beyond just deployment events and track every major step in the lifecycle of an artifact, eg: git commit, pull request, build, deploy, test, release, ...
Here is a video which also points to more information on GitHub and on the Playground: https://www.youtube.com/watch?v=NzFTO7aeKvs
While SDLC events currently dont show up in the UI they are the standard we will drive forward. An interim solution that I am promoting in the moment is that you start using SDLC - and - if you also want to have Deployment Events you can use a Workflow that triggers on SDLC events and then creates a Deployment Event that get attached to your entities (hosts, PGs, services ...).
Hope this helps
29 Oct 2025 04:00 PM
I'm afraid this won't help because they're Managed.
30 Oct 2025 08:20 AM
i am still not getting the right information's or help, in managed Dynatrace there is no option available to create the dashboard for the new deployment changes in the host level, ( i can see the events about the new deployment or deployment changes in the host overview page but there is no option available to bring this metrics in to dashboard)
30 Oct 2025 09:58 AM
Hi,
Looks like that is only possible in SaaS and not in Managed.
You can raise a product idea.
Best regards
30 Oct 2025 10:00 AM
Hi!
I had a very similar challenge when using Keptn and wanted a dashboard with validations/deploys. The most practical approach was to push metrics via the API and then visualize them on a dashboard.
Why metrics?
What I do in practice (short):
After every deployment/validation step, I send a single metric sample (e.g., custom.deployments.count 1) with the relevant dimensions.
On the dashboard I create:
Something like this:
# line format: metric,dim1=val1,dim2=val2 value [timestamp_ms]
custom.deployments.count,app=my-app,service=orders,host.name=app-01,version=2.3.7,pipeline=jenkins,stage=prod,result=success 1
curl -X POST "https://<ACTIVEGATE>:9999/e/<ENV_ID>/api/v2/metrics/ingest" \
-H "Authorization: Api-Token <DT_API_TOKEN_WITH_metrics.ingest>" \
--data-binary @- <<'EOF'
custom.deployments.count,app=my-app,service=orders,host.name=app-01,version=2.3.7,pipeline=jenkins,stage=prod,result=success 1
EOF
Tips: