<?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 Low Traffic Alert in Real User Monitoring</title>
    <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283019#M7031</link>
    <description>&lt;P&gt;Have a service/request that team wants an alert if we don't see any traffic for it in 24 hours.&amp;nbsp; It's little volume for the Anomaly Detection in Davis.&amp;nbsp; Custom Alert only allows for traffic to be evaluated every 60 mins.&amp;nbsp; Does anyone know a way this can be accomplished?&amp;nbsp; &amp;nbsp;Seems like something that we should be able to accomplish.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Aug 2025 07:14:51 GMT</pubDate>
    <dc:creator>HeyEngineer</dc:creator>
    <dc:date>2025-08-05T07:14:51Z</dc:date>
    <item>
      <title>Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283019#M7031</link>
      <description>&lt;P&gt;Have a service/request that team wants an alert if we don't see any traffic for it in 24 hours.&amp;nbsp; It's little volume for the Anomaly Detection in Davis.&amp;nbsp; Custom Alert only allows for traffic to be evaluated every 60 mins.&amp;nbsp; Does anyone know a way this can be accomplished?&amp;nbsp; &amp;nbsp;Seems like something that we should be able to accomplish.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 07:14:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283019#M7031</guid>
      <dc:creator>HeyEngineer</dc:creator>
      <dc:date>2025-08-05T07:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283043#M7032</link>
      <description>&lt;P class=""&gt;Dynatrace doesn’t natively support a 24-hour no-traffic alert, as the missing data alert only works with a maximum sliding window of 60 minutes. This can be worked around by combining hourly alerts with external logic (example by workflow or script) to detect the absence of data over a full day.&lt;/P&gt;&lt;P class=""&gt;Radek&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 05:13:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283043#M7032</guid>
      <dc:creator>radek_jasinski</dc:creator>
      <dc:date>2025-08-05T05:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283048#M7033</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/73347"&gt;@HeyEngineer&lt;/a&gt;&amp;nbsp;Try with the below DQL in detector and see if it helps . For the threshold set to alert if metric is below "1".&amp;nbsp; I haven't tired it myself , but I guess should work&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries { request_count= sum(dt.service.request.count), total_request_count = sum(dt.service.request.count, scalar: true) },
from: now() - 24h,interval:1m, by: { dt.entity.service, endpoint.name }, 
filter: { matchesValue(entityAttr(dt.entity.service, "entity.name"), "SERVICE_XXXX") AND matchesValue(endpoint.name, "endponit_XXXX") }&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="p_devulapalli_0-1754372822742.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29378i65D433F3B75BDA62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="p_devulapalli_0-1754372822742.png" alt="p_devulapalli_0-1754372822742.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p_devulapalli_1-1754373159375.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29379iD8F9141A07DB9754/image-size/medium?v=v2&amp;amp;px=400" role="button" title="p_devulapalli_1-1754373159375.png" alt="p_devulapalli_1-1754373159375.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 05:52:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283048#M7033</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-08-05T05:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283050#M7034</link>
      <description>&lt;P&gt;In case you're using Managed and DQL is not an option, you can also query the data via API like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://&amp;lt;your_dynatrace&amp;gt;/api/v2/metrics/query?metricSelector=&amp;lt;your_selector&amp;gt;&amp;amp;resolution=inf&amp;amp;from=now-1d&amp;amp;to=now&amp;amp;Api-Token=&amp;lt;your_token&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;So the above example queries a single value for the time period of last 24 hours. How to implement this in practise:&lt;/P&gt;&lt;P&gt;1. First test around in Data Explorer to get the selector you want, use the time frame of 24 hours for this&lt;/P&gt;&lt;P&gt;2. Modify the above API query with your selector and other parameters (Dynatrace endpoint,&amp;nbsp;API token with Read Metrics rights)&lt;/P&gt;&lt;P&gt;3. Configure a synthetic monitor which executes that API query and parses the returned value&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 07:07:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283050#M7034</guid>
      <dc:creator>kalle_lahtinen</dc:creator>
      <dc:date>2025-08-05T07:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283301#M7037</link>
      <description>&lt;P&gt;Thanks for reply. Here's where I am.&amp;nbsp; &amp;nbsp;Need below to return a zero for the total_request_count when the ORs statement is not found.&amp;nbsp; Been trying to use the nonempty(request_count, 0) however, getting stuck.&amp;nbsp; End goal is to then place this in workbook and run it once a day and alert if any of ORs return zero.&amp;nbsp; Can you help?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;timeseries { request_count= sum(dt.service.request.count), total_request_count = sum(dt.service.request.count, scalar: true) },&lt;BR /&gt;from: now() -24h,interval:1m, by: { dt.entity.service, endpoint.name},&amp;nbsp;&lt;BR /&gt;filter: {matchesValue(entityAttr(dt.entity.service, "entity.name"), "entity.name") AND&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; matchesValue(endpoint.name, "endpoint.nameA") &amp;nbsp;OR matchesValue(endpoint.name, "endpoint.nameB")&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;OR matchesValue(endpoint.name, "endpoint.nameC") &amp;nbsp;OR matchesValue(endpoint.name, "endpoint.nameD")&lt;BR /&gt;)},&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 15:07:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283301#M7037</guid>
      <dc:creator>HeyEngineer</dc:creator>
      <dc:date>2025-08-07T15:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283325#M7038</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/73347"&gt;@HeyEngineer&lt;/a&gt;&amp;nbsp;This is a tricky one, I've tried multiple scenarios but could not get it working correctly . Will let you know if something works for me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 01:16:07 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283325#M7038</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-08-08T01:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Low Traffic Alert</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283435#M7040</link>
      <description>&lt;P&gt;Could you please provide an example of how I can use query this in a workflow?&amp;nbsp; Also unable to get a zero return if data is not found. Just doesn't return at all.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;//need to return zero for total_request_count if OR match is not found&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;//FJT&lt;/DIV&gt;&lt;DIV&gt;timeseries {request_count= sum(dt.service.request.count), total_request_count = sum(dt.service.request.count, scalar: true)},&lt;/DIV&gt;&lt;DIV&gt;from: now() -24h,interval:1m, by: { dt.entity.service, endpoint.name},&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;filter: {matchesValue(entityAttr(dt.entity.service, "entity.name"), "EntityName") AND&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; matchesValue(endpoint.name, "EndPointOne")&amp;nbsp; OR matchesValue(endpoint.name, "EndPointTwo")}&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; //nonempty:true&lt;/DIV&gt;</description>
      <pubDate>Sat, 09 Aug 2025 15:08:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Low-Traffic-Alert/m-p/283435#M7040</guid>
      <dc:creator>HeyEngineer</dc:creator>
      <dc:date>2025-08-09T15:08:44Z</dc:date>
    </item>
  </channel>
</rss>

