<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: SharePoint ULS log analysis using ELK</title>
	<atom:link href="http://blog.comperiosearch.com/blog/2014/08/01/sharepoint-log-analysis-using-elk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.comperiosearch.com/blog/2014/08/01/sharepoint-log-analysis-using-elk/</link>
	<description>A blog about Search as THE solution</description>
	<lastBuildDate>Mon, 26 Oct 2015 18:07:52 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
	<item>
		<title>By: Dustin Miller</title>
		<link>http://blog.comperiosearch.com/blog/2014/08/01/sharepoint-log-analysis-using-elk/#comment-19121</link>
		<dc:creator><![CDATA[Dustin Miller]]></dc:creator>
		<pubDate>Tue, 12 May 2015 20:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.comperiosearch.com/?p=2775#comment-19121</guid>
		<description><![CDATA[Thought I&#039;d throw in here - I have a config that supports the multi-line expressions used for ULS logs pretty handily, just in case you&#039;re still seeking log analysis bliss with Logstash:

&lt;code&gt;
  if [type] == &quot;uls&quot; {
    grok {
      match =&gt; { &quot;message&quot; =&gt; &quot;%{DATESTAMP:ulstime}.? %{PROG:process} \(%{BASE16NUM:processid}\)%{SPACE}%{BASE16NUM:tid}%{SPACE}%{DATA:area}\s{2,}%{SPACE}%{DATA:category}\s{2,}%{SPACE}%{WORD:event_id}%{SPACE}%{WORD:priority}%{SPACE}%{DATA:ulsmessage}\.{,3}%{SPACE}(?[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?$&quot; }
      add_field =&gt; [ &quot;received_at&quot;, &quot;%{@timestamp}&quot; ]
    }
    date {
      match =&gt; [ &quot;ulstime&quot;, &quot;MM/dd/YYYY HH:mm:ss.SS&quot;]
      timezone =&gt; &quot;America/Chicago&quot;
    }
    mutate {
      replace =&gt; [ &quot;message&quot;, &quot;%{ulsmessage}&quot; ]
      remove_field =&gt; [ &quot;ulsmessage&quot; ]
    }
    multiline {
      pattern =&gt; &quot;^[^\.]&quot;
      negate =&gt; true
      what =&gt; &quot;previous&quot;
      add_tag =&gt; [ &quot;multiline&quot; ]
    }
  }
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Thought I&#8217;d throw in here &#8211; I have a config that supports the multi-line expressions used for ULS logs pretty handily, just in case you&#8217;re still seeking log analysis bliss with Logstash:</p>
<p><code><br />
  if [type] == "uls" {<br />
    grok {<br />
      match =&gt; { "message" =&gt; "%{DATESTAMP:ulstime}.? %{PROG:process} \(%{BASE16NUM:processid}\)%{SPACE}%{BASE16NUM:tid}%{SPACE}%{DATA:area}\s{2,}%{SPACE}%{DATA:category}\s{2,}%{SPACE}%{WORD:event_id}%{SPACE}%{WORD:priority}%{SPACE}%{DATA:ulsmessage}\.{,3}%{SPACE}(?[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?$" }<br />
      add_field =&gt; [ "received_at", "%{@timestamp}" ]<br />
    }<br />
    date {<br />
      match =&gt; [ "ulstime", "MM/dd/YYYY HH:mm:ss.SS"]<br />
      timezone =&gt; "America/Chicago"<br />
    }<br />
    mutate {<br />
      replace =&gt; [ "message", "%{ulsmessage}" ]<br />
      remove_field =&gt; [ "ulsmessage" ]<br />
    }<br />
    multiline {<br />
      pattern =&gt; "^[^\.]"<br />
      negate =&gt; true<br />
      what =&gt; "previous"<br />
      add_tag =&gt; [ "multiline" ]<br />
    }<br />
  }<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
