<?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: timeseries of service request count sum by host in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284887#M2527</link>
    <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/73678"&gt;@imrj99&lt;/a&gt;&amp;nbsp;spans are the way if you need to see it for some analysis. For dashboards, create a metric in OpenPipeline span pipeline to calculate it.&lt;/P&gt;</description>
    <pubDate>Wed, 27 Aug 2025 12:48:34 GMT</pubDate>
    <dc:creator>Julius_Loman</dc:creator>
    <dc:date>2025-08-27T12:48:34Z</dc:date>
    <item>
      <title>Timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284814#M2518</link>
      <description>&lt;P&gt;I would like to have a timeseries that includes the sum of total requests count by host, very similar to the post below, but w/o the service name, and the count summed up by hosts (i will pull in hosts from a mgmtzone variable)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.dynatrace.com/t5/DQL/Service-request-counts-per-host-server/td-p/281087" target="_blank" rel="noopener"&gt;https://community.dynatrace.com/t5/DQL/Service-request-counts-per-host-server/td-p/281087&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2025 15:34:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284814#M2518</guid>
      <dc:creator>imrj99</dc:creator>
      <dc:date>2025-08-28T15:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284817#M2519</link>
      <description>&lt;P&gt;You can't do this with the built-in service metrics (service metrics are already aggregated and do not contain host dimension), but you can grab it from spans:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch spans
| filter span.kind=="server"
| makeTimeseries count(), by:{host.name}&lt;/LI-CODE&gt;&lt;P&gt;or create your own metric in OpenPipeline for spans.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Just take into account that not all spans must be captured (sampling / adaptive traffic management), so you might see lower values than the actual count.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 18:05:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284817#M2519</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-26T18:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284830#M2520</link>
      <description>&lt;P&gt;so there is no way i could sum up the counts for each unique host? am afraid with spans am going to get a lot of other things than just specific service request counts&lt;/P&gt;&lt;P&gt;what am looking for is exactly like this screenshot below, but removing the service name and just sum the service request counts at the unique host level&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0-1752205858109.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29861i211328F732CB60E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0-1752205858109.png" alt="0-1752205858109.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 18:46:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284830#M2520</guid>
      <dc:creator>imrj99</dc:creator>
      <dc:date>2025-08-26T18:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284834#M2521</link>
      <description>&lt;P&gt;just add this at the end of this current DQL you have for this table&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;|summarize sum(Request Count), by:{Host Name}&lt;BR /&gt;&lt;BR /&gt;replacing the respective Request Count and Host Name fields by the one you have in your query.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 19:07:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284834#M2521</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2025-08-26T19:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284837#M2523</link>
      <description>&lt;P&gt;&lt;SPAN&gt;sweet deal, that worked perfectly! thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 19:21:07 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284837#M2523</guid>
      <dc:creator>imrj99</dc:creator>
      <dc:date>2025-08-26T19:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284841#M2524</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/73678"&gt;@imrj99&lt;/a&gt;&amp;nbsp;If you grabbed the DQL from the referenced thread, then this will work only for services which have one instance (one host).&amp;nbsp; There is no way of doing from dt.service.request.count metric for process groups which have more than one instance.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 20:54:22 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284841#M2524</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-26T20:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284886#M2526</link>
      <description>&lt;P&gt;yup you are correct indeed, I noticed that shortly after, only a few hosts are coming up on the query and its for exactly the reason you mentioned. so spans must be the only way then...&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 12:13:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284886#M2526</guid>
      <dc:creator>imrj99</dc:creator>
      <dc:date>2025-08-27T12:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: timeseries of service request count sum by host</title>
      <link>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284887#M2527</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/73678"&gt;@imrj99&lt;/a&gt;&amp;nbsp;spans are the way if you need to see it for some analysis. For dashboards, create a metric in OpenPipeline span pipeline to calculate it.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 12:48:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Timeseries-of-service-request-count-sum-by-host/m-p/284887#M2527</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-27T12:48:34Z</dc:date>
    </item>
  </channel>
</rss>

