Logstash+ES message parsing to JSON

I have the following message to parse:

<6> Jan 9 07:19:26 w2k8r233110
0|TestCompany|Analytics|8.0.1310|TestSignature|This is test
message|Medium|src=10.100.1.100

Here the actual message part is:
0|TestCompany|Analytics|8.0.1310|TestSignature|This is test
message|Medium|src=10.100.1.100

Could someone help me out in creating a JSON from this message?

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/7d0cc81a-f02f-4b4f-b43b-53534a31ea84%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Hej San:

Not sure exactly if this is what you need/want kind of new to this myself.
But if you need a parsing string for this type of message so logstash can
identify some specific parts from it. There is a very good site called
http://grokdebug.herokuapp.com/ where you can put the line to parse and
then test the pattern line to test so you can see if the parsing is
working. It has helped me quite a lot.

For your specific part of the message you could try this line:
(?[^|]+)|(?[^|]+)|(?[^|]+)|(?[^|]+)|(?[^|]+)|(?[^|]+)|(?[^|]+)|(?.*)

This will put the "0" in field1, "TestCompany" in field2 etc...And pass
these as fields in elasticsearch.

Hope this helps,
s.r./F

On Friday, February 14, 2014 10:56:30 PM UTC+1, san wrote:

I have the following message to parse:

<6> Jan 9 07:19:26 w2k8r233110
0|TestCompany|Analytics|8.0.1310|TestSignature|This is test
message|Medium|src=10.100.1.100

Here the actual message part is:
0|TestCompany|Analytics|8.0.1310|TestSignature|This is test
message|Medium|src=10.100.1.100

Could someone help me out in creating a JSON from this message?

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/11db47b2-1ae7-468a-8f53-8d9fee10da43%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.