05 Sep 2017 12:13 PM
Any ideas how to figure out Dynatrace tenant version in SaaS environment? (Not in Dynatrace managed).
Oneagent version available from the tenant can be seen by navigating to Settings->Preferences->Oneagent updates or when deploying new agent, but I can't see the tenant version anywhere.
Solved! Go to Solution.
05 Sep 2017 12:23 PM
Hi, what do you mean by tenant version? Tenant is just an environment for agents that are versioned.
05 Sep 2017 12:33 PM
By tenant I mean the version of my dynatrace environment - what version is running at my https://xxxx.live.dynatrace.com .
I was about to try the Golang support, but I can't see the option in my environment. Blog post says it is from the cluster version 127. How can I see if my environment is at this level?
Briefly looking at the HTML source code - it should be 127, since some URLs include this numbering, but I don't see the Golang support in our environment.
06 Sep 2017 08:11 AM
OK. I see. So in SaaS all clusters are already on 1.127. You can not bother that at all if you are SaaS user. We perform all cluster updates in time.
It seems that this feature was not enabled yet for your tenant. Please give us some time, and we'll enable that shortly.
06 Sep 2017 01:25 PM
Hey Julius, I've just received a confirmation this is going to be available on Friday.
Thanks for your interest in willing to test that. Let us know your impressions and insights you discovered with that new functionality!
20 Jun 2018 01:06 PM
With recent sprints (probably from 146) the tenant version is visible in the bottom of the user menu. No need to look at the source code anymore.
07 Jun 2023 07:39 AM
I still cant see the SaaS version in the UI? Can you please help with the right navigation to see the same
07 Jun 2023 09:38 AM
11 Sep 2023 01:04 PM
Where we can see it with the new Dynatrace view?
12 Sep 2023 07:51 AM
@Duran_Narbona it's not (yet) in the new platform UI but it will be available shortly in the next releases with additional improvements. You can switch to the old UI to get the version.
13 Sep 2023 04:50 PM
You can see the tenant version if you go to the Hub> Manage > any Classic App, e.g Data Explorer
16 Jul 2024 02:19 PM
Have there been any updates on this? The team would love to check the version without going through the Hub or switching to the old UI
11 Sep 2024 05:25 PM
Same here, it would be great show in a dashboard the actual version.
12 Sep 2024 10:05 AM - edited 12 Sep 2024 10:17 AM
You can add a code tile with this code on a new dashboard to display the current version of the server
import { clusterVersionClient, deploymentClient } from "@dynatrace-sdk/client-classic-environment-v1";
export default async function() {
let clusterVersion = await clusterVersionClient.getVersion();
console.log(clusterVersion)
return clusterVersion.version;
}
Same as this API :
12 Sep 2024 04:37 PM
Great, just what I was looking for. Thank you.