22 Jul 2025
11:58 AM
- last edited on
22 Jul 2025
12:58 PM
by
AgataWlodarczyk
Hi everyone,
I have a variable that holds the tenant ID $TenantID
Is there a way to link to a different section in Dynatrace such as https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.infraops/explorer?perspective=Default using a markup tile?
I can do it using code, then visualize it as a table and column = markdown, but it doesn't look good.
What am I missing?
export default async function () {
const tenant =$TenantID;
const url = `https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.infraops/explorer?perspective=Default`;
return "# [Infrastructure Overview](https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.infraops/explorer?perspective=Default)";
}