<?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: Having multiple Forwarders sharing the same Instance GUID in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743042#M118063</link>
    <description>&lt;P&gt;While the solution with a scripted input is a nice trick from the technical point of view, as a seasoned admin I'd advise against using it, especially on environments you have limited/difficult connectivity with.&lt;/P&gt;&lt;P&gt;Any splunkd-spawned solutions which change the general splunkd configuration are prone to leaving your installation in a broken state should anything go wrong.&lt;/P&gt;&lt;P&gt;Of course whether it's important depends on how critical the systems are and whether you can tolerate potential downtime vs. what you can save by doing the "automation".&lt;/P&gt;&lt;P&gt;The risk is yours. You have been warned.&lt;/P&gt;</description>
    <pubDate>Sun, 30 Mar 2025 11:51:06 GMT</pubDate>
    <dc:creator>PickleRick</dc:creator>
    <dc:date>2025-03-30T11:51:06Z</dc:date>
    <item>
      <title>Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742943#M118030</link>
      <description>&lt;P&gt;As the title suggests, I am having multiple Universal Forwarders sharing the same Instance GUID due to the mistake of the owners of the servers, as they were just copying the .conf files from servers to servers.&lt;/P&gt;&lt;P&gt;So my question is, what is the impact of this. I think missing the logs from these machines is one of the impact, as every 10-20 seconds, the IP and Hostname change, but the Instance GUID and Instance Name remains the same.&lt;/P&gt;&lt;P&gt;And of course the obvious question, how do I fix this? Solving from the higher level of the system is prefer, like using the deployment server (which I can SSH into), since I have limited access to the servers, and probably have to TeamView them or write a guide for them.&lt;/P&gt;&lt;P&gt;I read that the GUID is now in the `$SPLUNK_HOME/etc/instance.cfg` file, and there is probably a GUID there, which would be the same across the servers. Can I just delete the GUID line and restart the splunk service, and the deployment server would give it a new one?&lt;/P&gt;&lt;P&gt;Can I delete the record from the Deployment Server UI and it would generated a new one and auto update the instance.cfg file of the Forwarder?&lt;/P&gt;&lt;P&gt;I read the docs instance.cfg.conf - Splunk Documentation and it mention not to edit the file, so I am a bit confused.&lt;/P&gt;&lt;P&gt;And I also saw that the docs mentioned that server.conf also has the GUID value, so do I have to do anything in the server.conf file?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 13:58:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742943#M118030</guid>
      <dc:creator>Na_Kang_Lim</dc:creator>
      <dc:date>2025-03-28T13:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742951#M118033</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/308546"&gt;@Na_Kang_Lim&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're right in that the GUID is set in&amp;nbsp;&lt;SPAN&gt;$SPLUNK_HOME/etc/instance.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Such as&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[general]
guid = 5e7f7ee5-ab7b-4e90-8f9e-b2cf1f86e6f3&lt;/LI-CODE&gt;&lt;P&gt;Unfortunately the DS isnt designed to write to this location as you would typically distribute apps from it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Depending how confident you are feeling, it would be possible to write a script which you could deploy to all the clients using your DS which would write a new GUID to that file, once applied you can then remove the app.&amp;nbsp;&lt;BR /&gt;Below I'll include snippets of an app I've used previously for this problem - Disclaimer - Its generally not advised to do this sort of thing, use extreme caution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;1. Create an app on your deployment server - something like "regenerate_guid":&lt;BR /&gt;2. Create a bin directory within the app and create the following file called regenerate_guid.py&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;import uuid
import os
import configparser

INSTANCE_CFG_PATH = "/opt/splunkforwarder/etc/instance.cfg"

def generate_guid():
    return str(uuid.uuid4())

def write_guid_to_instance_cfg(guid):
    config = configparser.ConfigParser()
    try:
        config['general'] = {'guid': guid}  # Always write the GUID, overwriting any previous value
        with open(INSTANCE_CFG_PATH, "w") as f:
            config.write(f)
        print(f"Successfully wrote new GUID to {INSTANCE_CFG_PATH}")
    except Exception as e:
        print(f"Error writing to {INSTANCE_CFG_PATH}: {e}")

def main():
    new_guid = generate_guid()
    write_guid_to_instance_cfg(new_guid)
    print("Regenerated and overwrote GUID.")

