<?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: How to input an excel file from an email automatically in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407935#M72344</link>
    <description>&lt;P&gt;Correct.&lt;BR /&gt;
xls files are a binary format , so you'd need to decode this in a custom data handler to a textual format.&lt;BR /&gt;
Plenty of code librarys exist to do the decoding for you that you could reuse in your custom data handler.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Jul 2018 02:21:43 GMT</pubDate>
    <dc:creator>Damien_Dallimor</dc:creator>
    <dc:date>2018-07-03T02:21:43Z</dc:date>
    <item>
      <title>How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407929#M72338</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;everyday I have an email with an Excell file attached.&lt;BR /&gt;
To input the data in Splunk, I have to save the file, convert the file in csv then add it to Splunk.&lt;BR /&gt;
Is it possible to do this action automatically ?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 10:52:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407929#M72338</guid>
      <dc:creator>Alaza</dc:creator>
      <dc:date>2018-06-29T10:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407930#M72339</link>
      <description>&lt;P&gt;Splunk does not automatically handle Excel files.  However, you may be able to write a scripted or modular input that reads the mail, detaches the file, converts it to CSV, and indexes it.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 12:15:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407930#M72339</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-06-29T12:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407931#M72340</link>
      <description>&lt;P&gt;That's the script I need, that's why I asked my question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 13:22:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407931#M72340</guid>
      <dc:creator>Alaza</dc:creator>
      <dc:date>2018-06-29T13:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407932#M72341</link>
      <description>&lt;P&gt;Your question asked if it was possible and it is, but with some effort on your part.&lt;BR /&gt;
Getting someone to do the work for you is something else.  Check splunkbase to see if it's been done already (I'm pretty sure it hasn't).  Otherwise, you'll have to persuade someone to write a script for you. &lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 17:00:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407932#M72341</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-06-29T17:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407933#M72342</link>
      <description>&lt;P&gt;I do not have the knowledge to do this script, that's why I need some help.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 10:58:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407933#M72342</guid>
      <dc:creator>Alaza</dc:creator>
      <dc:date>2018-07-02T10:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407934#M72343</link>
      <description>&lt;P&gt;@Alaza, I am not 100% sure but Protocol Data Input should be able to handle Excel file for input to Splunk. However, as Rich mentioned it might require you to create your own Custom Data Handler.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://splunkbase.splunk.com/app/1901/"&gt;https://splunkbase.splunk.com/app/1901/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;@Damien Dallimore , Can you confirm?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 11:38:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407934#M72343</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-07-02T11:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407935#M72344</link>
      <description>&lt;P&gt;Correct.&lt;BR /&gt;
xls files are a binary format , so you'd need to decode this in a custom data handler to a textual format.&lt;BR /&gt;
Plenty of code librarys exist to do the decoding for you that you could reuse in your custom data handler.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2018 02:21:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407935#M72344</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2018-07-03T02:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to input an excel file from an email automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407936#M72345</link>
      <description>&lt;P&gt;There are probably some apps on splunkbase to help you read email.  The trickiest part will be finding a way to convert the Excel file into CSV, but there may be python libraries that do that.  As always, Google is your friend.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2018 12:51:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-input-an-excel-file-from-an-email-automatically/m-p/407936#M72345</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-07-03T12:51:18Z</dc:date>
    </item>
  </channel>
</rss>

