<?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: Question about differences in Azure Service Bus (What is shows) and What Dynatrace see. in Cloud platforms</title>
    <link>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271643#M1968</link>
    <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/29954"&gt;@runatyr&lt;/a&gt;&amp;nbsp;I needed something similar for Event Hubs.&amp;nbsp; Not all metrics are transferred via the integration with Azure.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use the following DQL to produce "Lag".&amp;nbsp; See code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries { 
      sumOutMsgs=sum(dt.cloud.azure.event_hub.traffic.msg_out),
      sumInMsgs=sum(dt.cloud.azure.event_hub.traffic.msg_in) },
  by: { azure.location , azure.event_hub_namespace.name, azure.resource.name}
| fieldsAdd TotMsgsOut = arraysum(sumOutMsgs)
| fieldsAdd TotMsgsIn = arraySum(sumInMsgs)
| fieldsAdd TotMsgsDiff = TotMsgsIn - TotMsgsOut
| fields  Location=azure.location, Namespace=azure.event_hub_namespace.name, EventHubs = azure.resource.name, TotMsgsDiff
| filter TotMsgsDiff &amp;gt; 0
| sort TotMsgsDiff desc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Mar 2025 18:24:46 GMT</pubDate>
    <dc:creator>kayjayeff1</dc:creator>
    <dc:date>2025-03-05T18:24:46Z</dc:date>
    <item>
      <title>Question about differences in Azure Service Bus (What is shows) and What Dynatrace see.</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271642#M1967</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;We have recently started using Azure Service Busses.&lt;/P&gt;&lt;P&gt;When I look at the options for metrics in Azure directly. I have a larger list than is presented in Dynatrace?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So for example... "Replication Lag Count"&lt;/STRONG&gt; shows up in Azure and not in Dynatrace Azure for Service Buss.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How do I have Dynatrace display the same options?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In Azure....&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Azure_List.PNG" style="width: 548px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/26804iC7AE5F63186952F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Azure_List.PNG" alt="Azure_List.PNG" /&gt;&lt;/span&gt;&lt;/P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In Dynatrace&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Dyantrace_list.PNG" style="width: 344px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/26805iC056A66F276AD76B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Dyantrace_list.PNG" alt="Dyantrace_list.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 18:16:22 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271642#M1967</guid>
      <dc:creator>runatyr</dc:creator>
      <dc:date>2025-03-05T18:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Question about differences in Azure Service Bus (What is shows) and What Dynatrace see.</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271643#M1968</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/29954"&gt;@runatyr&lt;/a&gt;&amp;nbsp;I needed something similar for Event Hubs.&amp;nbsp; Not all metrics are transferred via the integration with Azure.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use the following DQL to produce "Lag".&amp;nbsp; See code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries { 
      sumOutMsgs=sum(dt.cloud.azure.event_hub.traffic.msg_out),
      sumInMsgs=sum(dt.cloud.azure.event_hub.traffic.msg_in) },
  by: { azure.location , azure.event_hub_namespace.name, azure.resource.name}
| fieldsAdd TotMsgsOut = arraysum(sumOutMsgs)
| fieldsAdd TotMsgsIn = arraySum(sumInMsgs)
| fieldsAdd TotMsgsDiff = TotMsgsIn - TotMsgsOut
| fields  Location=azure.location, Namespace=azure.event_hub_namespace.name, EventHubs = azure.resource.name, TotMsgsDiff
| filter TotMsgsDiff &amp;gt; 0
| sort TotMsgsDiff desc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 18:24:46 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271643#M1968</guid>
      <dc:creator>kayjayeff1</dc:creator>
      <dc:date>2025-03-05T18:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Question about differences in Azure Service Bus (What is shows) and What Dynatrace see.</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271849#M1969</link>
      <description>&lt;P&gt;Thank you kayjayeff1.&lt;/P&gt;&lt;P&gt;So..help me understand.... will DQL be able to pull any of the metrics not automatically transferred via the integration with Azure?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2025 12:54:29 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271849#M1969</guid>
      <dc:creator>runatyr</dc:creator>
      <dc:date>2025-03-07T12:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Question about differences in Azure Service Bus (What is shows) and What Dynatrace see.</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271851#M1970</link>
      <description>&lt;P&gt;No.&amp;nbsp; In my use case, I wanted to be able to have a "lag" metrics in Dynatrace.&amp;nbsp; This was not coming from the integration for Event Hubs, so I created my own version of "lag" with DQL.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe there are ways you could poll Azure Monitor to bring additional metrics into Dynatrace, but I have not explored that at all.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2025 12:57:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Question-about-differences-in-Azure-Service-Bus-What-is-shows/m-p/271851#M1970</guid>
      <dc:creator>kayjayeff1</dc:creator>
      <dc:date>2025-03-07T12:57:09Z</dc:date>
    </item>
  </channel>
</rss>