if __name__ == "__main__":
    main()&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;3. Create&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;inputs.conf&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Create an&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;inputs.conf&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;file in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;default/&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;directory of your app:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[script://./bin/regenerate_guid.py]
# Run once a day (86400) but in reality the app should be removed after actioned!
interval = 86400
source = regenerate_guid
sourcetype = regenerate_guid
index = main
disabled = 0&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;[script://./bin/regenerate_guid.py]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;: This defines a script input that runs the Python script. The path is relative to the app's directory structure.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;interval&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;: How often the script should run (in seconds). We only want it to run once so Ive set this to 1 day, remove the app once it has run.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;source/sourcetype/index - Not really useful as we dont want the data it outputs but typical for a modular input.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;disabled = 0&lt;/SPAN&gt;&lt;SPAN class=""&gt;: Enables the input.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;4. Create&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;default/app.conf&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;[install]
state = enabled

[launcher]
author = Your Name
description =  DANGEROUS APP: Periodically checks and regenerates the Splunk Instance GUID &lt;SPAN class=""&gt;if&lt;/SPAN&gt; it&lt;SPAN class=""&gt;'s missing. USE WITH EXTREME CAUTION!  REQUIRES inputs.conf for proper deployment.
version = 1.1.0

[package]
id = regenerate_guid&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Workflow:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;OL class=""&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;The Deployment Server deploys the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;regenerate_guid&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;app to the forwarder, configure the DS so the app causes a restart.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;The input should run straight away once installed and then every 24hrs, check the _internal index to check it has run.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Uninstall the app by removing the app or the client(s) from the serverclass/DS&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Important Considerations (Reiterated!)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;This approach is still potentially dangerous if mishandled!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;The script runs&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;periodically&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;This means it will reset the GUID every 24 hours. Make sure you remove it once it has run.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Permissions are critical.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If the Splunk user does not have write access to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;instance.cfg&lt;/SPAN&gt;&lt;SPAN class=""&gt;, the script will fail. &lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Testing is essential!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Test in a non-production environment before deploying it to production, or at least deploy to a single host you can directly access to validate etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Monitor the logs!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Monitor the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;splunkd.log&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;file on the forwarders to ensure the script is running correctly.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Please let me know how you get on and consider adding karma to this or any other answer if it has helped.&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Will&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 15:18:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742951#M118033</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-03-28T15:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742954#M118035</link>
      <description>&lt;P&gt;In addition to my previous message, I've realised that all the servers might have the same serverName in $SPLUNK_HOME/etc/system/local/server.conf - Is that the case too?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[general]
serverName = &amp;lt;YourServerName&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;This also cannot be overwritten with an app config because its in the system/local directory, so if you want to update this then you would need to do something similar to the regenerate_guid script I posted.&lt;/P&gt;&lt;P&gt;Reminder - That script is less than ideal so proceed with caution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know how you get on and consider adding karma to this or any other answer if it has helped.&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Will&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 15:20:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742954#M118035</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-03-28T15:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742962#M118037</link>
      <description>&lt;P&gt;Thank you for your detail automation solution! Then what about the manual solution? If I were to write a guide for the owners of the server, what do I need them to do, and what do I have to do too? And yes, I am having both duplicate Instance GUID and Instance Name! The hostname of course it is not the same, I believe it takes the Computer Name of the Host, but the Instance GUID and Instance Name do duplicate!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 16:15:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742962#M118037</guid>
      <dc:creator>Na_Kang_Lim</dc:creator>
      <dc:date>2025-03-28T16:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742963#M118038</link>
      <description>&lt;P&gt;Okay&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/308546"&gt;@Na_Kang_Lim&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the manual approach is to update the $SPLUNK_HOME/etc/instange.cfg and replace the guid = &amp;lt;oldGuid&amp;gt; with a new random guid.&lt;BR /&gt;Then update the $SPLUNK_HOME/etc/system/local/server.conf and change the serverName under the [general] stanza.&lt;/P&gt;&lt;P&gt;Please let me know how you get on and consider adding karma to this or any other answer if it has helped.&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Will&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 16:23:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742963#M118038</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-03-28T16:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742966#M118040</link>
      <description>&lt;P&gt;I see that the serverName already has the default value as $HOSTNAME (the docs of server.conf mentioned it), so it means that I can just delete the key-value pair, right?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 17:18:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742966#M118040</guid>
      <dc:creator>Na_Kang_Lim</dc:creator>
      <dc:date>2025-03-28T17:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742990#M118046</link>
      <description>&lt;P class="lia-indent-padding-left-30px"&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;And about the first approach, after updating the values in the .conf files, I still have to restart the splunkd service on the server, right? Or restarting splunk service on the DS is an alternative way?&lt;/P&gt;</description>
      <pubDate>Sat, 29 Mar 2025 02:41:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/742990#M118046</guid>
      <dc:creator>Na_Kang_Lim</dc:creator>
      <dc:date>2025-03-29T02:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743042#M118063</link>
      <description>&lt;P&gt;While the solution with a scripted input is a nice trick from the technical point of view, as a seasoned admin I'd advise against using it, especially on environments you have limited/difficult connectivity with.&lt;/P&gt;&lt;P&gt;Any splunkd-spawned solutions which change the general splunkd configuration are prone to leaving your installation in a broken state should anything go wrong.&lt;/P&gt;&lt;P&gt;Of course whether it's important depends on how critical the systems are and whether you can tolerate potential downtime vs. what you can save by doing the "automation".&lt;/P&gt;&lt;P&gt;The risk is yours. You have been warned.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Mar 2025 11:51:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743042#M118063</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-03-30T11:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743325#M118097</link>
      <description>&lt;P&gt;If you have so called golden image which are created incorrectly (it contains those critical configurations), You could read this old post&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Installation/EC2-from-AMI-having-splunk-installed-stops-working/m-p/669633#M13418" target="_blank"&gt;https://community.splunk.com/t5/Installation/EC2-from-AMI-having-splunk-installed-stops-working/m-p/669633#M13418&lt;/A&gt;&lt;/P&gt;&lt;P&gt;r. Ismo&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 21:47:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743325#M118097</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-04-02T21:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple Forwarders sharing the same Instance GUID</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743488#M118111</link>
      <description>&lt;P&gt;No. Restarting DS won't change anything on the deployment clients (your forwarders). Restarting forwarders requires... well, restarting forwarders. That's why I keep saying that ugly hacks like scripting those restarts from scripted inputs are risky. If something goes wrong, you end up with a downed process and no way to bring it up.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 08:27:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Having-multiple-Forwarders-sharing-the-same-Instance-GUID/m-p/743488#M118111</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-04-04T08:27:25Z</dc:date>
    </item>
  </channel>
</rss>

