<?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 How to troubleshoot ingestion of missed log data after the Log age limit in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-troubleshoot-ingestion-of-missed-log-data-after-the-Log/ta-p/304040</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;P&gt;Data of &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-api-ingestion-reference" target="_blank" rel="noopener"&gt;Ingest sources&lt;/A&gt; can be delayed and lost before reaching our platform for a myriad of reasons: system failures, delayed configuration changes to match application changes, major network disruptions, &lt;SPAN&gt;injudicious&amp;nbsp;&lt;/SPAN&gt;revisions to sensitive configurations, binary or invalid content forcing discards by the sender, receiver or OpenPipeline, etc. Some data sources are mission critical, and require storage in our platform so teams can review that data, monitor metrics and receive alerts. When a gap in data occurs, it can be difficult for app teams to untangle the delayed data from truly missing data without going to the source or an active 3rd party vendor's solution, and comparing to our platform.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Problem&lt;/H2&gt;
&lt;P&gt;Some data can be backfilled but not all data is buffered client-side or backfilled equally. For example, OneAgent log module saves up to 10 Mebibytes of logs before it has to either send or drop that data. Once dropped, that data is not automatically recollected from the source. For generic ingest to our API endpoints, different cloud platforms measure and handle backpressure of logs and other datatypes differently, often with&amp;nbsp;exponential backoff, maximum retry and rate limits. Grail has maximum ages for accepting new records with dated timestamps, which is the &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-limits#log-ingestion-limits" target="_blank" rel="noopener"&gt;Log age&lt;/A&gt;&amp;nbsp;ingestion limit in the Logs table.&lt;BR /&gt;&lt;BR /&gt;In Dynatrace, teams can check the &lt;STRONG&gt;Total ingested records per configuration&lt;/STRONG&gt; tile in the tenant's Ready-made dashboard &lt;A href="https://docs.dynatrace.com/docs/shortlink/ready-made-dashboards#dynatrace-openpipeline-openpipeline-usage-overview" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;OpenPipeline usage overview&lt;/STRONG&gt;&lt;/A&gt;. Since data can be backfilled up to age limit, you can expect a spike in ingest on recovery to a monitoring gap of a major data source. You can compare the area of a spike to previous days and days of the previous weeks to gain some insight into the impact of data loss, however, this is not a practical approach to understand the precise impact of data delay and loss, especially in detail.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A better approach is to query the affected table or bucket, and &lt;A href="https://docs.dynatrace.com/docs/shortlink/dql-use-queries#aggregations" target="_blank" rel="noopener"&gt;aggregate a count&lt;/A&gt; over the timeframe, to check how data was backfilled. You can compare timestamps in the message of records, use DPL to extract the timestamp from messages, and calculate and graph a delta to the ingest time, like &lt;A href="https://docs.dynatrace.com/docs/shortlink/time-functions#now" target="_blank" rel="noopener"&gt;now()&lt;/A&gt;, called during log processing in OpenPipeline, and set to a field like delta. The higher that &lt;CODE&gt;delta&lt;/CODE&gt;, the more data of that type and source was stored with that &lt;CODE&gt;delta&lt;/CODE&gt; between creation and ingest times. For example, a log with a message timestamp of 9 AM and a timestamp field or time of ingest of 11 AM was buffered and sent 2 hours late, but stored at the time of ingest, not backfilled to the time of creation. Consequently, a gap exists where teams would expect to find their data, and they may have to shift their query timeframe by the &lt;CODE&gt;delta&lt;/CODE&gt; to see that data. When we calculate&amp;nbsp;&lt;CODE&gt;delta&lt;/CODE&gt;, the time of ingest or calling&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/time-functions#now" target="_blank" rel="noopener"&gt;now()&lt;/A&gt;&amp;nbsp;in a processing rule, is always expected to be greater than the time of a &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-supported-timestamp-formats" target="_blank" rel="noopener"&gt;supported timestamp format&lt;/A&gt;&amp;nbsp;extracted from content.&lt;/P&gt;
&lt;PRE&gt;fetch logs, bucket: {"astroshop_log_bucket"}, timeframe: "2026-09-01 08:00-6/2026-09-01 14:00-6"&lt;BR /&gt;| parse content, """LD TIMESTAMP("yyyy-MM-dd HH:mm:ss.S", tz="UTC"):timestamp.content"""&lt;BR /&gt;| fieldsAdd delta = (timestamp - timestamp.content)/power(10,6) // output is ns, so you convert to ms&lt;BR /&gt;| makeTimeSeries {delay_ms=avg(delta)}, by: {host.name, log.source}&lt;/PRE&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Notebook query showing example of how delta calculation on demand works"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/34211i71D50E4858187FCA/image-size/large?v=v2&amp;amp;px=999" alt="Notebook query showing example of how delta calculation on demand works" title="jgrant_0-1788481573718.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some data, like logs, may inevitably be lost. You can restore ingest of those lost logs in a custom bucket and pipeline, especially by keeping the timestamps to the time of ingest when storing logs exceeding the log age limit after a gap, and fetching those logs by the timeframe overlapping ingestion. To reduce querying consumption from the larger data sizes correlated with larger timeframes, you recommend calculating delta in the Processing stage and visualizing the metric as a graph after the Metric extraction stage of OpenPipeline.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Troubleshooting steps&lt;/H2&gt;
&lt;P&gt;You can ingest any old data that exists on your filesystems or cloud platforms by storing the real timestamp in a non-timestamp key, like&amp;nbsp;&lt;CODE&gt;timestamp.creation&lt;/CODE&gt;, and then sending that data to Dynatrace. You do not need to follow our troubleshooting steps exactly to resolve your problem. You can adapt some steps to your needs, but the order of our steps should be followed:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Modify at the source&lt;/LI&gt;
&lt;LI&gt;Update OpenPipeline configuration&lt;/LI&gt;
&lt;LI&gt;Modify any source configuration for timestamp extraction&lt;/LI&gt;
&lt;LI&gt;Enable ingest of the modified source.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of new custom buckets and pipelines, you can also add our delta processors to your existing pipelines or via a base pipeline to your &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-pipeline-groups" target="_blank" rel="noopener"&gt;pipeline groups&lt;/A&gt;, and filter data with higher deltas by the processed and set &lt;CODE&gt;delta&lt;/CODE&gt; custom record attribute.&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/dps-log-analytics-query" target="_blank" rel="noopener"&gt;Query consumption&lt;/A&gt; can be expensive for wide timeframes and deep, greedy scans of tables, but you can find the data you're seeking by adhering to DQL&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/dql-best-practices" target="_blank" rel="noopener"&gt;best practices&lt;/A&gt;&amp;nbsp;with these steps, which are not strictly limited to restoring missing log data with OneAgent log module:&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Move or copy the missed old log data sources to a different path so it's not tracked with any existing &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-ingestion-oneagent#oneagent-log-configuration-flow" target="_blank" rel="noopener"&gt;log monitoring rules&lt;/A&gt;. We will bypass our OneAgent log module's 15 minute &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-ingestion-oneagent#recent-past-logs-ingestion-when-enabling-the-log-module" target="_blank" rel="noopener"&gt;ingestion limit&lt;/A&gt; on newly added log sources with &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-supported-timestamp-formats" target="_blank"&gt;supported timestamp formats&lt;/A&gt; in step 6, by setting the &lt;STRONG&gt;Timestamp search limit&lt;/STRONG&gt; to &lt;STRONG&gt;0&lt;/STRONG&gt; for the modified log path. Each file in the modified path should not exceed 10 MiB for complete ingestion by our OneAgent log module. When selecting a different path for old log data source, you should keep in mind our OneAgent log module's &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-security-rules#predefined-security-rules" target="_blank" rel="noopener"&gt;pre-defined security rules&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;Add a &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-bucket-assignment#custom-bucket" target="_blank" rel="noopener"&gt;custom bucket&lt;/A&gt; in Settings &amp;gt; &lt;A href="https://docs.dynatrace.com/docs/shortlink/grail-data-model" target="_blank" rel="noopener"&gt;Storage management&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;Add a &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-openpipeline#add-custom-pipeline" target="_self"&gt;custom pipeline&lt;/A&gt; and &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-configure" target="_blank" rel="noopener"&gt;add processors&lt;/A&gt;.&lt;/LI&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-openpipeline#stages" target="_blank" rel="noopener"&gt;Processing stage&lt;/A&gt; &amp;gt; Add a DQL processor for &lt;CODE&gt;delta&lt;/CODE&gt;&amp;nbsp;calculation. Check the &lt;A href="https://docs.dynatrace.com/docs/shortlink/dpl-time-date#conversion-patterns" target="_blank" rel="noopener"&gt;Conversion Patterns&lt;/A&gt;&amp;nbsp;in&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/dpl-time-date" target="_blank" rel="noopener"&gt;DPL Time and Date&lt;/A&gt;&amp;nbsp;to build the patterns for timestamps in your data messages, like&amp;nbsp;&lt;CODE&gt;"yyyy-MM-dd HH:mm:ss.S"&lt;/CODE&gt;. Please also note that you must set the time zone, like&amp;nbsp;&lt;A href="https://www.timeanddate.com/time/zones/" target="_blank" rel="noopener"&gt;tz&lt;/A&gt;="BST", or OpenPipeline will extract as UTC from the message. The provided example includes a generic DPL expression, but you should review your log sources, and add as many delta processors with matching timestamp and DPL expression as needed, checking if&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/boolean-functions#isNull" target="_blank" rel="noopener"&gt;isNull&lt;/A&gt;(delta) before execution of each one.&lt;BR /&gt;
&lt;PRE&gt;parse content, """LD TIMESTAMP("yyyy-MM-dd HH:mm:ss.S", tz="CET"):timestamp.content"""&lt;BR /&gt;| fieldsAdd delta = (timestamp - timestamp.content)/power(10,6) // output is ns, so we convert to m&lt;/PRE&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Add DQL processor with definition in member pipeline."&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/34213iE9312813843CA427/image-size/large?v=v2&amp;amp;px=999" alt="Add DQL processor with definition in member pipeline." title="jgrant_0-1788548523952.png" /&gt;&lt;/span&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;EM&gt;Optional: You can alternatively subtract now() to represent time of processing, whereas the timestamp field is the time when our OneAgent log module extracted the entries, because step 6 configures our log modules to ignore old &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-supported-timestamp-formats" target="_blank" rel="noopener"&gt;supported timestamps&lt;/A&gt; in content.&lt;BR /&gt;&lt;CODE&gt;fieldsAdd delta = (now() - timestamp.content)/power(10,6) // output is ns, so we convert to ms&lt;/CODE&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-stage-metric-extraction" target="_blank" rel="noopener"&gt;Metric extraction stage&lt;/A&gt;: Add a &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-stage-metric-extraction#value-metric" target="_blank" rel="noopener"&gt;value metric&lt;/A&gt; for &lt;I&gt;&lt;CODE&gt;delta&lt;/CODE&gt;&lt;/I&gt;.
&lt;OL&gt;
&lt;LI&gt;Add properties like &lt;CODE&gt;dt.source_entity&lt;/CODE&gt;, &lt;CODE&gt;host.name&lt;/CODE&gt;, and &lt;CODE&gt;log.source&lt;/CODE&gt; to this metric.&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-bucket-assignment#assign" target="_blank" rel="noopener"&gt;Storage stage&lt;/A&gt;: Add your store processor to save your logs to your custom bucket.&lt;/LI&gt;
&lt;LI&gt;&lt;I&gt;Optional: You can also add copies of processing, &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-stage-davis" target="_blank" rel="noopener"&gt;event&lt;/A&gt; and metric extraction processors from other pipelines but you may want to append the copied metric keys with a text fragment, like &lt;CODE&gt;.missed&lt;/CODE&gt; so they're separated, and add property &lt;CODE&gt;delta&lt;/CODE&gt;to your metric and event processors, so teams can calculate the time of creation by subtracting delta from the time of ingest, which is the timestamp used to ingest your missing, old records from their sources. If you added &lt;CODE&gt;log.source&lt;/CODE&gt; to the &lt;CODE&gt;delta&lt;/CODE&gt; metric, that dimension should include our modified log path, so you can filter by the modified source to separate extracted timeseries from the rest in the same &lt;CODE&gt;delta&lt;/CODE&gt; metric key as sources with low &lt;CODE&gt;delta&lt;/CODE&gt;&amp;nbsp;ingestion.&lt;/I&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI&gt;&lt;I&gt;Optional: If you use &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-pipeline-groups" target="_blank" rel="noopener"&gt;OpenPipeline groups&lt;/A&gt; to apply processors to multiple member pipelines, add a new pipeline group, and your chosen base pipelines for your member pipeline.&lt;/I&gt;&lt;/LI&gt;
&lt;LI&gt;Add a &lt;A href="https://docs.dynatrace.com/docs/shortlink/openpipeline-route" target="_blank" rel="noopener"&gt;dynamic route&lt;/A&gt; matching your new log path as &lt;CODE&gt;log.source == "/log/path/to/old/data/*.log"&lt;/CODE&gt; and set the target pipeline to your custom pipeline.&lt;/LI&gt;
&lt;LI&gt;Add a &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-timestamp-configuration" target="_blank" rel="noopener"&gt;timestamp/splitting rule&lt;/A&gt; with a &lt;STRONG&gt;Timestamp search limit&lt;/STRONG&gt; of &lt;STRONG&gt;0&lt;/STRONG&gt; bytes and a condition matching our modified log path.&lt;/LI&gt;
&lt;LI&gt;Add our modified log path to a &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-custom-log-source#mainclscuipage" target="_blank" rel="noopener"&gt;custom log source rule&lt;/A&gt;. Wildcards of any character except&amp;nbsp;&lt;CODE&gt;/&lt;/CODE&gt; and&amp;nbsp;&lt;CODE&gt;\&lt;/CODE&gt; are supported in the form of an asterisk &lt;CODE&gt;*&lt;/CODE&gt;.&amp;nbsp;&lt;/LI&gt;
&lt;OL&gt;
&lt;LI&gt;If your &lt;A href="https://docs.dynatrace.com/docs/shortlink/settings#scope-and-hierarchy-of-settings" target="_blank" rel="noopener"&gt;environment scope&lt;/A&gt; &lt;A href="https://docs.dynatrace.com/docs/shortlink/lma-log-ingest-rules" target="_blank" rel="noopener"&gt;log ingest rule&lt;/A&gt; &lt;STRONG&gt;[Built-in] Ingest logs from custom log sources&lt;/STRONG&gt; is disabled, either enable it or add a log ingest rule for your log path of the custom log source configuration.&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/metrics-on-grail-examples" target="_blank" rel="noopener"&gt;Query your metric&lt;/A&gt; &lt;CODE&gt;timeseries avg(your.deltas.metric.key), by: {host.name, log.source}&lt;/CODE&gt; to know the approximate timeframe to fetch your late logs. Pulling timeseries for larger timeframes has a query consumption that can be many orders of magnitude lower than fetch logs for the same timeframe, especially for a user who has access to a very large number of records.&lt;/LI&gt;
&lt;LI&gt;Add &lt;A href="https://docs.dynatrace.com/docs/shortlink/data-source-commands#fetch" target="_blank" rel="noopener"&gt;fetch parameter&lt;/A&gt;&amp;nbsp;bucket like&amp;nbsp;&lt;CODE&gt;fetch logs, bucket: {"my.custom.bucket"}&lt;/CODE&gt; to significantly lower query consumption.&lt;/LI&gt;
&lt;LI&gt;Avoid using fetch parameter &lt;CODE&gt;scanLimitGBytes&lt;/CODE&gt; set at especially large values or &lt;CODE&gt;-1&lt;/CODE&gt;, which incur unnecessary expense when you can instead, both narrow your timeframe and fetch logs only from select buckets.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Resolution&lt;/H2&gt;
&lt;P&gt;Once you complete these steps, you should find your data for the time of ingest, with any related events and metrics. With extraction and propagation of the custom log attribute delta, your app teams will know when and if any data is missing by the delta log value metric, and when the cause of an alert originated on a monitored entity by the delta event property.&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;What's next&lt;/H2&gt;
&lt;P&gt;If you experience blockers completing these steps and finding your missing log data from the modified source in Dynatrace, please don't hesitate to review our other log monitoring resources, and open a case with our support team with the steps completed, results and a link to the monitored host or files of the client-side log forwarding to API configuration, so we can start our investigation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-1600907322" data-heading="More articles can be found on the [Logs Troubleshooting Map](https://community.dynatrace.com/t5/Troubleshooting/Logs-Troubleshooting-Map/ta-p/302260)"&gt;More articles can be found on the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A class="external-link" href="https://community.dynatrace.com/t5/Troubleshooting/Logs-Troubleshooting-Map/ta-p/302260" target="_blank" rel="noopener" aria-label="https://community.dynatrace.com/t5/Troubleshooting/Logs-Troubleshooting-Map/ta-p/302260" data-tooltip-position="top"&gt;Logs Troubleshooting Map&lt;/A&gt;&lt;/H3&gt;
&lt;P&gt;We recommend reviewing&amp;nbsp;&lt;A id="link_6" class="page-link lia-link-navigation lia-custom-event" href="https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-missing-logs-in-Log-module/ta-p/300209" target="_blank" rel="noopener"&gt;Troubleshooting missing logs in Log module&lt;/A&gt;&amp;nbsp;for any monitoring gaps related to our log modules.&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Mon, 07 Sep 2026 06:23:14 GMT</pubDate>
    <dc:creator>jgrant</dc:creator>
    <dc:date>2026-09-07T06:23:14Z</dc:date>
    <item>
      <title>How to troubleshoot ingestion of missed log data after the Log age limit</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-troubleshoot-ingestion-of-missed-log-data-after-the-Log/ta-p/304040</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 case 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 didn't 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 chat or support case&amp;nbsp;&lt;/STRONG&gt;- be as specific as possible about the information the customer should include in the case.&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;Use the following formula and fill or change the bullet points:&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt; If this article didn't help, &lt;STRONG&gt;create a chat or open a support case&lt;/STRONG&gt;
