<?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: EF2 extension running slightly more than 60 seconds: way to not trigger log alert? in Extensions</title>
    <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260210#M5409</link>
    <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/909"&gt;@DavidMass&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Yes, using the strategy that was available in EF1 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Going to try it out, but have questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The query method will always be executed right?&lt;/LI&gt;&lt;LI&gt;If yes, can we use both main_method and query&lt;/LI&gt;&lt;LI&gt;If we would like to run it every hour, is there a way to define which minute it would run?&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Tue, 22 Oct 2024 21:58:10 GMT</pubDate>
    <dc:creator>AntonioSousa</dc:creator>
    <dc:date>2024-10-22T21:58:10Z</dc:date>
    <item>
      <title>EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260208#M5407</link>
      <description>&lt;P&gt;I have an extension, which for a particular monitoring configuration, and once per hour, needs to run slightly more than 60 seconds. A log entry is created for each of the invocations, and looks like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Method=query: Callback Method=query took 64.1117 seconds to execute, which is longer than the interval of 60.0s&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;Is this something that can be configured, eventually at the monitoring configuration level?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 21:05:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260208#M5407</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2024-10-22T21:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260209#M5408</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/17213"&gt;@AntonioSousa&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;I'm guessing you are using the query method that runs once per minute and then calculating the once per hour to run via a counter or some other method?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can switch to the setting the main method of your extension to use be called via the schedule (&lt;A href="https://dynatrace-extensions.github.io/dt-extensions-python-sdk/api/extension.html#dynatrace_extension.Extension.schedule" target="_blank" rel="noopener"&gt;https://dynatrace-extensions.github.io/dt-extensions-python-sdk/api/extension.html#dynatrace_extension.Extension.schedule&lt;/A&gt;) method that takes in an interval which you can either hard code or pass in via the monitoring config.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For example, you can pull the frequency from the config and use it to give yourself more minutes before the callback error is thrown.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;from datetime import timedelta&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;def &lt;SPAN&gt;initialize&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;self): &lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;    frequency = self.activation_config.get("frequency", 1)&lt;BR /&gt;    self.schedule(callback=self.main_method, interval=timedelta(minutes=frequency), args=())&lt;BR /&gt;&lt;BR /&gt;def main_method(self):&lt;BR /&gt;    # Do your work here&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 21:21:40 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260209#M5408</guid>
      <dc:creator>DavidMass</dc:creator>
      <dc:date>2024-10-22T21:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260210#M5409</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/909"&gt;@DavidMass&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Yes, using the strategy that was available in EF1 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Going to try it out, but have questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The query method will always be executed right?&lt;/LI&gt;&lt;LI&gt;If yes, can we use both main_method and query&lt;/LI&gt;&lt;LI&gt;If we would like to run it every hour, is there a way to define which minute it would run?&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 22 Oct 2024 21:58:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260210#M5409</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2024-10-22T21:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260214#M5410</link>
      <description>&lt;P&gt;I understand &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;BR /&gt;With the EF2 SDK, you don't need to have a query method. It is now still a special method but it's just scheduled (using a similar method to the self.schedule way) internally within the SDK at a hard coded interval (1 minute). If it's not defined the SDK will still work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Yes, you can have both your main_method and a query method where query would run once a minute (automatically) and then you would need to "manually" schedule your main_method. You can also schedule more than 1 method each with it's own interval.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using that set up, no, it would be scheduled to run whenever the AG receives the configuration so there is no way to guarantee it to run at a specific minute in the hour.&lt;/P&gt;&lt;P&gt;Off the top of my head though, you could have a delay where in the initialize method you "sleep" until the minute you want comes up and then schedule it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 22:10:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260214#M5410</guid>
      <dc:creator>DavidMass</dc:creator>
      <dc:date>2024-10-22T22:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260220#M5412</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/17213"&gt;@AntonioSousa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;when checking the extension source in &lt;A href="https://github.com/dynatrace-extensions/dt-extensions-python-sdk/blob/main/dynatrace_extension/sdk/extension.py" target="_self"&gt;github&lt;/A&gt; I've found that there's constants were defined in the file &lt;FONT color="#0000FF"&gt;extension.py&lt;/FONT&gt; as the following figure&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;HEARTBEAT_INTERVAL = timedelta(seconds=50)
