<?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 for dependency analysis in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267228#M1598</link>
    <description>&lt;P&gt;You may check this thread with some hints and query examples:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.dynatrace.com/t5/DQL/DQL-on-spans-variant-for-called-by-analysis/m-p/248551/highlight/true#M994" target="_blank"&gt;https://community.dynatrace.com/t5/DQL/DQL-on-spans-variant-for-called-by-analysis/m-p/248551/highlight/true#M994&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jan 2025 13:08:43 GMT</pubDate>
    <dc:creator>krzysztof_hoja</dc:creator>
    <dc:date>2025-01-13T13:08:43Z</dc:date>
    <item>
      <title>Perform Dependency Analysis Using DQL for Service Mapping</title>
      <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267085#M1592</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I need a DQL to answer the following questions:&lt;/P&gt;
&lt;P&gt;- What is the response time, failure count and throughput of &lt;STRONG&gt;Service B&lt;/STRONG&gt; that is called by &lt;STRONG&gt;Service A&lt;/STRONG&gt;. The result need to be only for the calls that Service A make to Service B.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I created a DQL that show the services dependency. But could not get the metrics I need.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;fetch dt.entity.service
| expand calledby_service=called_by[dt.entity.service]
| expand calls_service=calls[dt.entity.service]
| fieldsAdd service_type = serviceType, clusteredBy = clustered_by[dt.entity.kubernetes_cluster][0], belongsToNamespace = belongs_to[dt.entity.cloud_application_namespace][0], belongsToApp = belongs_to[dt.entity.cloud_application][0],instantiates= instantiates[dt.entity.service_instance][0]  
| lookup [fetch dt.entity.service], sourceField:calledby_service, lookupField:id, fields:{Incoming=entity.name}
| lookup [fetch dt.entity.service], sourceField:calls_service, lookupField:id, fields:{Outgoing=entity.name}
| lookup [fetch dt.entity.kubernetes_cluster], sourceField:clusteredBy, lookupField:id, fields:{Cluster = entity.name}
| lookup [fetch dt.entity.cloud_application_namespace], sourceField:belongsToNamespace, lookupField:id, fields:{Namespace = entity.name}
| fields service_type, service=entity.name, Incoming ,Outgoing, Namespace, Cluster
| summarize count(), by:{service,Incoming,Outgoing}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 12:46:55 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267085#M1592</guid>
      <dc:creator>m_zol</dc:creator>
      <dc:date>2025-12-18T12:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: DQL for dependency analysis</title>
      <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267117#M1593</link>
      <description>&lt;P&gt;Unfortunately there is no such metric as far as I know. You can find the relations as you did but can't filter out a certain service metric based on called/caller service.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 15:38:40 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267117#M1593</guid>
      <dc:creator>paolo_fumanelli</dc:creator>
      <dc:date>2025-01-10T15:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: DQL for dependency analysis</title>
      <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267121#M1594</link>
      <description>&lt;P&gt;Agree you cannot do this in the current state. Although we have a preview of Traces on Grail, in which you'd be able to query the traces/spans that are calling Service B from Service A and can calculate your metrics based on that. We can't wait for Traces on Grail to be fully released!&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 16:01:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267121#M1594</guid>
      <dc:creator>StrangerThing</dc:creator>
      <dc:date>2025-01-10T16:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: DQL for dependency analysis</title>
      <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267145#M1595</link>
      <description>&lt;P&gt;We do have access to Traces on Grail in our QA environment. I'm trying a query to get those data but no success yet.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 21:25:40 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267145#M1595</guid>
      <dc:creator>m_zol</dc:creator>
      <dc:date>2025-01-10T21:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: DQL for dependency analysis</title>
      <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267209#M1596</link>
      <description>&lt;P&gt;I also tried on playground but couldn't find a solution yet.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 10:26:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267209#M1596</guid>
      <dc:creator>paolo_fumanelli</dc:creator>
      <dc:date>2025-01-13T10:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: DQL for dependency analysis</title>
      <link>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267228#M1598</link>
      <description>&lt;P&gt;You may check this thread with some hints and query examples:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.dynatrace.com/t5/DQL/DQL-on-spans-variant-for-called-by-analysis/m-p/248551/highlight/true#M994" target="_blank"&gt;https://community.dynatrace.com/t5/DQL/DQL-on-spans-variant-for-called-by-analysis/m-p/248551/highlight/true#M994&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 13:08:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Perform-Dependency-Analysis-Using-DQL-for-Service-Mapping/m-p/267228#M1598</guid>
      <dc:creator>krzysztof_hoja</dc:creator>
      <dc:date>2025-01-13T13:08:43Z</dc:date>
    </item>
  </channel>
</rss>

