<?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 What do log ingest warnings on my records mean? (dt.ingest.warnings) in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/What-do-log-ingest-warnings-on-my-records-mean-dt-ingest/ta-p/303795</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;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Summary&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;Use the &lt;/SPAN&gt;&lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt;&lt;SPAN&gt; attribute to identify which individual log records were affected by ingestion limits or processing errors, and understand what each warning value means and how to resolve it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Problem&lt;/H2&gt;
&lt;P&gt;Use this article when ingested log records don't look as expected&amp;nbsp; content appears truncated, attributes are missing, timestamps are wrong, or processing rules seem to have no effect and you want to confirm whether the cause is an ingestion limit or a processing error rather than a configuration problem.&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; is an array attribute set on individual log records when the ingestion pipeline detects and acts on a limit or processing condition. It is the record-level complement to SFM events: SFM events tell you about the health of log &lt;STRONG&gt;sources and components&lt;/STRONG&gt;; &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; tells you about the health of specific &lt;STRONG&gt;records&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Troubleshooting steps&lt;/H2&gt;
&lt;H3&gt;How to find records with warnings&lt;/H3&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;View all warnings with counts and source&lt;/H4&gt;
&lt;DIV class="dutmcw0"&gt;
&lt;PRE class="dutmcw2"&gt;&lt;CODE class="language-dql"&gt;fetch logs
| filter isNotNull(dt.ingest.warnings)
| summarize count(), by:{dt.ingest.warnings, dt.openpipeline.source, log.source}
| limit 100
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;Find records with a specific warning&lt;/H4&gt;
&lt;DIV class="dutmcw0"&gt;
&lt;PRE class="dutmcw2"&gt;&lt;CODE class="language-dql"&gt;fetch logs
| filter matchesValue(dt.ingest.warnings, "content_trimmed")
| limit 100
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Important:&lt;/STRONG&gt; &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; is an &lt;STRONG&gt;array type&lt;/STRONG&gt;. The filter &lt;CODE&gt;dt.ingest.warnings == "content_trimmed"&lt;/CODE&gt; will &lt;STRONG&gt;not&lt;/STRONG&gt; work. Always use &lt;CODE&gt;matchesValue()&lt;/CODE&gt; or &lt;CODE&gt;isNotNull()&lt;/CODE&gt;.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;Alternative: detect truncation by content length&lt;/H4&gt;
&lt;P&gt;If &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; is not available in your environment version, use content length as a proxy:&lt;/P&gt;
&lt;DIV class="dutmcw0"&gt;
&lt;PRE class="dutmcw2"&gt;&lt;CODE class="language-dql"&gt;fetch logs
| filter stringLength(content) == 8192
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;Or search for the truncation marker appended in some ingest paths:&lt;/P&gt;
&lt;DIV class="dutmcw0"&gt;
&lt;PRE class="dutmcw2"&gt;&lt;CODE class="language-dql"&gt;fetch logs
| filter endsWith(content, "[TRUNCATED]")
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;HR /&gt;
&lt;H2&gt;Complete warning reference&lt;/H2&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;Content and attribute size warnings&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;Warning value&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;When it appears&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;What to do&lt;/FONT&gt;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;content_trimmed&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Content exceeded the maximum byte size limit&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;at ingest&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(before processing rules)&lt;/TD&gt;
&lt;TD&gt;Trim content at the sender or shipper before ingesting; reduce log verbosity for high-volume sources&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;content_trimmed_pipe&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Content exceeded the maximum byte size limit&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;after&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;OpenPipeline processing rules were applied&lt;/TD&gt;
&lt;TD&gt;Review processing rules that expand content; the final processed content must stay within limits&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_count_trimmed&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Number of attributes exceeded the maximum per-record count&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;at ingest&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD&gt;Reduce the number of attributes sent per record; consolidate attributes where possible&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_count_trimmed_pipe&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Attribute count exceeded the limit&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;after&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;processing rules were applied&lt;/TD&gt;
&lt;TD&gt;Review processing rules that add attributes; prune attributes not needed for querying or dashboards&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_key_trimmed&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;At least one attribute key exceeded the 100-byte key size limit&lt;/TD&gt;
&lt;TD&gt;Shorten attribute key names at the sender&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_val_count_trimmed&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;A multi-value attribute had too many values&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;at ingest&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD&gt;Reduce the number of values in multi-value attributes&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_val_count_trimmed_pipe&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;A multi-value attribute had too many values&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;after&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;processing rules&lt;/TD&gt;
&lt;TD&gt;Review processing rules that generate multi-value attributes&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_val_size_trimmed&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;At least one attribute value exceeded the maximum value byte size&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;at ingest&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD&gt;Trim large attribute values at the sender; attribute values must stay within the documented limit&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;attr_val_size_trimmed_pipe&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;At least one attribute value exceeded the limit&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;after&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;processing rules&lt;/TD&gt;
&lt;TD&gt;Review processing rules that expand attribute values&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;Timestamp warnings&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;Warning value&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;When it appears&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;What to do&lt;/FONT&gt;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;timestamp_corrected&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;The record timestamp was more than 10 minutes in the future; it was reset to the current time&lt;/TD&gt;
&lt;TD&gt;Correct the timestamp at the source or sender; ensure the source system clock is synchronised&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;Attribute correction warnings&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;Warning value&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;When it appears&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;What to do&lt;/FONT&gt;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;common_attr_corrected&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;At least one of the following reserved attributes was corrected:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;status&lt;/CODE&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;loglevel&lt;/CODE&gt;, or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;event.type&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Review the values sent for these attributes; they must conform to the expected format or they will be corrected automatically&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;Processing rule warnings&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;Warning value&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;When it appears&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;What to do&lt;/FONT&gt;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;processing_batch_timeout&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;A batch timeout occurred while executing OpenPipeline log processing rules&lt;/TD&gt;
&lt;TD&gt;Review the processing rules&amp;nbsp; a timeout indicates a rule is taking too long; check for complex regular expressions or large data volumes&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;processing_transformer_timeout&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;An execution timeout occurred in one of the processing transformers&lt;/TD&gt;
&lt;TD&gt;Simplify the processing rule or transformer logic&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;processing_transformer_error&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;An execution error occurred in one of the processing transformers&lt;/TD&gt;
&lt;TD&gt;Review the transformer configuration; check for syntax errors or invalid field references&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;processing_transformer_throttled&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Execution was throttled in one of the processing transformers&lt;/TD&gt;
&lt;TD&gt;Reduce processing complexity or volume; this indicates resource pressure on the pipeline&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;processing_output_record_conversion_error&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;An output conversion error occurred for some records during processing&lt;/TD&gt;
&lt;TD&gt;Review the output format configuration of the affected processing rule&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;processing_prepare_input_error&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;A "prepare input" error occurred in one of the enabled processing rules&lt;/TD&gt;
&lt;TD&gt;Review the input preparation step of the affected rule; check for missing or malformed required input fields&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;HR /&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;The &lt;CODE&gt;_pipe&lt;/CODE&gt; suffix: what it means&lt;/H2&gt;
&lt;P&gt;Warning values ending in &lt;CODE&gt;_pipe&lt;/CODE&gt; indicate the condition occurred &lt;STRONG&gt;after&lt;/STRONG&gt; OpenPipeline processing rules were applied to the record, rather than at the point of initial ingestion. This distinction matters for diagnosis:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;A warning &lt;STRONG&gt;without&lt;/STRONG&gt; &lt;CODE&gt;_pipe&lt;/CODE&gt; → the record arrived too large or with too many attributes&amp;nbsp; fix the sender.&lt;/LI&gt;
&lt;LI&gt;A warning &lt;STRONG&gt;with&lt;/STRONG&gt; &lt;CODE&gt;_pipe&lt;/CODE&gt; → the record was within limits when it arrived, but a processing rule expanded it beyond limits fix the processing rule.&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;Relationship to SFM events&lt;/H2&gt;
&lt;P&gt;&lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; and SFM events are complementary diagnostic tools that operate at different levels:&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;Tool&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;Level&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH class="lia-align-center"&gt;&lt;FONT size="2"&gt;What it covers&lt;/FONT&gt;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Individual record&lt;/TD&gt;
&lt;TD&gt;Which specific records were affected by a limit or processing error, and what happened to them&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SFM events (&lt;CODE&gt;dt.system.events&lt;/CODE&gt;)&lt;/TD&gt;
&lt;TD&gt;Log source / component&lt;/TD&gt;
&lt;TD&gt;Whether a source is being discovered, whether a component is healthy, and whether data loss is occurring at the pipeline level&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;Use &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; when records arrive but don't look right. Use SFM events when records don't arrive at all or a component is unhealthy.&lt;/P&gt;
&lt;HR /&gt;
&lt;H2&gt;Common scenarios&lt;/H2&gt;
&lt;H3&gt;"My log content is cut off"&lt;/H3&gt;
&lt;P&gt;Query for &lt;CODE&gt;content_trimmed&lt;/CODE&gt; or &lt;CODE&gt;content_trimmed_pipe&lt;/CODE&gt;. Confirm with &lt;CODE&gt;stringLength(content)&lt;/CODE&gt;. → If &lt;CODE&gt;content_trimmed&lt;/CODE&gt; is present: trim at the sender. → If &lt;CODE&gt;content_trimmed_pipe&lt;/CODE&gt; is present: review the OpenPipeline processing rule that expands content.&lt;/P&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;"An attribute is missing or shorter than expected"&lt;/H3&gt;
&lt;P&gt;Query for &lt;CODE&gt;attr_val_size_trimmed&lt;/CODE&gt; or &lt;CODE&gt;attr_val_size_trimmed_pipe&lt;/CODE&gt;. → If present: the attribute value exceeded the byte limit. Trim at the sender (&lt;CODE&gt;_trimmed&lt;/CODE&gt;) or in the processing rule (&lt;CODE&gt;_pipe&lt;/CODE&gt;).&lt;/P&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;"Records appear under the wrong time"&lt;/H3&gt;
&lt;P&gt;Query for &lt;CODE&gt;timestamp_corrected&lt;/CODE&gt;. → If present: the source timestamp was more than 10 minutes in the future. Verify the source system clock.&lt;/P&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;"A processing rule doesn't seem to be working"&lt;/H3&gt;
&lt;P&gt;Query for &lt;CODE&gt;processing_transformer_error&lt;/CODE&gt;, &lt;CODE&gt;processing_transformer_timeout&lt;/CODE&gt;, or &lt;CODE&gt;processing_batch_timeout&lt;/CODE&gt;. → If present: the rule encountered an error or timeout. Review the rule configuration.&lt;/P&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3&gt;"Records arrived but &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; is absent"&lt;/H3&gt;
&lt;P&gt;The record was processed without any limit being applied. The issue is not an ingestion limit&amp;nbsp; investigate the configuration (ingest rule, OpenPipeline routing, bucket assignment) instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;What's next&lt;/H2&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Opening a support case&amp;nbsp; with below details&lt;/STRONG&gt;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;DQL query result showing affected &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; values and counts&lt;/LI&gt;
&lt;LI&gt;Sanitized sample record showing the full &lt;CODE&gt;dt.ingest.warnings&lt;/CODE&gt; array and the affected fields&lt;/LI&gt;
&lt;LI&gt;OpenPipeline processing rule configuration (sanitized), if &lt;CODE&gt;_pipe&lt;/CODE&gt; warnings are present&lt;/LI&gt;
&lt;LI&gt;Source system and ingestion method (OneAgent, API, OpenTelemetry, Fluent Bit, etc.)&lt;/LI&gt;
&lt;LI&gt;Applicable OneAgent, ActiveGate, or Operator version&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&lt;BR /&gt;Related reading&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/analyze-explore-automate/logs/lma-troubleshooting/lma-ingest-warnings" target="_blank" rel="noopener noreferrer"&gt;Log ingestion warnings&amp;nbsp; official reference&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/analyze-explore-automate/log-monitoring/lmc-troubleshooting/lmc-ingest-warnings" target="_blank" rel="noopener noreferrer"&gt;Log ingestion warnings&amp;nbsp; Log Monitoring Classic&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://docs.dynatrace.com/docs/analyze-explore-automate/logs/lma-limits" target="_blank" rel="noopener noreferrer"&gt;Log ingestion limits&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/tkb/workflowpage/tkb-id/troubleshooting/article-id/1188" target="_blank" rel="noopener noreferrer"&gt;My logs went silent where do I start?&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/Troubleshooting-JSON-parsing-in-Log-module/ta-p/300189" target="_blank" rel="noopener noreferrer"&gt;Troubleshooting JSON Parsing in Log Module&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.dynatrace.com/news/blog/modern-log-management-resilience-and-self-service-upgrades-for-log-ingestion/" target="_blank" rel="noopener noreferrer"&gt;Improve log ingest health with smarter log management&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.dynatrace.com/t5/Troubleshooting/Logs-Troubleshooting-Map/ta-p/302260" target="_blank" rel="noopener noreferrer"&gt;Dynatrace Logs Troubleshooting Map&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;</description>
    <pubDate>Fri, 04 Sep 2026 06:49:17 GMT</pubDate>
    <dc:creator>noel_david</dc:creator>
    <dc:date>2026-09-04T06:49:17Z</dc:date>
    <item>
      <title>What do log ingest warnings on my records mean? (dt.ingest.warnings)</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/What-do-log-ingest-warnings-on-my-records-mean-dt-ingest/ta-p/303795</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>Fri, 04 Sep 2026 06:49:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/What-do-log-ingest-warnings-on-my-records-mean-dt-ingest/ta-p/303795</guid>
      <dc:creator>noel_david</dc:creator>
      <dc:date>2026-09-04T06:49:17Z</dc:date>
    </item>
  </channel>
</rss>

