<?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 query for summarize count ofthis endpoint in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/dql-query-for-summarize-count-ofthis-endpoint/m-p/295479#M3183</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Total number of calls over the selected time range (sum of all minutes)&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries calls_per_min = sum(dt.service.request.count, rate:1m),
  by:{endpoint.name, dt.entity.service, dt.host_group.id},
  interval: 1m
| fieldsAdd service_name = entityName(dt.entity.service)
| fieldsAdd endpoint_key = concat(service_name, " :: ", endpoint.name, " :: ", dt.host_group.id)
| filter in(endpoint_key,
  "CustomerFrontendREST :: Images :: et-large",
  "JourneyService :: findJourneys :: et-large"
)
| fieldsAdd total_calls_row = arraySum(calls_per_min)
| summarize total_calls = sum(total_calls_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="comm1.jpg" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/32170i35210DD56955C936/image-size/large?v=v2&amp;amp;px=999" role="button" title="comm1.jpg" alt="comm1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Current total (last datapoint),&amp;nbsp; combined calls/min at the end of the chart&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries calls_per_min = sum(dt.service.request.count, rate:1m),
  by:{endpoint.name, dt.entity.service, dt.host_group.id},
  interval: 1m
| fieldsAdd service_name = entityName(dt.entity.service)
| fieldsAdd endpoint_key = concat(service_name, " :: ", endpoint.name, " :: ", dt.host_group.id)
| filter in(endpoint_key,
  "CustomerFrontendREST :: Images :: et-large",
  "JourneyService :: findJourneys :: et-large"
)
| fieldsAdd last_cpm_row = arrayLast(calls_per_min)
| summarize last_cpm_total = sum(last_cpm_row)&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="comm2.jpg" style="width: 963px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/32171iC21A105FEA8D7C44/image-size/large?v=v2&amp;amp;px=999" role="button" title="comm2.jpg" alt="comm2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Mar 2026 10:59:34 GMT</pubDate>
    <dc:creator>t_pawlak</dc:creator>
    <dc:date>2026-03-02T10:59:34Z</dc:date>
    <item>
      <title>dql query for summarize count ofthis endpoint</title>
      <link>https://community.dynatrace.com/t5/DQL/dql-query-for-summarize-count-ofthis-endpoint/m-p/295472#M3182</link>
      <description>&lt;P&gt;hi, i need the count of all value of this 3 endpoint.&lt;BR /&gt;How can i do this?&lt;BR /&gt;&lt;BR /&gt;timeseries calls_per_min = sum(dt.service.request.count, rate:1m), by:{endpoint.name, dt.entity.service, dt.host_group.id}, interval: 1m&lt;BR /&gt;| fieldsAdd service_name = entityName(dt.entity.service)&lt;BR /&gt;| fieldsAdd endpoint_key = concat(service_name, " :: ", endpoint.name, " :: ", dt.host_group.id)&lt;BR /&gt;| filter in(endpoint_key,&lt;BR /&gt;"SportSaleController :: wagerService :: bet-booker",&lt;BR /&gt;"SportSaleController :: wagerService :: bpay",&lt;BR /&gt;"SportSaleController :: wagerService :: ssbt"&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;| fieldsAdd entityName(dt.entity.service)&lt;BR /&gt;| fieldsAdd lastvalue = arrayLast(calls_per_min)&lt;BR /&gt;| fieldsAdd string = " VENDITA "&lt;BR /&gt;//| fieldsAdd concat(string, endpoint.name, dt.entity.service.name, dt.host_group.id)&lt;BR /&gt;| fieldsAdd concat(string)&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 06:48:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/dql-query-for-summarize-count-ofthis-endpoint/m-p/295472#M3182</guid>
      <dc:creator>gasperetta</dc:creator>
      <dc:date>2026-03-03T06:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: dql query for summarize count ofthis endpoint</title>
      <link>https://community.dynatrace.com/t5/DQL/dql-query-for-summarize-count-ofthis-endpoint/m-p/295479#M3183</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Total number of calls over the selected time range (sum of all minutes)&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries calls_per_min = sum(dt.service.request.count, rate:1m),
  by:{endpoint.name, dt.entity.service, dt.host_group.id},
  interval: 1m
| fieldsAdd service_name = entityName(dt.entity.service)
| fieldsAdd endpoint_key = concat(service_name, " :: ", endpoint.name, " :: ", dt.host_group.id)
| filter in(endpoint_key,
  "CustomerFrontendREST :: Images :: et-large",
  "JourneyService :: findJourneys :: et-large"
)
| fieldsAdd total_calls_row = arraySum(calls_per_min)
| summarize total_calls = sum(total_calls_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="comm1.jpg" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/32170i35210DD56955C936/image-size/large?v=v2&amp;amp;px=999" role="button" title="comm1.jpg" alt="comm1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Current total (last datapoint),&amp;nbsp; combined calls/min at the end of the chart&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries calls_per_min = sum(dt.service.request.count, rate:1m),
  by:{endpoint.name, dt.entity.service, dt.host_group.id},
  interval: 1m
| fieldsAdd service_name = entityName(dt.entity.service)
| fieldsAdd endpoint_key = concat(service_name, " :: ", endpoint.name, " :: ", dt.host_group.id)
| filter in(endpoint_key,
  "CustomerFrontendREST :: Images :: et-large",
  "JourneyService :: findJourneys :: et-large"
)
| fieldsAdd last_cpm_row = arrayLast(calls_per_min)
| summarize last_cpm_total = sum(last_cpm_row)&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="comm2.jpg" style="width: 963px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/32171iC21A105FEA8D7C44/image-size/large?v=v2&amp;amp;px=999" role="button" title="comm2.jpg" alt="comm2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2026 10:59:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/dql-query-for-summarize-count-ofthis-endpoint/m-p/295479#M3183</guid>
      <dc:creator>t_pawlak</dc:creator>
      <dc:date>2026-03-02T10:59:34Z</dc:date>
    </item>
  </channel>
</rss>

