<?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 need to build an automation to import CSV from below mentioned github location into Splunk lookup file in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744744#M241305</link>
    <description>&lt;P&gt;anybody have experience for&amp;nbsp;building an automation to import CSV from&amp;nbsp; github location into Splunk lookup file,&amp;nbsp;CSV files are constantly changing, and I need to automate daily updates&lt;/P&gt;</description>
    <pubDate>Wed, 23 Apr 2025 07:17:10 GMT</pubDate>
    <dc:creator>Zoe_</dc:creator>
    <dc:date>2025-04-23T07:17:10Z</dc:date>
    <item>
      <title>need to build an automation to import CSV from below mentioned github location into Splunk lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744744#M241305</link>
      <description>&lt;P&gt;anybody have experience for&amp;nbsp;building an automation to import CSV from&amp;nbsp; github location into Splunk lookup file,&amp;nbsp;CSV files are constantly changing, and I need to automate daily updates&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 07:17:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744744#M241305</guid>
      <dc:creator>Zoe_</dc:creator>
      <dc:date>2025-04-23T07:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: need to build an automation to import CSV from below mentioned github location into Splunk lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744753#M241307</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309005"&gt;@Zoe_&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may find the&amp;nbsp;Webtools Add-on helpful here, you can use the custom curl command in the app to request your data and then parse it into a table, then use outputlookup to save it.&lt;/P&gt;&lt;P&gt;Here is an example I have used previously:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1745396823955.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38710i32728044E9FAA927/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1745396823955.png" alt="livehybrid_0-1745396823955.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The SPL for this is:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| curl uri=https://raw.githubusercontent.com/livehybrid/TA-aws-trusted-advisor/refs/heads/main/package/lookups/trusted_advisor_checks.csv 
| rex field=curl_message max_match=1000 "(?&amp;lt;data&amp;gt;.+)\n?" 
| mvexpand data
| fields data
| rex field=data "^(?&amp;lt;id&amp;gt;[^,]+),(?&amp;lt;name&amp;gt;\"[^\"]+\"|[^,]+),(?&amp;lt;category&amp;gt;\"[^\"]+\"|[^,]+),(?&amp;lt;description&amp;gt;\".*\"|[^,]+)$"
| fields - data&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 08:27:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744753#M241307</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-23T08:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: need to build an automation to import CSV from below mentioned github location into Splunk lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744811#M241323</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;- This curl tool sounds useful.&lt;/P&gt;&lt;P&gt;And &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309005"&gt;@Zoe_&lt;/a&gt;&amp;nbsp; you just need to add &lt;STRONG&gt;| outputlookup &amp;lt;your-lookup-name&amp;gt;&lt;/STRONG&gt; at the end of &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt; 's query.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 17:57:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/need-to-build-an-automation-to-import-CSV-from-below-mentioned/m-p/744811#M241323</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2025-04-23T17:57:10Z</dc:date>
    </item>
  </channel>
</rss>

