<?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: Duplicate fields in Splunk events in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688108#M234641</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for the reply. using stats helps in removing the duplicate values in "statistics" tab.&amp;nbsp; However, the duplicate fields are still appearing in "Events" tab.&amp;nbsp;&amp;nbsp;I don't understand how it's happening.&lt;/P&gt;&lt;P&gt;Ps. Due to unknown reasons I can't attach images.&lt;/P&gt;</description>
    <pubDate>Tue, 21 May 2024 05:55:07 GMT</pubDate>
    <dc:creator>Yashvik</dc:creator>
    <dc:date>2024-05-21T05:55:07Z</dc:date>
    <item>
      <title>Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688099#M234637</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;When we doing a splunk search in our application (sh_app1), we noticed some fields are duplicated / double up (refer: sample_logs.png)&lt;/P&gt;&lt;P&gt;if we do the same search in another application (sh_welcome_app_ui), we do not see any duplication for the same fields.&lt;/P&gt;&lt;TABLE width="441"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="150"&gt;cid&lt;/TD&gt;&lt;TD width="291"&gt;Perf-May06-9-151xxx&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;level&lt;/TD&gt;&lt;TD&gt;INFO&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;node_name&lt;/TD&gt;&lt;TD&gt;aks-application-xxx&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SPL being used.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=splunk_idx source= some_source
| rex field=log "level=(?&amp;lt;level&amp;gt;.*?),"
| rex field=log "\[CID:(?&amp;lt;cid&amp;gt;.*?)\]"
| rex field=log "message=(?&amp;lt;msg&amp;gt;.*?),"
| rex field=log "elapsed_time_ms=\"(?&amp;lt;elap&amp;gt;.*?)\"" | search msg="\"search pattern\""
| table cid, msg, elap&lt;/LI-CODE&gt;&lt;P&gt;The event count remains same if we search inside that app or any other app, only some fields are&amp;nbsp; duplicated. We couldn't figure out where the actual issue is.&amp;nbsp;&lt;BR /&gt;Can someone help?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 08:48:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688099#M234637</guid>
      <dc:creator>Yashvik</dc:creator>
      <dc:date>2024-05-21T08:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688102#M234639</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260645"&gt;@Yashvik&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;this probably depends on the data you're using,&lt;/P&gt;&lt;P&gt;anyway, try to group your ata by a common key usingstats instead table command, something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=splunk_idx source= some_source
