<?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>article Understanding and troubleshooting Dynatrace extension resource limits in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/ta-p/293224</link>
    <description>&lt;H1&gt;&amp;nbsp;&lt;/H1&gt;
&lt;DIV class="article-content"&gt;
&lt;H2&gt;Summary&lt;/H2&gt;
&lt;P&gt;Dynatrace extensions can hit CPU or memory soft or hard limits enforced by the &lt;STRONG&gt;Extension Execution Controller (EEC)&lt;/STRONG&gt;. When this happens, tasks may be rejected or stopped, and monitoring configurations may fail to assign. This article explains how to diagnose, troubleshoot, and resolve these issues.&lt;/P&gt;
&lt;H2&gt;Problem description&lt;/H2&gt;
&lt;P&gt;Extensions running on an &lt;STRONG&gt;ActiveGate&lt;/STRONG&gt; or &lt;STRONG&gt;OneAgent&lt;/STRONG&gt; may exceed CPU or memory limits. When these limits are reached:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Extensions may fail to start or stop running.&lt;/LI&gt;
&lt;LI&gt;Incoming tasks may be rejected.&lt;/LI&gt;
&lt;LI&gt;Monitoring configurations may remain in Pending or Error state.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Common error messages include:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;EM&gt;High system resources consumption detected for datasources (soft limit)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;Rejecting configuration… Reason: soft limit reached&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;Hard limit reached, stopping extension tasks&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;Failed to assign monitoring configuration due to resource limits&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These messages typically also include details explaining which limit was exceeded and by what margin.&lt;/P&gt;
&lt;P&gt;Soft limits reject new tasks once usage exceeds the threshold. Hard limits stop tasks until consumption returns below the threshold. For background on limits and performance profiles, read &lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/concepts" target="_blank" rel="noopener"&gt;Extension limits and performance profiles documentation&lt;/A&gt;.&lt;/P&gt;
&lt;H2&gt;Troubleshooting steps&lt;/H2&gt;
&lt;H3&gt;Investigation steps&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;Open the Extensions app in your Dynatrace environment.&lt;/LI&gt;
&lt;LI&gt;Locate the affected extension.&lt;/LI&gt;
&lt;LI&gt;Check for configurations in Pending or Error state.&lt;/LI&gt;
&lt;LI&gt;Select the error entry to view logs.&lt;/LI&gt;
&lt;LI&gt;Inspect logs for limit breaches. Look for messages such as:
&lt;UL&gt;
&lt;LI&gt;&lt;EM&gt;soft limit reached&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;hard limit reached&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;High memory usage detected&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;If logs are inconclusive, collect a Support Archive. This bundles logs and configuration details for troubleshooting.&lt;BR /&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/Collect-a-Support-Archive-for-nbsp-Troubleshooting-issues-in/ta-p/252022" target="_blank" rel="noopener"&gt;How to collect a Support Archive&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Log locations&lt;/H2&gt;
&lt;P&gt;The EEC writes limit-related errors on the host running the extension.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ActiveGate&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Linux:   /var/lib/dynatrace/remotepluginmodule/agent/log/
Windows: C:\ProgramData\dynatrace\remotepluginmodule\agent\log\
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;OneAgent&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Linux:   /var/log/dynatrace/remotepluginmodule/agent/log/
Windows: C:\ProgramData\dynatrace\remotepluginmodule\agent\log\
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H3&gt;What to look for&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Python-based extensions&lt;/STRONG&gt;
&lt;UL&gt;
&lt;LI&gt;python*.log: CPU/memory messages (soft limit reached, hard limit reached)&lt;/LI&gt;
&lt;LI&gt;ruxitagent_extensionsmodule_XXX.log: lifecycle events, enforcement&lt;/LI&gt;
&lt;LI&gt;EEC controller log: enforcement details&lt;/LI&gt;
&lt;LI&gt;*.out and *.err: standard output and error&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Non-Python datasources (SNMP, WMI, JMX, SQL)&lt;/STRONG&gt;
&lt;UL&gt;
&lt;LI&gt;Datasource-specific logs: runtime activity&lt;/LI&gt;
&lt;LI&gt;remotepluginmodule.log: failures and enforcement&lt;/LI&gt;
&lt;LI&gt;EEC controller log: enforcement decisions&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Resolution&lt;/H2&gt;
&lt;H3&gt;Dynatrace Managed&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Use a dedicated ActiveGate for extensions (recommended best practice)&lt;/STRONG&gt;&lt;BR /&gt;A dedicated ActiveGate isolates extension workloads from ingestion, synthetic, and routing modules and improves stability under load.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/advanced-configuration/dedicated-performance-profile" target="_blank" rel="noopener"&gt;Dedicated performance profile documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Switch to the High Limits performance profile (temporary mitigation)&lt;/STRONG&gt;&lt;BR /&gt;Temporarily increase CPU and memory headroom for extension execution by selecting High Limits under:&lt;BR /&gt;&lt;CODE&gt;Settings → Monitoring → Monitored technologies → [Your extension] → Performance profile&lt;/CODE&gt;&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/concepts" target="_blank" rel="noopener"&gt;Performance profile documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Increase memory or CPU assigned to the ActiveGate&lt;/STRONG&gt;&lt;BR /&gt;If the host regularly approaches resource limits, allocate additional CPU or memory to the ActiveGate.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/configuration/configure-activegate" target="_blank" rel="noopener"&gt;ActiveGate configuration documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Add another ActiveGate to the ActiveGate group where the monitoring configuration is assigned&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/activegate-group" target="_blank" rel="noopener"&gt;ActiveGate group documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;Dynatrace SaaS&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Use an ActiveGate configured exclusively for extensions and assign it to a specific ActiveGate group&lt;/STRONG&gt;&lt;BR /&gt;Isolation is recommended in SaaS environments to ensure predictable load distribution and failover.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/activegate-group" target="_blank" rel="noopener"&gt; ActiveGate group documentation &lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Enable dedicated performance mode&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/advanced-configuration/dedicated-performance-profile" target="_blank" rel="noopener"&gt;Dedicated performance profile documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Increase limits or switch to High Limits&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/concepts" target="_blank" rel="noopener"&gt;Performance profile documentation&lt;/A&gt; and &lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/extension-limits" target="_blank" rel="noopener"&gt;Extension limits documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Scale horizontally by adding additional ActiveGates to the same ActiveGate group&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/activegate-group" target="_blank" rel="noopener"&gt;ActiveGate group documentation&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Best practice summary&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Use an ActiveGate configured exclusively for extensions and assign it to a specific ActiveGate group&lt;/STRONG&gt;&lt;BR /&gt;This ensures isolation of extension workloads, reducing resource contention and improving stability in SaaS environments.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/activegate-group" target="_blank" rel="noopener"&gt; ActiveGate group documentation &lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Use High Limits only as a temporary workaround&lt;/STRONG&gt;&lt;BR /&gt;Increasing limits can prevent short-term disruptions, but it may lead to resource exhaustion if used permanently. Always plan for scaling instead.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/extension-limits" target="_blank" rel="noopener"&gt; Extension limits documentation &lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Monitor logs for early warnings such as “High system resources consumption detected”&lt;/STRONG&gt;&lt;BR /&gt;Proactive log monitoring helps identify performance issues before they impact extension execution or ActiveGate stability.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/troubleshoot" target="_blank" rel="noopener"&gt; Extension troubleshooting and logs &lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Add more ActiveGates to distribute extension workloads as environments grow&lt;/STRONG&gt;&lt;BR /&gt;Scaling out ActiveGates prevents overload and ensures predictable performance and failover capabilities.&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/installation" target="_blank" rel="noopener"&gt; ActiveGate installation and scaling guide &lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;Configuration paths&lt;/H2&gt;
&lt;P&gt;&lt;STRONG&gt;Windows&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;C:\ProgramData\dynatrace\remotepluginmodule\agent\conf\extensionsuser.conf
C:\Program Files\dynatrace\remotepluginmodule\agent\conf\launcheruserconfig.conf
C:\Program Files\dynatrace\remotepluginmodule\agent\conf\custom.properties
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Linux&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;/var/lib/dynatrace/remotepluginmodule/agent/conf/extensionsuser.conf
/var/lib/dynatrace/remotepluginmodule/agent/conf/launcheruserconfig.conf
/var/lib/dynatrace/remotepluginmodule/agent/conf/custom.properties
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For details on overriding limits, read the&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/ingest-from/extensions/advanced-configuration/eec-custom-configuration" target="_blank" rel="noopener"&gt;EEC custom configuration documentation&lt;/A&gt;.&lt;/P&gt;
&lt;H2&gt;What’s next&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Open a support ticket if this article did not resolve your issue. Include:
&lt;UL&gt;
&lt;LI&gt;Link to the affected extension&lt;/LI&gt;
&lt;LI&gt;Link to the failing monitoring configuration&lt;/LI&gt;
&lt;LI&gt;Support Archive&lt;/LI&gt;
&lt;LI&gt;Screenshots of errors&lt;/LI&gt;
&lt;LI&gt;Relevant log entries&lt;/LI&gt;
&lt;LI&gt;Recent configuration changes&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Suggest a product idea: Describe your use case, limitations, expected outcome, and business impact.&lt;/LI&gt;
&lt;LI&gt;Additional resources:
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/SNMP-based-Extensions-Troubleshooting-Guide/ta-p/275088" target="_blank" rel="noopener"&gt;SNMP-based Extensions Troubleshooting Guide&lt;/A&gt; – Covers timeouts, authentication issues, and resource limits.&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/SQL-Extensions-Troubleshooting-Guide/ta-p/281473" target="_blank" rel="noopener"&gt;SQL Extensions Troubleshooting Guide&lt;/A&gt; – Explains connectivity diagnostics and missing metrics.&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/Database-extension-troubleshooting/ta-p/267257" target="_blank" rel="noopener"&gt;Database extension troubleshooting&lt;/A&gt; – Provides steps for driver configuration and unreachable hosts.&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/How-to-use-a-Support-Archive-to-Troubleshoot-Extensions/ta-p/287635" target="_blank" rel="noopener"&gt;How to use a Support Archive to troubleshoot extensions&lt;/A&gt; – Shows how to collect and interpret Support Archives.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;</description>
    <pubDate>Thu, 09 Apr 2026 11:31:13 GMT</pubDate>
    <dc:creator>MartinVolb</dc:creator>
    <dc:date>2026-04-09T11:31:13Z</dc:date>
    <item>
      <title>Understanding and troubleshooting Dynatrace extension resource limits</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/ta-p/293224</link>
      <description>&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="2"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;P&gt;*&lt;EM&gt;Use a table of contents for longer articles.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;H1&gt;Summary&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Short description of which part of the Dynatrace platform the article refers to and what kind of problem it will help resolve / task it will describe.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Problem&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Provide a precise description of the problem / task to be described.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Troubleshooting steps&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This section can be omitted.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Resolution&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This section can be omitted for ticket‑creation articles.&lt;/EM&gt;&lt;/P&gt;
