<?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 Is it possible to transport data from a Windows event log view? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215157#M42356</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;In our environment, many applications are logging into the Windows Application Event log.&lt;BR /&gt;
We would like to transport it separately.&lt;/P&gt;

&lt;P&gt;Is it possible to transport data from a Windows Event log View?&lt;/P&gt;

&lt;P&gt;-Jens&lt;/P&gt;</description>
    <pubDate>Mon, 22 Feb 2016 15:14:43 GMT</pubDate>
    <dc:creator>JensT</dc:creator>
    <dc:date>2016-02-22T15:14:43Z</dc:date>
    <item>
      <title>Is it possible to transport data from a Windows event log view?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215157#M42356</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;In our environment, many applications are logging into the Windows Application Event log.&lt;BR /&gt;
We would like to transport it separately.&lt;/P&gt;

&lt;P&gt;Is it possible to transport data from a Windows Event log View?&lt;/P&gt;

&lt;P&gt;-Jens&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 15:14:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215157#M42356</guid>
      <dc:creator>JensT</dc:creator>
      <dc:date>2016-02-22T15:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to transport data from a Windows event log view?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215158#M42357</link>
      <description>&lt;P&gt;Yes it's possible.&lt;BR /&gt;
Take a look at this:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.3/Data/Monitorwindowseventlogdata"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.3/Data/Monitorwindowseventlogdata&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;In principle you would need something like the following in your inputs.conf file:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[WinEventLog://Application]
disabled = 0
start_from = oldest
index = yourindexname
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then simply search from your GUI with:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   index=yourindexname sourcetype=WinEventLog:Application
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The default sourcetype for Windows Application Logs is the one I specified above, but you can change this (not recommended as it'll have a major impact on parsing, etc).&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 15:49:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215158#M42357</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-02-22T15:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to transport data from a Windows event log view?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215159#M42358</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I do not want all Application Eventlogs. I want only logs from a VIEW.&lt;BR /&gt;
And no, I do not want to use blacklist/whitelist.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Jens&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 15:59:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215159#M42358</guid>
      <dc:creator>JensT</dc:creator>
      <dc:date>2016-02-22T15:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to transport data from a Windows event log view?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215160#M42359</link>
      <description>&lt;P&gt;If your view has a unique path you can do it this way:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [WinEventLog://Path-To-Your-View]
 disabled = 0
 start_from = oldest
 index = yourindexname
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[WinEventLog://Microsoft-Windows-TaskScheduler/Operational]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If that doesn't work for you, do you have any other way to uniquely identify those logs you are planning to collect? Is there a field that is unique for those events? If that's the case, blacklists and whitelists might be the only reasonable way even if you don't want to use them.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 16:23:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215160#M42359</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-02-22T16:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to transport data from a Windows event log view?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215161#M42360</link>
      <description>&lt;P&gt;You do not have to use Splunk's built-in &lt;CODE&gt;WinEventLog&lt;/CODE&gt; facility.  You can use the native Windows facilities to write a subset of logs to a directory/file and the use normal Splunk directory/file monitoring to forward them in.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 18:48:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-transport-data-from-a-Windows-event-log-view/m-p/215161#M42360</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-02-22T18:48:44Z</dc:date>
    </item>
  </channel>
</rss>

