logstash-filter-grok icon indicating copy to clipboard operation
logstash-filter-grok copied to clipboard

Grok plugin to parse unstructured (log) data into something structured.

Results 64 logstash-filter-grok issues
Sort by recently updated
recently updated
newest added

This would be a useful feature if the `tag_on_faliure` attribute would interpolate dynamic template variables. For example, given a template variable `type = syslog`: ``` grok { match => [...

enhancement

The following documentation snippet may be outdated/misleading. https://www.elastic.co/guide/en/logstash/current/plugins-filters-grok.html > Optionally you can add a data type conversion to your grok pattern. By default all semantics are saved as strings. If...

docs

If by mistake the match config contains a hash instead of a valid string or array like this ``` grok { match => { a => { "b" => "c"...

> I have confirmed this is a problem in logstash-2.1.0 as well. I am using logstash-1.4.2 and found a grok exception happening for some of our training and testing files....

We have a logstash grok filter with a single `match => {message => '%{PATTERN}'}`, where `PATTERN` is made out of several other patterns joined with `|` (i.e. a grok file...

I'm using logstash 1.4.2. I'm joining two log messages ``` Feb 16 13:32:20 dhcp-ahof dhcpd: DHCPID c47e5a92 Feb 16 13:32:20 dhcp-ahof dhcpd: DHCPDISCOVER from 54:52:00:42:7b:fb (Some computer) via 192.168.42.1 ```...

bug

(This issue was originally filed by @mrec at https://github.com/elastic/logstash/issues/2271) --- (This comes from the discussion of #2244) When testing a config using grok and custom patterns, a user will often...

enhancement
breaking-compatibility

I'm inputting a field called text. this field may at times contains a URL.What I would like to do is extract the URL's from text, and put them in a...

(This issue was originally filed by @woodyyou at https://github.com/elastic/logstash/issues/1843) --- I put grok patterns in a file, didn't realized there was a space at the end. It resulted not match....

enhancement
breaking-compatibility

(This issue was originally filed by @PAStheLoD at https://github.com/elastic/logstash/issues/2049) --- It'd be very handy to get the resulting PCRE expressions for filter development and debugging purposes. (Since there are quite...

enhancement