METRIC_SENDING_INTERVAL = timedelta(seconds=30)
SFM_METRIC_SENDING_INTERVAL = timedelta(seconds=60)
TIME_DIFF_INTERVAL = timedelta(seconds=60)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&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="MostafaHussein_0-1729637694772.png" style="width: 538px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/23991i5350AD363875FE1E/image-dimensions/538x662?v=v2" width="538" height="662" role="button" title="MostafaHussein_0-1729637694772.png" alt="MostafaHussein_0-1729637694772.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;after searching for `&lt;FONT color="#0000FF"&gt;SFM_METRIC_SENDING_INTERVAL&lt;/FONT&gt;` I've found that it's used in class `&lt;FONT color="#0000FF"&gt;Extension&lt;/FONT&gt;` as the following figure&lt;/P&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="MostafaHussein_2-1729637999362.png" style="width: 634px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/23993iD2F2A08EF8BAD731/image-dimensions/634x287?v=v2" width="634" height="287" role="button" title="MostafaHussein_2-1729637999362.png" alt="MostafaHussein_2-1729637999362.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;so you can try simply redefine them with your own values within your own extension file &lt;FONT color="#0000FF"&gt;__main__.py&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;, I&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;hope you get it works.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Mostafa Hussein.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 23:04:46 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/260220#M5412</guid>
      <dc:creator>MostafaHussein</dc:creator>
      <dc:date>2024-10-22T23:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263315#M5576</link>
      <description>&lt;P&gt;Hello Antonio,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I created a custom XenServer extension, and I am encountering the same error message. Error shown below,&lt;BR /&gt;Method=query: Callback Method=query took 62.5491 seconds to execute, which is longer than the interval of 60.0s&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Did you have successful results applying the fix David Mass recommended?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 22:43:55 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263315#M5576</guid>
      <dc:creator>RTOWNSEND</dc:creator>
      <dc:date>2024-11-21T22:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263335#M5577</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/33216"&gt;@RTOWNSEND&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I have not yet done any changes from my side...&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 09:46:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263335#M5577</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2024-11-22T09:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263610#M5587</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/909"&gt;@DavidMass&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I applied the recommended code shown below and I am still receiving the same error Antonio reported. When manually running __,main.py__ , I can see the frequency set to 20min( Please reference the second output shown below).&amp;nbsp; Any guidance you can provide would be greatly appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You!&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV&gt;Error Message&lt;/DIV&gt;&lt;DIV&gt;Method=query: Callback Method=query took &lt;SPAN class=""&gt;85&lt;/SPAN&gt;.&lt;SPAN class=""&gt;6351&lt;/SPAN&gt; seconds to execute, which is longer than the interval of &lt;SPAN class=""&gt;60&lt;/SPAN&gt;.0s&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Code&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;def&lt;/SPAN&gt; &lt;SPAN&gt;initialize&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;self):&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;extension_name&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'xensrvapi'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;logger&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;info&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;extension_name&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt; initialized."&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;frequency&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;int&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;activation_config&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;get&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"frequency"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;20&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;interval&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;timedelta&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;seconds&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;1200&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;schedule&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;callback&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;query&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;interval&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;interval&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;logger&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;info&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;"scheduling query with an interval of &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;interval&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt; (frequency: &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;frequency&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt; minutes."&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Output from manual execution via VsCode&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;2024-11-25 11:53:06,966 [INFO] api (ThreadPoolExecutor-1_0): send_status: '{"status": "OK", "message": ""}'&lt;BR /&gt;2024-11-25 11:53:06,968 [INFO] xensrvapi (MainThread): xensrvapi initialized.&lt;BR /&gt;2024-11-25 11:53:06,968 [INFO] xensrvapi (MainThread): scheduling query with an interval of 0:20:00 (frequency: 20 minutes.&lt;BR /&gt;2024-11-25 11:53:06,968 [INFO] api (MainThread): -----------------------------------------------------&lt;BR /&gt;2024-11-25 11:53:06,969 [INFO] api (MainThread): Starting ExtensionImpl(name=xensrvapi, version=0.0.1)&lt;BR /&gt;2024-11-25 11:53:06,969 [INFO] api (MainThread): -----------------------------------------------------&lt;BR /&gt;2024-11-25 11:53:06,969 [INFO] api (ThreadPoolExecutor-1_0): send_sfm_metric: dsfm:datasource.python.threads,dt.extension.config.id="development_config_id" count,delta=3&lt;BR /&gt;2024-11-25 11:53:06,970 [INFO] xensrvapi (ThreadPoolExecutor-0_0): Query method started for xensrvapi.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 25 Nov 2024 18:07:29 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263610#M5587</guid>
      <dc:creator>RTOWNSEND</dc:creator>
      <dc:date>2024-11-25T18:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: EF2 extension running slightly more than 60 seconds: way to not trigger log alert?</title>
      <link>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263885#M5610</link>
      <description>&lt;P&gt;Please do NOT do this, these are internal values of the periods in which we communicate to the EEC, it has nothing to do with the original issue.&lt;BR /&gt;&lt;BR /&gt;To fix the original issue just schedule methods to run for more than 60 seconds, do NOT attempt to schedule the query method itself, as that one is a special method that is always scheduled to run every 60 seconds.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:46:04 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/EF2-extension-running-slightly-more-than-60-seconds-way-to-not/m-p/263885#M5610</guid>
      <dc:creator>david_lopes</dc:creator>
      <dc:date>2024-11-27T18:46:04Z</dc:date>
    </item>
  </channel>
</rss>

