<?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: ActiveGate Connection Logs in Dynatrace Managed Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238977#M3210</link>
    <description>&lt;P&gt;After opening a support ticket, it appears the answer that there are not any system logs for this.&lt;/P&gt;</description>
    <pubDate>Tue, 05 Mar 2024 14:46:30 GMT</pubDate>
    <dc:creator>Sean_Bridges</dc:creator>
    <dc:date>2024-03-05T14:46:30Z</dc:date>
    <item>
      <title>ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238209#M3189</link>
      <description>&lt;P&gt;&amp;nbsp;I’m looking to be able to find the logs of requests to the /communication endpoints on cluster ActiveGates and embedded cluster ActiveGates in a Dynatrace Managed solution so we can do some analytics on originating connections.&lt;/P&gt;&lt;P&gt;We can see in the nginx logs all the user interactions with the GUI (nginx access logs), and API (Audit logs), however, this doesn’t seem to capture anything going to the /communications endpoints that are initiated from the OneAgents and other ActiveGates.&lt;/P&gt;&lt;P&gt;Is there a log file that I can turn on that will capture this or is this hidden somewhere I can see today?&lt;BR /&gt;Thanks for any direction or advise.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 22:09:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238209#M3189</guid>
      <dc:creator>Sean_Bridges</dc:creator>
      <dc:date>2024-02-26T22:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238229#M3191</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would check ActiveGate logs directories:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A title="GNU/Linux" href="https://docs.dynatrace.com/docs/shortlink/activegate-default-settings-linux#installation-command-syntax" target="_blank" rel="noopener"&gt;GNU/Linux&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;A title="Windows" href="https://docs.dynatrace.com/docs/shortlink/activegate-default-settings-windows#installation-command-syntax" target="_blank" rel="noopener"&gt;Windows&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 07:50:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238229#M3191</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2024-02-27T07:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238292#M3198</link>
      <description>&lt;P&gt;You would hope right? But no, there are no logs in the log directory on the activegate that show where connections to the /communication endpoint originated that I can find. Just the rest API logs.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 13:56:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238292#M3198</guid>
      <dc:creator>Sean_Bridges</dc:creator>
      <dc:date>2024-02-27T13:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238294#M3199</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If someone does not provide you a better answer than mine, I would suggest to raise a support ticket.&lt;/P&gt;&lt;P&gt;Just in case debug logs or similar can be generated.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 14:10:52 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238294#M3199</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2024-02-27T14:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238305#M3200</link>
      <description>&lt;P&gt;That's what I'm hoping is that we can enable a higher level of logging through some configuration setting.&amp;nbsp; Hoping that someone in the commmunity would have needed this before.&lt;/P&gt;&lt;P&gt;I did notice that the managed cluster nginx log configuration explicitly disables logging on /communication endpoints.&lt;/P&gt;&lt;P&gt;but these logs also do not exist on activegates, only cluster nodes.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;        location /communication {
            if ($local_tag = true) {
                 proxy_pass            http://local_server_http;
            }
            if ($local_tag = false) {
                 proxy_pass            http://local_ag;
            }
            access_log                 off;
            error_page 500 502 503 504 /small_error_50x.html;
        }&lt;/LI-CODE&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;</description>
      <pubDate>Tue, 27 Feb 2024 18:28:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238305#M3200</guid>
      <dc:creator>Sean_Bridges</dc:creator>
      <dc:date>2024-02-27T18:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238318#M3201</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/53181"&gt;@Sean_Bridges&lt;/a&gt;&amp;nbsp; As suggested by&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/58682"&gt;@AntonPineiro&lt;/a&gt;&amp;nbsp;support ticket is the best option in this scenario.&lt;SPAN&gt;But one option I would suggest is to check OneAgent health, where you can see which OneAgent is connected to which ActiveGate. If this doesn't help, then the last resort would be a support ticket.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tijust&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 21:28:29 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238318#M3201</guid>
      <dc:creator>sujit_k_singh</dc:creator>
      <dc:date>2024-02-27T21:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveGate Connection Logs</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238977#M3210</link>
      <description>&lt;P&gt;After opening a support ticket, it appears the answer that there are not any system logs for this.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 14:46:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-Managed-Q-A/ActiveGate-Connection-Logs/m-p/238977#M3210</guid>
      <dc:creator>Sean_Bridges</dc:creator>
      <dc:date>2024-03-05T14:46:30Z</dc:date>
    </item>
  </channel>
</rss>

