<?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 Re: How to format a DQL to accept a &amp;quot;*&amp;quot; wildcard? in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298405#M5775</link>
    <description>&lt;P&gt;Could you please provide your variable DQL?&lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2026 06:54:19 GMT</pubDate>
    <dc:creator>sia_h</dc:creator>
    <dc:date>2026-04-27T06:54:19Z</dc:date>
    <item>
      <title>How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298222#M5765</link>
      <description>&lt;P&gt;Hello,&amp;nbsp; I'm creating a Dashboard that shows Service and Endpoint metrics.&amp;nbsp; It first loads up every endpoint for a Service, but I have an $Endpoint variable that has a Default value of "*".&amp;nbsp; In my tile, it fails when an Endpoint isn't selected and it's using the Default value.&amp;nbsp; Could someone help me out on how I should structure the DQL to not fail on a wildcard, or if it's another route I should be taking.&lt;/P&gt;&lt;P&gt;Here's the DQL I am trying to use:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries { sum(dt.service.request.count), value.A = sum(dt.service.request.count, scalar: true) }, filter: { matchesValue(endpoint.name, $Endpoint) } &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:04:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298222#M5765</guid>
      <dc:creator>tdavison76</dc:creator>
      <dc:date>2026-04-23T13:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298223#M5766</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries { sum(dt.service.request.count), value.A = sum(dt.service.request.count, scalar: true) }, filter: { in(endpoint.name, $Endpoint) } &lt;/LI-CODE&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:33:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298223#M5766</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2026-04-23T13:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298229#M5767</link>
      <description>&lt;P&gt;Hello, thank you very much for the quick response.&amp;nbsp; I tried out the DQL but unfortunately, it doesn't return anything when the wildcard is used in the Variable.&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 14:27:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298229#M5767</guid>
      <dc:creator>tdavison76</dc:creator>
      <dc:date>2026-04-23T14:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298232#M5768</link>
      <description>&lt;P&gt;Dashboard tile&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries { 
sum(dt.service.request.count)
}, 
by: {
endpoint.name, 
dt.service.name
}
| filter matchesValue(dt.service.name, $Service)
| filter matchesValue(endpoint.name, $Endpoint)
| limit 5&lt;/LI-CODE&gt;&lt;P&gt;Service Variable&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;smartscapeNodes SERVICE
| filter isNotNull(name)
| fields name
| limit 10&lt;/LI-CODE&gt;&lt;P&gt;Endpoint Variable&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch spans
| filter matchesValue(dt.service.name, $Service)
| filter isNotNull(endpoint.name)
| fields endpoint.name
| limit 5&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 14:39:29 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298232#M5768</guid>
      <dc:creator>sia_h</dc:creator>
      <dc:date>2026-04-23T14:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298249#M5769</link>
      <description>&lt;P&gt;Hello, thank you for the details, still getting the same error with the Dashboard Tile example you provided:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A string containing only the wildcard'*' isn't allowed&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 16:19:06 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298249#M5769</guid>
      <dc:creator>tdavison76</dc:creator>
      <dc:date>2026-04-23T16:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298405#M5775</link>
      <description>&lt;P&gt;Could you please provide your variable DQL?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2026 06:54:19 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298405#M5775</guid>
      <dc:creator>sia_h</dc:creator>
      <dc:date>2026-04-27T06:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a DQL to accept a "*" wildcard?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298825#M5786</link>
      <description>&lt;P&gt;wildcards are only allowed at he beginning or end not in the middle thats probably why&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 18:46:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-format-a-DQL-to-accept-a-quot-quot-wildcard/m-p/298825#M5786</guid>
      <dc:creator>zietho</dc:creator>
      <dc:date>2026-04-30T18:46:25Z</dc:date>
    </item>
  </channel>
</rss>

