<?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: DQL Entity Label in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217066#M122</link>
    <description>&lt;P&gt;I have forgotten to add the function name in the group by, so just add it there and let me know if this is what you are looking for.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2023 06:30:14 GMT</pubDate>
    <dc:creator>sinisa_zubic</dc:creator>
    <dc:date>2023-07-06T06:30:14Z</dc:date>
    <item>
      <title>DQL Entity Label</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217044#M119</link>
      <description>&lt;DIV class="p-rich_text_section"&gt;Hi team, I've created a couple posts on #help-dashboards-app and #help-dql but haven't received a response besides a recommendation to post my question here. My customer is currently trying to add a grail query to a dashboard for some information on lambda functions. The query being used is:&lt;/DIV&gt;
&lt;PRE class="c-mrkdwn__pre" data-stringify-type="pre"&gt;timeseries series=avg(cloud.aws.lambda.concurrentExecutionsByAccountIdFunctionNameRegion),by:{aws.region,functionname,aws.account.id}
| filter aws.account.id == "385888483640"
| filter functionname == "eca-permission-translation-service-v2-prod-main" or functionname == "eca-permission-translation-service-v2-prod-userProfile"&lt;/PRE&gt;
&lt;DIV class="p-rich_text_section"&gt;and the output is as seen below. In the output chart, the label for the function includes aws.region, functionname, and aws.account.id. Is there a way to make this just the funcitonname value? For example, 'eca-permission-translation-service-v2-prod-main' instead of '&lt;SPAN&gt;us-east-1•eca-permission-translation-service-v2-prod-main•385888483640•series'.&lt;/SPAN&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lambda function query 2.jpg" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/12696i40D5AC587CFECACB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lambda function query 2.jpg" alt="Lambda function query 2.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 05 Jul 2023 21:38:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217044#M119</guid>
      <dc:creator>TylerBrush</dc:creator>
      <dc:date>2023-07-05T21:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: DQL Entity Label</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217046#M120</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/55491"&gt;@TylerBrush&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are different ways of achieving this, but I guess the easiest would be this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;timeseries series=avg(cloud.aws.lambda.concurrentExecutionsByAccountIdFunctionNameRegion),filter:{
  aws.account.id == "385888483640" and (functionname == "eca-permission-translation-service-v2-prod-main" or functionname == "eca-permission-translation-service-v2-prod-userProfile")
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;BR /&gt;Sini&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 21:47:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217046#M120</guid>
      <dc:creator>sinisa_zubic</dc:creator>
      <dc:date>2023-07-05T21:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: DQL Entity Label</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217048#M121</link>
      <description>&lt;P&gt;Hi Sinisa,&lt;BR /&gt;&lt;BR /&gt;This query groups the two functions together under one label "series"&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lambda function query 3.jpg" style="width: 472px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/12697iEFFBA8060E56AB24/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lambda function query 3.jpg" alt="Lambda function query 3.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;My assumption is that you can't change this without changing the 'by:{...}' values?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 21:59:24 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217048#M121</guid>
      <dc:creator>TylerBrush</dc:creator>
      <dc:date>2023-07-05T21:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: DQL Entity Label</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217066#M122</link>
      <description>&lt;P&gt;I have forgotten to add the function name in the group by, so just add it there and let me know if this is what you are looking for.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 06:30:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217066#M122</guid>
      <dc:creator>sinisa_zubic</dc:creator>
      <dc:date>2023-07-06T06:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: DQL Entity Label</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217117#M128</link>
      <description>&lt;P&gt;This works great, thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 13:20:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-Entity-Label/m-p/217117#M128</guid>
      <dc:creator>TylerBrush</dc:creator>
      <dc:date>2023-07-06T13:20:03Z</dc:date>
    </item>
  </channel>
</rss>

