<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to retrieve data from another tenant and display in chart through DQL in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292254#M2979</link>
    <description>&lt;P&gt;We have created some charts which display the data from another tenant. In gen2 version, it can be configured like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hillman_0-1767062399659.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31365iCEBC88A9ED1A33A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hillman_0-1767062399659.png" alt="Hillman_0-1767062399659.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I try to convert the chart to gen3 version, I am not sure how to use DQL to achieve this. Any suggestions?&lt;/P&gt;</description>
    <pubDate>Tue, 30 Dec 2025 02:42:02 GMT</pubDate>
    <dc:creator>Hillman</dc:creator>
    <dc:date>2025-12-30T02:42:02Z</dc:date>
    <item>
      <title>How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292254#M2979</link>
      <description>&lt;P&gt;We have created some charts which display the data from another tenant. In gen2 version, it can be configured like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hillman_0-1767062399659.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31365iCEBC88A9ED1A33A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hillman_0-1767062399659.png" alt="Hillman_0-1767062399659.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I try to convert the chart to gen3 version, I am not sure how to use DQL to achieve this. Any suggestions?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 02:42:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292254#M2979</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2025-12-30T02:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292257#M2980</link>
      <description>&lt;P&gt;Hi Hillman,&lt;/P&gt;&lt;P&gt;I haven't done this myself yet but I think you can achieve this by querying the data from another tenant via API in a code tile on a gen3 dashboard.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:50:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292257#M2980</guid>
      <dc:creator>olga_wall</dc:creator>
      <dc:date>2025-12-30T07:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292258#M2981</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63818"&gt;@Hillman&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;In Dynatrace 3rd Gen, a flexible approach to query data from another environment is to use a Dashboard/Notebook Code tile (external/remote environment data). The idea is to create a Platform Token in the remote environment with the required storage read scopes, store it in the local environment Credential Vault, and then call the remote query endpoint from the Code tile. You can use the sample below and simply replace the remote URL, Credential Vault, and adjust the DQL as needed.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;import { credentialVaultClient } from "@dynatrace-sdk/client-classic-environment-v2";

async function fetchRemoteDql(credentialId, url, query) {
  const { token } = await credentialVaultClient.getCredentialsDetails({ id: credentialId });

  const response = await fetch(url, {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      Accept: "application/json",
      Authorization: `Bearer ${token}`,
    },
    body: JSON.stringify({
      query,
      requestTimeoutMilliseconds: 60000,
      enablePreview: true,
    }),
  });

  if (!response.ok) throw new Error(`HTTP ${response.status} ${response.statusText}`);
  return (await response.json()).result;
}

