<?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: Synthetic Monitoring Port Extension in Extensions</title>
    <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202738#M2716</link>
    <description>&lt;P&gt;It does indeed receive a socket timeout.&lt;/P&gt;&lt;P&gt;ec2-user@ip-172-35-0-123 ~]$ /usr/bin/python3.8 udpTest.py&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "udpTest.py", line 8, in &amp;lt;module&amp;gt;&lt;BR /&gt;data = sock.recv(1024)&lt;BR /&gt;socket.timeout: timed out&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I noticed from ncat that if I use "-z" for zero i/o it will just report on the success of the connection.&amp;nbsp; If I remove that -z option then it hangs up like they python code.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jan 2023 17:27:45 GMT</pubDate>
    <dc:creator>tnoonan</dc:creator>
    <dc:date>2023-01-18T17:27:45Z</dc:date>
    <item>
      <title>Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202662#M2701</link>
      <description>&lt;P&gt;Why is it that the Synthetic Monitoring Extension has the option to perform a test using "UDP" protocol in the user interface when only to find out, through support (all day long), that UDP will not work out of the box?&amp;nbsp; And then the only guidance to modify is through a paid engagement with the extensions team.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 11:41:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202662#M2701</guid>
      <dc:creator>tnoonan</dc:creator>
      <dc:date>2023-05-12T11:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202674#M2702</link>
      <description>&lt;P&gt;Can you send on the support ticket? We’ve got customers using it without any services intervention.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 08:28:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202674#M2702</guid>
      <dc:creator>Mike_L</dc:creator>
      <dc:date>2023-01-18T08:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202687#M2704</link>
      <description>&lt;P&gt;Conversation #122683&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 11:58:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202687#M2704</guid>
      <dc:creator>tnoonan</dc:creator>
      <dc:date>2023-01-18T11:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202690#M2705</link>
      <description>&lt;P&gt;Thanks, I'll talk it over with the people that handled the ticket as their information is outdated. They based it off a discussion of mine from 2 years ago when we did not support UDP.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 12:17:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202690#M2705</guid>
      <dc:creator>Mike_L</dc:creator>
      <dc:date>2023-01-18T12:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202721#M2714</link>
      <description>&lt;P&gt;Thank you, Mike.&amp;nbsp;&lt;/P&gt;&lt;P&gt;After reviewing the thread and the supporting images, why do you think the UDP request would be timing out?&amp;nbsp; I can hit the endpoint/port from the activegate using ncat.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 15:08:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202721#M2714</guid>
      <dc:creator>tnoonan</dc:creator>
      <dc:date>2023-01-18T15:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202732#M2715</link>
      <description>&lt;P&gt;Can you drop the ncat command/response?&lt;/P&gt;
&lt;P&gt;This is the python code we're executing for synthetic UDP requests:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.settimeout(timeout)
sock.connect((ip, port))

sock.sendall(b"")
data = sock.recv(1024)
print(f"Received data: {data}")&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Could you drop that into a .py file, switch out timeout, ip and port and see if it works?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 16:06:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202732#M2715</guid>
      <dc:creator>Mike_L</dc:creator>
      <dc:date>2023-01-18T16:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202738#M2716</link>
      <description>&lt;P&gt;It does indeed receive a socket timeout.&lt;/P&gt;&lt;P&gt;ec2-user@ip-172-35-0-123 ~]$ /usr/bin/python3.8 udpTest.py&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "udpTest.py", line 8, in &amp;lt;module&amp;gt;&lt;BR /&gt;data = sock.recv(1024)&lt;BR /&gt;socket.timeout: timed out&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I noticed from ncat that if I use "-z" for zero i/o it will just report on the success of the connection.&amp;nbsp; If I remove that -z option then it hangs up like they python code.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 17:27:45 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/202738#M2716</guid>
      <dc:creator>tnoonan</dc:creator>
      <dc:date>2023-01-18T17:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Monitoring Port Extension</title>
      <link>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/212662#M3029</link>
      <description>&lt;P&gt;This was resolved in the support ticket. The support for UDP is now much improved.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 10:37:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Synthetic-Monitoring-Port-Extension/m-p/212662#M3029</guid>
      <dc:creator>Mike_L</dc:creator>
      <dc:date>2023-05-19T10:37:03Z</dc:date>
    </item>
  </channel>
</rss>