&lt;UL&gt;
&lt;LI&gt;Mention that you reviewed this article.&lt;/LI&gt;
&lt;LI&gt;Include the following details:
&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;/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;BR /&gt;&lt;/EM&gt;
&lt;DIV&gt;Please submit a Product Idea with detailed information about your request and use case in the Product Ideas forum. Our Product Management team regularly reviews these suggestions:&lt;/DIV&gt;
&lt;A href="https://community.dynatrace.com/t5/Dynatrace-product-ideas/idb-p/DynatraceProductIdeas" target="_blank" rel="noopener"&gt;https://community.dynatrace.com/t5/Dynatrace-product-ideas/idb-p/DynatraceProductIdeas&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;EM&gt;Explain this will change in the future &lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;- explain that this behavior will change in a future release. (No product idea / support case needed)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;EM&gt;Alternatives -&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&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;H2&gt;&lt;BR /&gt;Related reading&lt;/H2&gt;
&lt;P&gt;&lt;EM&gt;*Link this article to other relevant configuration or troubleshooting guides, including any applicable troubleshooting maps.&lt;BR /&gt;:open_book:&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/" target="_blank" rel="noopener"&gt;XXX Troubleshooting Map&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;:open_book:&amp;nbsp; Link 1&lt;/P&gt;
&lt;P&gt;:open_book:&amp;nbsp; Link 2&lt;/P&gt;
&lt;P&gt;:open_book:&amp;nbsp; Link 3&lt;/P&gt;
&lt;P&gt;:open_book:&amp;nbsp; Link 4&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 07 Sep 2026 06:23:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-troubleshoot-ingestion-of-missed-log-data-after-the-Log/ta-p/304040</guid>
      <dc:creator>jgrant</dc:creator>
      <dc:date>2026-09-07T06:23:14Z</dc:date>
    </item>
  </channel>
</rss>