&lt;H1&gt;What's next&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section.&lt;/EM&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2026 11:31:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/ta-p/293224</guid>
      <dc:creator>MartinVolb</dc:creator>
      <dc:date>2026-04-09T11:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding and troubleshooting Dynatrace extension resource limits</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/293717#M1053</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@9BD876A77FEF3D5EF4BC972CF8A97CB1/images/emoticons/take_my_money.png" alt=":take_my_money:" title=":take_my_money:" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 16:41:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/293717#M1053</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-01-27T16:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding and troubleshooting Dynatrace extension resource limits</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/295635#M1084</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;You speak about&amp;nbsp;&lt;STRONG&gt;Scale horizontally by adding additional ActiveGates to the same ActiveGate group.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Good enough but I have a configuration with 3 AG with dedicated profile.&lt;/P&gt;&lt;P&gt;What I see is that I have only 1 AG who is working hard, with regularly soft limits alerts and 2 other doing almost nothing!&lt;/P&gt;&lt;P&gt;There is no load balancing occuring nor extension moved to another AG from same group.&lt;/P&gt;&lt;P&gt;For me seems&amp;nbsp; that Scale horizontally is useless. Any other solution to propose?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 13:51:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/295635#M1084</guid>
      <dc:creator>AlainD</dc:creator>
      <dc:date>2026-03-04T13:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding and troubleshooting Dynatrace extension resource limits</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/295637#M1085</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/44706"&gt;@AlainD&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Hi Alain,&lt;BR /&gt;&lt;BR /&gt;A controlled restart of the ActiveGate experiencing high load will allow traffic and processing to be redistributed to other ActiveGates.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;&lt;A class="fui-Link ___w5et180 f2hkw1w f3rmtva f1ewtqcl fyind8e f1k6fduh f1w7gpdv f1mo0ibp fjoy568 ff5ikls f1s184ao f1mk8lai fnbmjn9 f1o700av f13mvf36 f1cmlufx f9n3di6 f1ids18y f1tx3yz7 f1deo86v f1eh06m1 f1iescvh fhgqx19 f1olyrje f1p93eir f1nev41a" tabindex="0" href="https://docs.dynatrace.com/docs/ingest-from/dynatrace-activegate/operation/stop-restart-activegate" rel="noopener noreferrer" data-tabster="{&amp;quot;restorer&amp;quot;:{&amp;quot;type&amp;quot;:1}}" target="_blank"&gt;Start/stop/restart ActiveGate&lt;/A&gt;&lt;/STRONG&gt; – Describes how to restart an ActiveGate&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Mar 2026 14:18:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/295637#M1085</guid>
      <dc:creator>MartinVolb</dc:creator>
      <dc:date>2026-03-04T14:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding and troubleshooting Dynatrace extension resource limits</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/296241#M1094</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/44706"&gt;@AlainD&lt;/a&gt;&amp;nbsp;you can force the endpoint to get evenly distributed, I believe it is called Task Bucket set to 1, which is available when configuring the end point.&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 18:35:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Understanding-and-troubleshooting-Dynatrace-extension-resource/tac-p/296241#M1094</guid>
      <dc:creator>mrc15816</dc:creator>
      <dc:date>2026-03-16T18:35:41Z</dc:date>
    </item>
  </channel>
</rss>