export default async function () {
  const credentialId = "CREDENTIALS_VAULT-XXXXXXX"; // your vault entry on the *local* env
  const url =
    "https://XXXXXXXX.apps.dynatrace.com/platform/storage/query/v1/query:execute";
  const query = `
timeseries usage = avg(dt.host.cpu.usage), by: { dt.entity.host }
| fieldsAdd entityName(dt.entity.host)
| sort arrayAvg(usage) desc
| limit 20
  `.trim();

  return await fetchRemoteDql(credentialId, url, query);
}&lt;/LI-CODE&gt;&lt;P&gt;Note: make sure the remote environment url is added to the allowlist if it is configured to limit external requests from the environment.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.dynatrace.com/develop/app-functions/allow-outbound-connections/" target="_blank"&gt;https://developer.dynatrace.com/develop/app-functions/allow-outbound-connections/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hamdy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 08:43:56 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292258#M2981</guid>
      <dc:creator>Mohamed_Hamdy</dc:creator>
      <dc:date>2025-12-30T08:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292265#M2982</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4007"&gt;@Mohamed_Hamdy&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I have tried with the DQL but I have found that it throws the following error.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "error": {
    "code": 540,
    "message": "Execution crashed.",
    "details": {
      "logs": "403: The requested credential details cannot be accessed by the current user or entity.\n    at CredentialVaultClient.getCredentialsDetails (file:///opt/sdk_modules/@dynatrace-sdk/client-classic-environment-v2@4/esm/index.js:6983:19)\n    at eventLoopTick (ext:core/01_core.js:177:7)\n    at async fetchRemoteDql (file:///script.ts:4:21)\n    at async default (file:///script.ts:34:10)\n",
      "type": "UNCAUGHT_EXCEPTION",
      "message": "Uncaught (in promise) 403: The requested credential details cannot be accessed by the current user or entity.",
      "details": {
        "lineNumber": 6983,
        "startColumn": 19,
        "stack": "403: The requested credential details cannot be accessed by the current user or entity.\n    at CredentialVaultClient.getCredentialsDetails (file:///opt/sdk_modules/@dynatrace-sdk/client-classic-environment-v2@4/esm/index.js:6983:19)\n    at eventLoopTick (ext:core/01_core.js:177:7)\n    at async fetchRemoteDql (file:///script.ts:4:21)\n    at async default (file:///script.ts:34:10)"
      }
    }
  }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 09:07:19 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292265#M2982</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2025-12-30T09:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292270#M2983</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63818"&gt;@Hillman&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;It looks like the failure is related to &lt;STRONG&gt;Credential Vault access&lt;/STRONG&gt; (the code tile can’t read the credential)&lt;/P&gt;&lt;P&gt;Could you please confirm the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Did you create a &lt;STRONG&gt;Platform token&lt;/STRONG&gt; in the remote environment (not an Environment API access token)? If yes, what scopes/permissions are enabled on that token?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;How was the &lt;STRONG&gt;Credential Vault&lt;/STRONG&gt; entry created on the local environment?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;For more details on Platform Tokens, please refer to Dynatrace documentation: &lt;A class="" href="https://docs.dynatrace.com/docs/shortlink/platform-tokens" target="_new" rel="noopener"&gt;https://docs.dynatrace.com/docs/shortlink/platform-tokens&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 10:22:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292270#M2983</guid>
      <dc:creator>Mohamed_Hamdy</dc:creator>
      <dc:date>2025-12-30T10:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292469#M2997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4007"&gt;@Mohamed_Hamdy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Oh, I have mixed up the Platform token with the Environment API access token. Let me create one and try again. Regarding the scope, is it granting all storage:*:read?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2026 03:45:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292469#M2997</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2026-01-06T03:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292634#M3008</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4007"&gt;@Mohamed_Hamdy&lt;/a&gt;&amp;nbsp;I have created a Platform Token with all "storage:*:read" scopes in remote tenant, then create a credential vault entry in local tenant. However, it still returns the following error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "error": {
    "code": 540,
    "message": "Execution crashed.",
    "details": {
      "logs": "403: The requested credential details cannot be accessed by the current user or entity.\n    at CredentialVaultClient.getCredentialsDetails (file:///opt/sdk_modules/@dynatrace-sdk/client-classic-environment-v2@4/esm/index.js:6983:19)\n    at eventLoopTick (ext:core/01_core.js:177:7)\n    at async fetchRemoteDql (file:///script.ts:4:21)\n    at async default (file:///script.ts:34:10)\n",
      "type": "UNCAUGHT_EXCEPTION",
      "message": "Uncaught (in promise) 403: The requested credential details cannot be accessed by the current user or entity.",
      "details": {
        "lineNumber": 6983,
        "startColumn": 19,
        "stack": "403: The requested credential details cannot be accessed by the current user or entity.\n    at CredentialVaultClient.getCredentialsDetails (file:///opt/sdk_modules/@dynatrace-sdk/client-classic-environment-v2@4/esm/index.js:6983:19)\n    at eventLoopTick (ext:core/01_core.js:177:7)\n    at async fetchRemoteDql (file:///script.ts:4:21)\n    at async default (file:///script.ts:34:10)"
      }
    }
  }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2026 06:19:19 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292634#M3008</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2026-01-08T06:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292653#M3010</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4007"&gt;@Mohamed_Hamdy&lt;/a&gt;&amp;nbsp;I have found out the root cause now. I have to enable the following options in credential vault entry to make it work:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hillman_0-1767864752383.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31466i81F819B17DF2E591/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hillman_0-1767864752383.png" alt="Hillman_0-1767864752383.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2026 09:32:40 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292653#M3010</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2026-01-08T09:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292895#M3032</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4007"&gt;@Mohamed_Hamdy&lt;/a&gt;&amp;nbsp;Sorry that I have got one more question. If the original DQL contains "`". How can I embed it into the code?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 09:23:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/292895#M3032</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2026-01-13T09:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293278#M3054</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63818"&gt;@Hillman&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your original DQL contains a backtick &lt;STRONG&gt;`&lt;/STRONG&gt; and you’re embedding it in the code using a JavaScript template literal (also delimited by backticks), you just need to &lt;STRONG&gt;escape the backtick inside the DQL&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Use &amp;nbsp;(backslash + backtick).&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const query = `
