<?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 Troubleshooting Missing Log Files Due to OneAgent Log Monitoring Security Rules in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-Missing-Log-Files-Due-to-OneAgent-Log-Monitoring/ta-p/302252</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;H2&gt;Summary&lt;/H2&gt;
&lt;DIV&gt;This article applies to Dynatrace Log Monitoring with OneAgent and helps troubleshoot situations where a log file is expected to appear in Dynatrace but is not being ingested. It specifically covers cases where OneAgent Log Monitoring security rules prevent a file from being collected and explains how to use the Dynatrace Log Security Rules Checker to validate and resolve the issue.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Problem&lt;/H2&gt;
&lt;DIV&gt;
&lt;P&gt;A log file is configured or expected to be monitored by OneAgent, but the log does not appear in Dynatrace.&lt;/P&gt;
&lt;P&gt;Common symptoms include:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The log file is present on the host and actively receiving data.&lt;/LI&gt;
&lt;LI&gt;No matching log records are visible in Dynatrace.&lt;/LI&gt;
&lt;LI&gt;No obvious ingestion errors are displayed in the Dynatrace UI.&lt;/LI&gt;
&lt;LI&gt;The affected file may be located in a directory that is not covered by the default OneAgent security rules or may match an exclusion rule.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;OneAgent Log Monitoring uses built-in security rules to ensure that only appropriate log files are ingested. These rules are designed to prevent accidental collection of configuration files, secrets, and other non-log content. When a file path is blocked by these rules, the file will not be ingested.&lt;/P&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Troubleshooting steps&lt;/H2&gt;
&lt;DIV&gt;
&lt;H3&gt;Validate the file path&lt;/H3&gt;
&lt;P&gt;Before proceeding, ensure that you have:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The absolute file path of the log file.&lt;/LI&gt;
&lt;LI&gt;All symbolic links resolved.&lt;/LI&gt;
&lt;LI&gt;The installed OneAgent version.&lt;/LI&gt;
&lt;LI&gt;Python 3 available on your workstation.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Clone the Log Security Rules Checker repository:&lt;/P&gt;
&lt;/DIV&gt;
&lt;LI-CODE lang="python"&gt;git clone https://github.com/Dynatrace/Dynatrace-Log-Security-Rules-Checker.git
cd Dynatrace-Log-Security-Rules-Checker&lt;/LI-CODE&gt;
&lt;DIV&gt;
&lt;H3&gt;Check the path against the default OneAgent rules&lt;/H3&gt;
&lt;P&gt;Run the following command:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurityRulesChecker.py -a &amp;lt;agent_version&amp;gt; -o linux &amp;lt;absolute_path&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Example:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurityRulesChecker.py -a 1.301 -o linux /usr/sap/BQH/HDB03/cssbq3d01/trace/available.log&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;P&gt;Review the result:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;INCLUDED&lt;/STRONG&gt; – The file is allowed by the security rules and should be eligible for ingestion.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;EXCLUDED&lt;/STRONG&gt; – Continue to the next step.&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV&gt;
&lt;H3&gt;Identify the exact matching rule&lt;/H3&gt;
&lt;P&gt;Run the checker in verbose mode:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurityRulesChecker.py -a &amp;lt;agent_version&amp;gt; -o linux &amp;lt;absolute_path&amp;gt; -v&lt;/LI-CODE&gt;
&lt;DIV&gt;
&lt;P&gt;The output identifies the specific security rule responsible for the exclusion.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;Try to match rule { ^/usr/**/**{ * }{ EXCLUDE }**o { /usr/sap/BQH/HDB03/cssbq**01/trace/ }{ available.log }
**- directory**art MATCHED, file part MATCHED --**the rule is matched.
'/usr**ap/BQH/HDB03**ssbq3d01/trace/available.log' is **CLUDED.&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;H3&gt;Check if a newer OneAgent version resolves the issue&lt;/H3&gt;
&lt;P&gt;Run the checker without specifying a OneAgent version:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurityRul**Checker.py -o linux &amp;lt;absolute_pat** -v&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;P&gt;This tests the path against the newest known security rule set.&lt;/P&gt;
&lt;P&gt;Review the result:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;INCLUDED&lt;/STRONG&gt; – Upgrading OneAgent to the corresponding version or later may resolve the issue.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;EXCLUDED&lt;/STRONG&gt; – Continue to the resolution steps.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;Resolution&lt;/H2&gt;
&lt;DIV&gt;
&lt;H3&gt;Generate a custom security rules configuration&lt;/H3&gt;
&lt;P&gt;If the file remains excluded and an upgrade is not possible or does not resolve the issue, generate a custom configuration:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurityRu**sChecker.py -a &amp;lt;agent_version&amp;gt; -o**inux &amp;lt;absolute_path&amp;gt; -g custom_co**ig.json -v&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;DIV&gt;This creates a &lt;CODE&gt;custom_config.json&lt;/CODE&gt; file containing an INCLUDE rule for the target path. The generated configuration also includes support for common log rotation filename variations.&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;H3&gt;Validate the generated configuration&lt;/H3&gt;
&lt;P&gt;Before deployment, verify that the custom configuration allows the file:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurity**lesChecker.py -a &amp;lt;agent_version&amp;gt; ** linux &amp;lt;absolute_path&amp;gt; -c custom_**nfig.json -v&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;Confirm that the output reports:&lt;/DIV&gt;
&lt;LI-CODE lang="python"&gt;INCLUDED**&lt;/LI-CODE&gt;
&lt;DIV&gt;
&lt;H3&gt;Deploy the custom configuration&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Copy the validated &lt;CODE&gt;custom_config.json&lt;/CODE&gt; file to the target OneAgent host.&lt;/LI&gt;
&lt;LI&gt;Place the configuration in the location specified by the Dynatrace security rules documentation.&lt;/LI&gt;
&lt;LI&gt;Restart OneAgent if required by the operating system and deployment method.&lt;/LI&gt;
&lt;LI&gt;Verify that the log file is subsequently ingested and visible in Dynatrace.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;Additional checker options&lt;/H3&gt;
&lt;DIV class="___1dmoc29 f10pi13n ftgm304 f1enuhaj fdclmfp f1nbblvp fat0sn4 f1ov4xf1 fekwl8i f1lmfglv f1oz7aqm f1abmfm4 f1w619qj f16h0jq8"&gt;
&lt;TABLE class="___1vyiefv f1ddd56o f16vktn6 f1ahpp82 f11qra4b f1uinfot fibjyge fvueend f9yszdx f1fu4s3n f3l3pb3 f10ghnd0 f8fmt76 fjvbh62 f1qrqxae f1vw5qpk fc02sbz fxawf59 fymf513 f1aoyrul f1el8yx3 f1pymoxg f1ofu761 fe6itr f7coize f1794535 f1o0pw0q fbjjl9v fk1v6el f16pyhcb f1ixlhx9 f12zef0i flu5r5u f19haqzy f1owmcxx f1oddm8q f1004tna fcoaxci fh0ee9u f15v23i2 f1dmj53 f1r1gcv9 f14z1veh ffufd3x f1ypplot f1660cg"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH&gt;Option&lt;/TH&gt;
&lt;TH&gt;Description&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;-i paths.txt&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Validate multiple paths from a file&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;-n&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Skip online version checks&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;-o windows&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Test Windows security rules&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;--help&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Display all available options&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;H3&gt;Important notes&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;Always test using the &lt;STRONG&gt;absolute path&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Resolve all symbolic links before validation.&lt;/LI&gt;
&lt;LI&gt;Custom security rules &lt;STRONG&gt;supplement&lt;/STRONG&gt; the default rules and do not replace them.&lt;/LI&gt;
&lt;LI&gt;Security rules evolve over time, so testing against newer OneAgent versions may identify a version where the path is already permitted.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;H2&gt;What's next&lt;/H2&gt;
&lt;DIV&gt;
&lt;P&gt;If this article didn't resolve the issue, please open a support ticket and mention that you followed the troubleshooting steps described here.&lt;/P&gt;
&lt;H3&gt;Opening a support ticket&lt;/H3&gt;
&lt;P&gt;Include the following information:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Full absolute path of the affected log file.&lt;/LI&gt;
&lt;LI&gt;OneAgent version.&lt;/LI&gt;
&lt;LI&gt;Operating system and version.&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;Output from:
&lt;DIV class="___77lcry0 f10pi13n"&gt;
&lt;DIV class="___1hewfwb f10pi13n f7oukh6 f5p0z4x" tabindex="0" role="group" aria-label="Code Preview"&gt;
&lt;DIV&gt;
&lt;DIV class="scriptor-component-code-block Ds9+tcw0llUdlOER+3QMrw== scriptor-codeblock-virtualized" tabindex="-1"&gt;
&lt;DIV class="IdRfIs658qCsauVGBNzC9g=="&gt;
&lt;DIV class="rrd10u0 fui-AriaLive__assertive" aria-live="assertive"&gt;&lt;LI-CODE lang="python"&gt;python3 LogAgentSecurity**lesChecker.py -a &amp;lt;agent_version&amp;gt; ** &amp;lt;os&amp;gt; &amp;lt;path&amp;gt; -v&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;UL&gt;
&lt;LI&gt;Generated &lt;CODE&gt;custom_config.json&lt;/CODE&gt; file (if applicable).&lt;/LI&gt;
&lt;LI&gt;Screenshots showing:
&lt;UL&gt;
&lt;LI&gt;Log Monitoring configuration.&lt;/LI&gt;
&lt;LI&gt;Log viewer searches used to verify missing data.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Confirmation whether testing against the latest known rule set resulted in &lt;STRONG&gt;INCLUDED&lt;/STRONG&gt; or &lt;STRONG&gt;EXCLUDED&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Any custom OneAgent security rule configurations currently in use.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;H3&gt;Alternatives&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Review the official Dynatrace documentation for OneAgent security rules:&lt;BR /&gt;&lt;A class="fui-Link fai-bebop ___1v1lyro f2hkw1w f3rmtva f1ewtqcl f16muhyy f1k6fduh f1w7gpdv f1mo0ibp fjoy568 ff5ikls f1s184ao f1mk8lai fnbmjn9 f1o700av f13mvf36 f33ey8m f9n3di6 f1ids18y f1tx3yz7 feiuef2 f1eh06m1 f54796x fhgqx19 f1olyrje f1p93eir f1nev41a f132whgj f1v74mp6 f1tsf1ni fnq52rx f16zlvvm" tabindex="0" href="https://docs.dynatrace.com/docs/observe-and-explore/logs/lma-log-ingestion/lma-log-ingestion-via-oa/lma-security-rules" target="_blank" rel="noopener noreferrer" data-tabster="{&amp;quot;restorer&amp;quot;:{&amp;quot;type&amp;quot;:1}}"&gt;OneAgent Log Monitoring Security Rules&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Use the Dynatrace Log Security Rules Checker repository for offline validation and testing:&lt;BR /&gt;&lt;A class="fui-Link fai-bebop ___1v1lyro f2hkw1w f3rmtva f1ewtqcl f16muhyy f1k6fduh f1w7gpdv f1mo0ibp fjoy568 ff5ikls f1s184ao f1mk8lai fnbmjn9 f1o700av f13mvf36 f33ey8m f9n3di6 f1ids18y f1tx3yz7 feiuef2 f1eh06m1 f54796x fhgqx19 f1olyrje f1p93eir f1nev41a f132whgj f1v74mp6 f1tsf1ni fnq52rx f16zlvvm" tabindex="0" href="https://github.com/Dynatrace/Dynatrace-Log-Security-Rules-Checker" target="_blank" rel="noopener noreferrer" data-tabster="{&amp;quot;restorer&amp;quot;:{&amp;quot;type&amp;quot;:1}}"&gt;Dynatrace Log Security Rules Checker&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;Further troubleshooting- &lt;A href="https://community.dynatrace.com/t5/Troubleshooting/Logs-Troubleshooting-Map/ta-p/302260" target="_self"&gt;Logs Troubleshooting Map&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Wed, 29 Jul 2026 12:42:02 GMT</pubDate>
    <dc:creator>noel_david</dc:creator>
    <dc:date>2026-07-29T12:42:02Z</dc:date>
    <item>
      <title>Troubleshooting Missing Log Files Due to OneAgent Log Monitoring Security Rules</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-Missing-Log-Files-Due-to-OneAgent-Log-Monitoring/ta-p/302252</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;H2&gt;Summary&lt;/H2&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;H2&gt;Problem&lt;/H2&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. Use anonymized screenshots, and include text for&amp;nbsp;important messages, errors, or information that will help the customer find this article when searching.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Troubleshooting steps&lt;/H2&gt;
&lt;P&gt;&lt;EM&gt;*This section can be omitted as necessary.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Explain what troubleshooting steps should be taken to ensure the problem matches this article.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Resolution&lt;/H2&gt;
&lt;P&gt;&lt;EM&gt;*This section can be omitted for articles that guide customers on ticket creation.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Explain the solution or all possible solutions resulting from the troubleshooting steps.&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;H2&gt;What's next&lt;/H2&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section. Customers need a way to respond or follow up if they have questions.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Explain what to do if the article did not help.&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;Note that there are multiple options available, including:&lt;/EM&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;EM&gt;&lt;STRONG&gt;Opening a support ticket&lt;/STRONG&gt; - be as specific as possible about the information the customer should include in the ticket.&amp;nbsp;&lt;/EM&gt; If this article did not help, please open a support ticket, mention that this article was used and provide the following in the ticket:
&lt;UL&gt;
&lt;LI&gt;link to XYZ&lt;/LI&gt;
&lt;LI&gt;screenshot of XYZ&lt;/LI&gt;
&lt;LI&gt;information about XYZ&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;STRONG&gt;Suggesting Product Idea&lt;/STRONG&gt; - encourage the customer to suggest/ vote for a Product Idea explaining their business use case.&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;STRONG&gt;Explain this will change in the future&lt;/STRONG&gt; - explain that this behaviour will change in a future release. (No product idea / support ticket needed)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;STRONG&gt;Alternatives -&lt;/STRONG&gt;&amp;nbsp;any other actions or links to other articles that could move the customer forward.&lt;/EM&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;*If it exists, link this article to the relevant troubleshooting map using the following guideline&lt;/EM&gt;&lt;/P&gt;
&lt;H3&gt;More articles can be found on the &lt;A href="https://community.dynatrace.com/t5/Troubleshooting/" target="_self"&gt;XXX Troubleshooting Map&lt;/A&gt;&lt;/H3&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 29 Jul 2026 12:42:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-Missing-Log-Files-Due-to-OneAgent-Log-Monitoring/ta-p/302252</guid>
      <dc:creator>noel_david</dc:creator>
      <dc:date>2026-07-29T12:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting Missing Log Files Due to OneAgent Log Monitoring Security Rules</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-Missing-Log-Files-Due-to-OneAgent-Log-Monitoring/tac-p/302555#M1170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you! I was not aware of this command line utility&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@0159DAC3E7471E7A67CC76770F97BEC3/images/emoticons/clap.gif" alt=":clap:" title=":clap:" /&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2026 12:50:45 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-Missing-Log-Files-Due-to-OneAgent-Log-Monitoring/tac-p/302555#M1170</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-07-29T12:50:45Z</dc:date>
    </item>
  </channel>
</rss>

