<?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: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425300#M51978</link>
    <description>&lt;P&gt;The core python code definitely works on Windows, but what won't work is the wrapper shell scripts for Splunk - &lt;CODE&gt;splencore.sh&lt;/CODE&gt; and &lt;CODE&gt;configure.sh&lt;/CODE&gt;.&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;CODE&gt;splencore.sh&lt;/CODE&gt; is used by the data input which keeps it running&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;configure.sh&lt;/CODE&gt; is used by the configuration screen&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;If you were prepared to configure it manually, you could ignore &lt;CODE&gt;configure.sh&lt;/CODE&gt;. Then you'd just need to workaround &lt;CODE&gt;splencore.sh&lt;/CODE&gt; - either powershell or python might be a sensible starting point.&lt;/P&gt;

&lt;P&gt;It you really wanted to take this further, then you may wish to consider using the command line version instead (&lt;A href="https://community.cisco.com"&gt;https://community.cisco.com&lt;/A&gt; and search for “eNcoreCLI” or contact the Cisco Technical Alliance crew). You would still have work to do. It's not built to run as a windows service and you'd need to bypass &lt;CODE&gt;encore.sh&lt;/CODE&gt; but it's possible to run directly in python from the command line. The other thing that's not ideal in windows is that it doesn't have a clean way of handling SIGs like Linux - but there's even some code in there (search &lt;CODE&gt;windows.py&lt;/CODE&gt;) which listens for enter key press events.&lt;/P&gt;

&lt;P&gt;Good luck!&lt;/P&gt;</description>
    <pubDate>Fri, 24 Aug 2018 08:45:31 GMT</pubDate>
    <dc:creator>sastrach</dc:creator>
    <dc:date>2018-08-24T08:45:31Z</dc:date>
    <item>
      <title>Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425298#M51976</link>
      <description>&lt;P&gt;Yes, I read the documentation but "not supported" is often different than "doesn't work".  Anybody have this working on Windows before I spend too much time on it?  Any tweaks or anything to make this work?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 20:29:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425298#M51976</guid>
      <dc:creator>oagtexas</dc:creator>
      <dc:date>2018-08-23T20:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425299#M51977</link>
      <description>&lt;P&gt;Hi @oagtexas! In general, your question has a greater chance of being answered by experts in the Answers community when when you provide as much information and context as possible. Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 21:17:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425299#M51977</guid>
      <dc:creator>mstjohn_splunk</dc:creator>
      <dc:date>2018-08-23T21:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425300#M51978</link>
      <description>&lt;P&gt;The core python code definitely works on Windows, but what won't work is the wrapper shell scripts for Splunk - &lt;CODE&gt;splencore.sh&lt;/CODE&gt; and &lt;CODE&gt;configure.sh&lt;/CODE&gt;.&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;CODE&gt;splencore.sh&lt;/CODE&gt; is used by the data input which keeps it running&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;configure.sh&lt;/CODE&gt; is used by the configuration screen&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;If you were prepared to configure it manually, you could ignore &lt;CODE&gt;configure.sh&lt;/CODE&gt;. Then you'd just need to workaround &lt;CODE&gt;splencore.sh&lt;/CODE&gt; - either powershell or python might be a sensible starting point.&lt;/P&gt;

&lt;P&gt;It you really wanted to take this further, then you may wish to consider using the command line version instead (&lt;A href="https://community.cisco.com"&gt;https://community.cisco.com&lt;/A&gt; and search for “eNcoreCLI” or contact the Cisco Technical Alliance crew). You would still have work to do. It's not built to run as a windows service and you'd need to bypass &lt;CODE&gt;encore.sh&lt;/CODE&gt; but it's possible to run directly in python from the command line. The other thing that's not ideal in windows is that it doesn't have a clean way of handling SIGs like Linux - but there's even some code in there (search &lt;CODE&gt;windows.py&lt;/CODE&gt;) which listens for enter key press events.&lt;/P&gt;

&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 08:45:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425300#M51978</guid>
      <dc:creator>sastrach</dc:creator>
      <dc:date>2018-08-24T08:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425301#M51979</link>
      <description>&lt;P&gt;This is not supported on Windows, Yet.  There will be a developer working on it at the end of the year.  I cannot commit to a date yet until it's scoped and know what's involved in getting past the outstanding issues.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 17:29:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425301#M51979</guid>
      <dc:creator>douglashurd</dc:creator>
      <dc:date>2018-08-24T17:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425302#M51980</link>
      <description>&lt;P&gt;Thanks for this.  Very helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 15:08:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425302#M51980</guid>
      <dc:creator>oagtexas</dc:creator>
      <dc:date>2018-08-28T15:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425303#M51981</link>
      <description>&lt;P&gt;Thanks for the update!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 15:08:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/425303#M51981</guid>
      <dc:creator>oagtexas</dc:creator>
      <dc:date>2018-08-28T15:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco eStreamer eNcore Add-on for Splunk: Does anybody have core Python code running on the Windows servers?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/573713#M75480</link>
      <description>&lt;P&gt;Hello from the future.&amp;nbsp; I have time traveled back to 2018 to see if there are still any plans to port this to Windows.&amp;nbsp; Not my choice, I am in a Windows only shop.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Nov 2021 22:47:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-eStreamer-eNcore-Add-on-for-Splunk-Does-anybody-have-core/m-p/573713#M75480</guid>
      <dc:creator>awillcox</dc:creator>
      <dc:date>2021-11-04T22:47:40Z</dc:date>
    </item>
  </channel>
</rss>

