Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any Python implementation of logstash's grok functionality?

Logstash's grok is a string parsing tool which built on top of regex, it provides many patterns that make string parsing jobs so much easier, I just fell in love with it the first time I used it. But unfortunately, it's written in Ruby, makes it impossible to be used in my Python projects, so I'm wondering is there any Python implementation of grok, or is there any Python alternative that can simplify string parsing like grok do?

like image 632
Reorx Avatar asked Apr 15 '14 08:04

Reorx


1 Answers

I built a project in github called pygrok based on @georg 's answer to meet my log pattern parsing requirements in python codes.I think pygrok may be helpful for you,Let me introduce it in brief:

pygrok

A Python library to parse strings and extract information from structured/unstructured data

What can I use Grok for?

  • parsing and matching patterns in a string(log, message etc.)
  • relieving from complex regular expressions.
  • extracting information from structured/unstructured data

You can find it here.

like image 180
Gary Gauh Avatar answered Sep 30 '22 13:09

Gary Gauh