grokdebug icon indicating copy to clipboard operation
grokdebug copied to clipboard

Results 8 grokdebug issues
Sort by recently updated
recently updated
newest added

Does anybody know who maintains https://grokdebug.herokuapp.com/? It has been down for at least a week.

Using grok variable names with [brackets] in them does not seem to work. This can make it harder to debug Logstash grok patterns as the brackets are used to define...

https://github.com/nickethier/grokdebug/blob/7e108f4b0469adebea158ab68956f84b273629b6/views/index.haml#L10

It's not clear how to define a custom grok pattern to debug it. Indications says that `One per line, the syntax for a grok pattern is %{SYNTAX:SEMANTIC}`, but it's not...

The application works excellent for developing and testing patterns. A couple things that I think would greatly improve work flow (especially when building generic patterns files) would be: - Multiple...

A pattern like this: %{NUMBER:num:int} where the :int cause the output to be converted causes a "no matches". There is also :float according to the docs. Workaround - remove type...

Input:<foo>bar</foo> Pattern: %{GREEDYDATA:data} Result: missing <foo> and </foo> ``` { "data": [ [ "bar" ] ] } ```