<?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: Intermediate forwarder auditing in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755428#M29740</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249032"&gt;@cmeo-bcit&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I usually use this configuration (on HF) to create a field at index time (as &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;hinted):&lt;/P&gt;&lt;P&gt;fields.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[splunk_hf]
INDEXED = true&lt;/LI-CODE&gt;&lt;P&gt;props.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[default]
TRANSFORMS-default = set_splunk_hf&lt;/LI-CODE&gt;&lt;P&gt;transforms.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[set_splunk_hf]
WRITE_META = true
INGEST_EVAL = splunk_hf := splunk_server&lt;/LI-CODE&gt;&lt;P&gt;This solution correctly runs if you have only one HF level; if your data pass through more HFs, you have to use a different transforms configuration:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[set_splunk_hf]
WRITE_META = true
INGEST_EVAL = splunk_hf=case(isnull(splunk_hf),splunk_server,1=1,splunk_hf.":".splunk_server)&lt;/LI-CODE&gt;&lt;P&gt;I added a proposal on Splunk ideas to add this feature as a standard in Splunk systems and it's "under consideration", if you think that's a good idea, vote for it at&amp;nbsp;&lt;A href="https://ideas.splunk.com/ideas/EID-I-1731" target="_blank"&gt;https://ideas.splunk.com/ideas/EID-I-1731&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 12 Nov 2025 07:58:36 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2025-11-12T07:58:36Z</dc:date>
    <item>
      <title>Intermediate forwarder auditing</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755425#M29738</link>
      <description>&lt;P&gt;Consider email headers which show all the steps involved in getting the email item from where it was sent to where it is going, give or take spoofing and other whimsy.&lt;/P&gt;&lt;P&gt;Is there a search in Splunk to display all the systems which have handled a particular event, from the original forwarder (easy), via any and all intermediate forwarders (less so...).&lt;/P&gt;&lt;P&gt;The value of this would be to identify a possibly misconfigured system somewhere in what could be a complex chain, or where you have different intermediate forwarders depending on where you are in the network.&lt;/P&gt;&lt;P&gt;My feeling is that this is not logged, but I could be wrong, and even so, there may be a way to assemble the path an event has taken somehow.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 03:56:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755425#M29738</guid>
      <dc:creator>cmeo-bcit</dc:creator>
      <dc:date>2025-11-12T03:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Intermediate forwarder auditing</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755427#M29739</link>
      <description>&lt;P&gt;You are right, by default Splunk doesn't capture this information.&lt;/P&gt;&lt;P&gt;You can use a ruleset (not transform since it would only be fired once) to add an indexed field to your event on each step along the way. But it only works on a "heavy" component.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 07:19:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755427#M29739</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-11-12T07:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Intermediate forwarder auditing</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755428#M29740</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249032"&gt;@cmeo-bcit&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I usually use this configuration (on HF) to create a field at index time (as &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;hinted):&lt;/P&gt;&lt;P&gt;fields.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[splunk_hf]
INDEXED = true&lt;/LI-CODE&gt;&lt;P&gt;props.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[default]
TRANSFORMS-default = set_splunk_hf&lt;/LI-CODE&gt;&lt;P&gt;transforms.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[set_splunk_hf]
WRITE_META = true
INGEST_EVAL = splunk_hf := splunk_server&lt;/LI-CODE&gt;&lt;P&gt;This solution correctly runs if you have only one HF level; if your data pass through more HFs, you have to use a different transforms configuration:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[set_splunk_hf]
WRITE_META = true
INGEST_EVAL = splunk_hf=case(isnull(splunk_hf),splunk_server,1=1,splunk_hf.":".splunk_server)&lt;/LI-CODE&gt;&lt;P&gt;I added a proposal on Splunk ideas to add this feature as a standard in Splunk systems and it's "under consideration", if you think that's a good idea, vote for it at&amp;nbsp;&lt;A href="https://ideas.splunk.com/ideas/EID-I-1731" target="_blank"&gt;https://ideas.splunk.com/ideas/EID-I-1731&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 07:58:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755428#M29740</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-11-12T07:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Intermediate forwarder auditing</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755449#M29742</link>
      <description>&lt;P&gt;1. As I wrote before, transform will fire only once. Use a ruleset.&lt;/P&gt;&lt;P&gt;2. Use simple = instead of := in INGEST_EVAL. This will create multivalued fields. Yes. I tried doing it your way so that you have a single value with the whole chain but the := operator's performance is worse than straight assignment, it's easier to look for single values and the more intermediate steps you have, the more cardinality of your field raises.&lt;/P&gt;&lt;P&gt;3. I would be very cautious about using a transform (or ruleset) class called "default". It's a very popular word, it's easy to cause namespace clash.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 19:32:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755449#M29742</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-11-12T19:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Intermediate forwarder auditing</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755554#M29744</link>
      <description>&lt;P&gt;I've upvoted Giuseppe's Idea&amp;nbsp; EID-I-1731 for this issue. In the meantime, the workarounds suggested will work for an HF only, which doesn't help if your intermediate forwarders are UF.&lt;/P&gt;&lt;P&gt;Accepted the answer anyway because this is as good as it gets for now.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Nov 2025 21:23:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755554#M29744</guid>
      <dc:creator>cmeo-bcit</dc:creator>
      <dc:date>2025-11-16T21:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Intermediate forwarder auditing</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755566#M29745</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249032"&gt;@cmeo-bcit&lt;/a&gt;&amp;nbsp;,&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 by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 07:13:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/Intermediate-forwarder-auditing/m-p/755566#M29745</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-11-17T07:13:25Z</dc:date>
    </item>
  </channel>
</rss>