fetch logs
| filter contains(content, \`some-value\`)
| limit 20
`.trim();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jan 2026 13:14:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293278#M3054</guid>
      <dc:creator>Mohamed_Hamdy</dc:creator>
      <dc:date>2026-01-19T13:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293415#M3069</link>
      <description>&lt;P&gt;follow the question, can you help me with the query? there is lookup to join two table in this. I have result when i run two query separate but when I combine them with lookup, there is no result. but they support have results as&amp;nbsp;&lt;/P&gt;&lt;P&gt;export default async function() {&lt;BR /&gt;const credentialId = "CREDENTIALS_VAULT-A80F208D9C83954A"; // Replace with your credential vault ID.&lt;BR /&gt;const url = "&lt;A href="https://{environmentid}.apps.dynatrace.com/platform/storage/query/v1/query:execute" target="_blank" rel="noopener"&gt;https://{environmentid}.apps.dynatrace.com/platform/storage/query/v1/query:execute&lt;/A&gt;"; // Replace with API URL.&lt;BR /&gt;const query =&lt;BR /&gt;load "/lookups/2026Wave1-4"&lt;BR /&gt;| fieldsAdd Servers=lower(Name)&lt;BR /&gt;| fieldsAdd tenant= if(IN(Environment,{"Production", "DisasterRecovery"}), "Production"&lt;BR /&gt;,else: if(In(Environment,{"Test","QualityAssurance","QAEnvironment"}),"Non-Prod"))&lt;BR /&gt;| filterout In(Environment,{"Production", "DisasterRecovery"})&lt;BR /&gt;|lookup [fetch dt.entity.host&lt;BR /&gt;|fieldsAdd hostname = entity.name, hostGroupName, installerVersion&lt;BR /&gt;| parse hostname, """LD:Host '.'"""&lt;BR /&gt;| fields Host = lower(Host), entity.name, hostGroupName], sourceField:Servers,lookupField:Host, prefix:"DT-"&lt;BR /&gt;| fieldsAdd Status = if(`Servers` == `DT-Host`, "Dynatrace", else:"need onboard")&lt;BR /&gt;//|filter contains(`AppCode`,"FDP")&lt;BR /&gt;| filter isNotNull(tenant)&lt;BR /&gt;// |filter contains(`Wave`,"")&lt;BR /&gt;| summarize by:{AppCode, Environment, Tier,Wave, tenant, SRE}, {&lt;BR /&gt;Plan=countif(Status=="need onboard"),&lt;BR /&gt;Installed=countif(Status == "Dynatrace"),&lt;BR /&gt;total=count()&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;//| fieldsAdd Need_Onboard = (toDouble(Plan) / toDouble(total)) * 100&lt;BR /&gt;| fieldsAdd Onboard_status = (toDouble(Installed) / toDouble(total)) * 100&lt;BR /&gt;| fieldsAdd Status = if(Onboard_status == 100, "Done",&lt;BR /&gt;else: if(Onboard_status &amp;gt; 0, "In-Progress",&lt;BR /&gt;else: "Not_started"))&lt;BR /&gt;";&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jan 2026 20:11:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293415#M3069</guid>
      <dc:creator>joyce-regions</dc:creator>
      <dc:date>2026-01-21T20:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293423#M3070</link>
      <description>&lt;P&gt;Try this, I’ve only corrected the backticks/field reference to avoid parsing issues. Please let me know if it works on your side.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const query = `
load "/lookups/2026Wave1-4"
| fieldsAdd Servers=lower(Name)
| fieldsAdd tenant= if(IN(Environment,{"Production", "DisasterRecovery"}), "Production"
,else: if(In(Environment,{"Test","QualityAssurance","QAEnvironment"}),"Non-Prod"))
| filterout In(Environment,{"Production", "DisasterRecovery"})
|lookup [fetch dt.entity.host
  |fieldsAdd hostname = entity.name, hostGroupName, installerVersion
  | parse hostname, """LD:Host '.'"""
  | fields Host = lower(Host), entity.name, hostGroupName
], sourceField:Servers, lookupField:Host, prefix:"DT-"
| fieldsAdd Status = if(Servers == \`DT-Host\`, "Dynatrace", else:"need onboard")
| filter isNotNull(tenant)
| summarize by:{AppCode, Environment, Tier, Wave, tenant, SRE}, {
    Plan=countif(Status=="need onboard"),
    Installed=countif(Status == "Dynatrace"),
    total=count()
}
| fieldsAdd Onboard_status = (toDouble(Installed) / toDouble(total)) * 100
| fieldsAdd Status = if(Onboard_status == 100, "Done",
  else: if(Onboard_status &amp;gt; 0, "In-Progress",
  else: "Not_started"))
`.trim();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jan 2026 21:28:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293423#M3070</guid>
      <dc:creator>Mohamed_Hamdy</dc:creator>
      <dc:date>2026-01-21T21:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293435#M3072</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4007"&gt;@Mohamed_Hamdy&lt;/a&gt;&amp;nbsp;I have tried to use backslash to escape but the query still fails.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":frowning_face:"&gt;☹️&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jan 2026 01:43:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/293435#M3072</guid>
      <dc:creator>Hillman</dc:creator>
      <dc:date>2026-01-22T01:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to retrieve data from another tenant and display in chart through DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/296225#M3212</link>
      <description>&lt;P&gt;Any plans to make this as easy as it was in Gen 2 / Classic dashbaords?&amp;nbsp; this is not very user friendly for the end users in converting and creating!!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 14:12:45 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-retrieve-data-from-another-tenant-and-display-in-chart/m-p/296225#M3212</guid>
      <dc:creator>alicia_pepper</dc:creator>
      <dc:date>2026-03-16T14:12:45Z</dc:date>
    </item>
  </channel>
</rss>