| rex field=log "level=(?&amp;lt;level&amp;gt;.*?),"
| rex field=log "\[CID:(?&amp;lt;cid&amp;gt;.*?)\]"
| rex field=log "message=(?&amp;lt;msg&amp;gt;.*?),"
| rex field=log "elapsed_time_ms=\"(?&amp;lt;elap&amp;gt;.*?)\"" | search msg="\"search pattern\""
| stats values(msg) AS msg values(elap) AS elap BY cid&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 05:33:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688102#M234639</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-21T05:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688108#M234641</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for the reply. using stats helps in removing the duplicate values in "statistics" tab.&amp;nbsp; However, the duplicate fields are still appearing in "Events" tab.&amp;nbsp;&amp;nbsp;I don't understand how it's happening.&lt;/P&gt;&lt;P&gt;Ps. Due to unknown reasons I can't attach images.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 05:55:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688108#M234641</guid>
      <dc:creator>Yashvik</dc:creator>
      <dc:date>2024-05-21T05:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688111#M234642</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260645"&gt;@Yashvik&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;events are the ones you have, if you don't want duplicated events also in the Events tab use the dedup command (&lt;A href="https://docs.splunk.com/Documentation/SCS/current/SearchReference/DedupCommandOverview" target="_blank"&gt;https://docs.splunk.com/Documentation/SCS/current/SearchReference/DedupCommandOverview&lt;/A&gt;) to remome the duplicated ones.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 06:02:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688111#M234642</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-21T06:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688126#M234643</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks, however actual issue is fields duplication. Please find the attached screenshot and you will see some fields contains duplicate values (cid, cluster, container_id, container_name etc).&amp;nbsp;&lt;BR /&gt;I'd like to understand why they are showing 2 values instead of one.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 08:17:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688126#M234643</guid>
      <dc:creator>Yashvik</dc:creator>
      <dc:date>2024-05-21T08:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688129#M234644</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260645"&gt;@Yashvik&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, these are your logs and we cannot change them, you can only display them only one time to avoid unuseful duplications.&lt;/P&gt;&lt;P&gt;In addition, this is very frequent having json logs.&lt;/P&gt;&lt;P&gt;For this reason, I hint to use stats to display your logs in Statistics (and dashboard Panels) even if, in the raw logs you have duplicated values in some fields.&lt;/P&gt;&lt;P&gt;You shouldn't modify your logs, they are as they are and you use them displaying what you need.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 08:24:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688129#M234644</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-21T08:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688133#M234646</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;But source doesn't contain any duplicate fields while sending to Splunk &amp;amp; they are appearing&amp;nbsp; only if we search within particular app.&amp;nbsp;&lt;BR /&gt;As said earlier, If I run the same query outside the app, I don't see these duplicate field values. My users don't have permissions to run the searches outside their app so they see duplicate entries every time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 08:57:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688133#M234646</guid>
      <dc:creator>Yashvik</dc:creator>
      <dc:date>2024-05-21T08:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688144#M234648</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260645"&gt;@Yashvik&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;your data seems to be json, that usually has duplicated field values.&lt;/P&gt;&lt;P&gt;Anyway, could you share a sample of your data (please not a screenshot)?&lt;/P&gt;&lt;P&gt;About the behaviour in a particoular app, maybe there are some calculated fields that elaborate your values.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 10:33:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688144#M234648</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-21T10:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688159#M234650</link>
      <description>&lt;P&gt;Sure&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Sample event:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A class="" title="" href="https://splunk-sh.splunk.ext.national.com.au/en-GB/app/sh_usl_ui/search?earliest=1714917600&amp;amp;latest=1715090400&amp;amp;q=search%20index%3Duslc_platform_nonprod_idx%20source%3Daks-ms-usl-acct-maint-ppte%0A%7C%20rex%20field%3Dlog%20%22level%3D(%3F%3Clevel%3E.*%3F)%2C%22%0A%7C%20rex%20field%3Dlog%20%22%5C%5BCID%3A(%3F%3Ccid%3E.*%3F)%5C%5D%22%0A%7C%20rex%20field%3Dlog%20%22message%3D(%3F%3Cmsg%3E.*%3F)%2C%22%0A%7C%20rex%20field%3Dlog%20%22elapsed_time_ms%3D%5C%22(%3F%3Celap%3E.*%3F)%5C%22%22%20%7C%20search%20msg%3D%22%5C%22Kafka%20listener%20%27account%20credit%20limit%20event%20enrichment%27%5C%22%22%0A%7C%20stats%20values(msg)%20AS%20msg%20values(elap)%20AS%20elap%20values(application)%20AS%20app%20values(cluster)%20AS%20cont%20BY%20cid&amp;amp;display.page.search.mode=verbose&amp;amp;dispatch.sample_ratio=1&amp;amp;display.page.search.tab=events&amp;amp;display.general.type=statistics&amp;amp;workload_pool=Default&amp;amp;sid=1716295478.104467_E6C38A7A-07BA-482C-BC63-F5FCADBA41CD#" target="_blank" rel="noopener"&gt;[-]&lt;/A&gt;&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;application&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;uslcc-nonprod&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;cluster&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;AKS-SYD-NPDI1-ESE-2&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;container_id&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;9ae09dba5f0ca4c75dfxxxxxxb6b1824ec753663f02d832cf5bfb6f0dxxxxxxx&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;container_image&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;acrsydnpdi1ese.azurecr.io/ms-usl-acct-maint:snapshot-a23584a1221b57xxxxxb437d80xxxxxxb6e65&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;container_name&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;ms-usl-acct-maint&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;level&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;INFO&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;log&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;2024-05-06 11:08:40.385 INFO 26 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] [CID:Perf-May06-9-151615] l.AccountCreditLimitChangedKafkaListener : message="xxxxx listener 'account credit limit event enrichment'", elapsed_time_ms="124"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;namespace&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;uslcc-nonprod&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;node_name&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;aks-application-3522xxxxx-vmss0000xl&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;pod_ip&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;10.209.82.xxx&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;pod_name&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;ms-usl-acct-maint-ppte-7dc7xxxxxx-2fc58&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;tenant&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;uslcc&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;timestamp&lt;/SPAN&gt;:&amp;nbsp;&lt;SPAN class=""&gt;2024-05-06 11:08:40.385&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Raw:&amp;nbsp;&amp;nbsp;&lt;BR /&gt;{"&lt;SPAN class=""&gt;log&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;2024-05-06&lt;/SPAN&gt; &lt;SPAN class=""&gt;11:08:40.385&lt;/SPAN&gt; &lt;SPAN class=""&gt;INFO&lt;/SPAN&gt; &lt;SPAN class=""&gt;26&lt;/SPAN&gt; --&lt;SPAN class=""&gt;-&lt;/SPAN&gt; [&lt;SPAN class=""&gt;org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1&lt;/SPAN&gt;] [&lt;SPAN class=""&gt;CID:Perf-May06-9-151615&lt;/SPAN&gt;] &lt;SPAN class=""&gt;l.AccountCreditLimitChangedxxxxxListener&lt;/SPAN&gt; &lt;SPAN class=""&gt;:&lt;/SPAN&gt; &lt;SPAN class=""&gt;message=\&lt;/SPAN&gt;"xxxxx&amp;nbsp;&lt;SPAN class=""&gt;listener&lt;/SPAN&gt; '&lt;SPAN class=""&gt;account&lt;/SPAN&gt; &lt;SPAN class=""&gt;credit&lt;/SPAN&gt; &lt;SPAN class=""&gt;limit&lt;/SPAN&gt; &lt;SPAN class=""&gt;event&lt;/SPAN&gt; &lt;SPAN class=""&gt;enrichment&lt;/SPAN&gt;'&lt;SPAN class=""&gt;\&lt;/SPAN&gt;", &lt;SPAN class=""&gt;elapsed_time_ms=\&lt;/SPAN&gt;"&lt;SPAN class=""&gt;124\&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;application&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;uslcc-nonprod&lt;/SPAN&gt;","&lt;SPAN class=""&gt;cluster&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;AKS-SYD-NPDI1-ESE-2&lt;/SPAN&gt;","&lt;SPAN class=""&gt;namespace&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;uslcc-nonprod&lt;/SPAN&gt;","&lt;SPAN class=""&gt;tenant&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;uslcc&lt;/SPAN&gt;","&lt;SPAN class=""&gt;timestamp&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;2024-05-06&lt;/SPAN&gt; &lt;SPAN class=""&gt;11:08:40.385&lt;/SPAN&gt;","&lt;SPAN class=""&gt;level&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;INFO&lt;/SPAN&gt;","&lt;SPAN class=""&gt;container_id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;9ae09dba5xxxxxfd2724b6b1824ec753663f02dxxxxxf0d55d59940&lt;/SPAN&gt;","&lt;SPAN class=""&gt;container_name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;ms-usl-acct-maint&lt;/SPAN&gt;","&lt;SPAN class=""&gt;container_image&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;acrsydnpdi1ese.azurecr.io/ms-usl-acct-maint:snapshot-a23584a1221b5749xxxxxd803eb2aabaxxxxx5&lt;/SPAN&gt;","&lt;SPAN class=""&gt;pod_name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;ms-usl-acct-maint-ppte-7dc7c9xxxxc58&lt;/SPAN&gt;","&lt;SPAN class=""&gt;pod_ip&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;10.209.82.xxx&lt;/SPAN&gt;","&lt;SPAN class=""&gt;node_name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;aks-application-35229300-vmssxxxxxl&lt;/SPAN&gt;"}&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 12:49:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688159#M234650</guid>
      <dc:creator>Yashvik</dc:creator>
      <dc:date>2024-05-21T12:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688252#M234667</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260645"&gt;@Yashvik&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, check the caculated fields in your app.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 07:02:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688252#M234667</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T07:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688259#M234668</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp; will get it checked.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 08:22:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688259#M234668</guid>
      <dc:creator>Yashvik</dc:creator>
      <dc:date>2024-05-22T08:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688265#M234671</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260645"&gt;@Yashvik&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 08:41:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/688265#M234671</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T08:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate fields in Splunk events</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/700118#M237603</link>
      <description>&lt;P&gt;In my case I was sending TCP info (JSON) through API REST, I had to recreate my source type configuration like this:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Name: Whatever&lt;/LI&gt;&lt;LI&gt;Description: Whatever&lt;/LI&gt;&lt;LI&gt;Destination App: Whatever&lt;/LI&gt;&lt;LI&gt;Category: Whatever&lt;/LI&gt;&lt;LI&gt;Indexed extractions: &lt;STRONG&gt;json&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Next in the Advanced TAB, you need to add this extra setting: &lt;STRONG&gt;KV_MODE = none&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;The reason is that the json I send via API already contains the event attribute in the splunk expected way, so KV_MODE (key value mode) should be set to none, like this way you avoid double parsing the event json data.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
 "sourcetype": "MyCustomSourceType",
 "index": "index-name",
 "event": {
  "a": "aa",
  "n": 1, .....
 }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 17:13:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Duplicate-fields-in-Splunk-events/m-p/700118#M237603</guid>
      <dc:creator>Eider</dc:creator>
      <dc:date>2024-09-25T17:13:13Z</dc:date>
    </item>
  </channel>
</rss>

