<?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 After upgrade to 4.2 the Events from Windows Eventslogs are partially not working, lines broken at random positions in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68028#M13754</link>
    <description>&lt;P&gt;&lt;IMG src="http://download.spp.at/6d72de95b90e4f3bb5dc260e1a43774c/Screen.jpeg" alt="screenshot" /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 26 Mar 2011 03:57:24 GMT</pubDate>
    <dc:creator>zliu</dc:creator>
    <dc:date>2011-03-26T03:57:24Z</dc:date>
    <item>
      <title>After upgrade to 4.2 the Events from Windows Eventslogs are partially not working, lines broken at random positions</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68028#M13754</link>
      <description>&lt;P&gt;&lt;IMG src="http://download.spp.at/6d72de95b90e4f3bb5dc260e1a43774c/Screen.jpeg" alt="screenshot" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2011 03:57:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68028#M13754</guid>
      <dc:creator>zliu</dc:creator>
      <dc:date>2011-03-26T03:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrade to 4.2 the Events from Windows Eventslogs are partially not working, lines broken at random positions</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68029#M13755</link>
      <description>&lt;P&gt;In Splunk 4.1.x the LINE_BREAKER setting for the stanza
[source::WinEventLog...] in the config
$SPLUNK_HOME/etc/system/default/props.conf has been set to:&lt;/P&gt;

&lt;P&gt;LINE_BREAKER =([\r\n](?=\d\d/\d\d/\d\d \d\d:\d\d:\d\d [aApPmM]{2}))&lt;/P&gt;

&lt;P&gt;this changed to the following in 4.2:&lt;/P&gt;

&lt;P&gt;LINE_BREAKER =([\r\n](?=\d{2}/\d{2}/\d{4} \d{2}:\d{2}:\d{2} [aApPmM]{2}))&lt;/P&gt;

&lt;P&gt;Workaround:&lt;/P&gt;

&lt;P&gt;LINE_BREAKER =([\r\n](?=\d{2}/\d{2}/\d{2,4} \d{2}:\d{2}:\d{2} [aApPmM]{2}))&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2011 04:07:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68029#M13755</guid>
      <dc:creator>zliu</dc:creator>
      <dc:date>2011-03-26T04:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrade to 4.2 the Events from Windows Eventslogs are partially not working, lines broken at random positions</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68030#M13756</link>
      <description>&lt;P&gt;This known issue (SPL-38325) and targeted for a fix in 4.2.1&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2011 03:29:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68030#M13756</guid>
      <dc:creator>Ellen</dc:creator>
      <dc:date>2011-04-01T03:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrade to 4.2 the Events from Windows Eventslogs are partially not working, lines broken at random positions</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68031#M13757</link>
      <description>&lt;P&gt;We tried both and we continued to get events collated into bigger splunk events - i.e. 1 big splunk event that contains a random number of windows events together with no spacing between them. So no splitting on the time/date field.&lt;/P&gt;

&lt;P&gt;However we found a solution with the help of a splunk tech, Guillaume:&lt;/P&gt;

&lt;P&gt;I used the shotgun method of creating a props.conf in /etc/system/local&lt;BR /&gt;
With:
[source::WinEventLog:Application]
LINE_BREAKER=([\r\n](?=\d{2}/\d{2}/\d{2,4} \d{2}:\d{2}:\d{2} [aApPmM]{2}))
SHOULD_LINEMERGE=false&lt;/P&gt;

&lt;P&gt;[source::WinEventLog:System]
LINE_BREAKER=([\r\n](?=\d{2}/\d{2}/\d{2,4} \d{2}:\d{2}:\d{2} [aApPmM]{2}))
SHOULD_LINEMERGE=false&lt;/P&gt;

&lt;P&gt;[source::WinEventLog:...]
LINE_BREAKER=([\r\n](?=\d{2}/\d{2}/\d{2,4} \d{2}:\d{2}:\d{2} [aApPmM]{2}))
SHOULD_LINEMERGE=false&lt;/P&gt;

&lt;P&gt;It works for system and application but not for WinEventLog:Directory Service and WinEventLog:DNS Server – so I presume the globbing ability of the ellipsis isn't grokked by the Splunk engine anymore too? (I apologise - it has been a long day).&lt;/P&gt;

&lt;P&gt;Anyway - this should hold people until the patch.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2011 22:51:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/After-upgrade-to-4-2-the-Events-from-Windows-Eventslogs-are/m-p/68031#M13757</guid>
      <dc:creator>matthewhaswell</dc:creator>
      <dc:date>2011-04-01T22:51:44Z</dc:date>
    </item>
  </channel>
</rss>

