logstash-filter-grok
logstash-filter-grok copied to clipboard
Grok plugin to parse unstructured (log) data into something structured.
The behaviour of a grok where a semantic is named the same as the input field is not described in the documentation, and is counter-intuitive. e.g.: ``` input { generator...
Thanks for contributing to Logstash! If you haven't already signed our CLA, here's a handy link: https://www.elastic.co/contributor-agreement/
Currently this plugin loads patterns from the `patterns/` directory within `logstash-patterns-core` and also from `$LOGSTASH_HOME/patterns` by default: ``` @@patterns_path ||= Set.new @@patterns_path += [ LogStash::Patterns::Core.path, LogStash::Environment.pattern_path("*") ] ``` On Logstash...
A number of syslog specs are failing on Logstash 8.x: ``` logstash_1_4ac9a179a5f3 | 1) LogStash::Filters::Grok ietf 5424 syslog line 1 2009-06-30T18:30:00+02:00 paxton.local grokdebug - - [id1 foo="bar"] No process ID....
Minor correction syntax error/typo in commit 64555883e55608123e1cf332b2326534768da409 (#169) Would you like for me to reference this pull request along side the original in `CHANGELOG.md` as well? 🙏
- Better field references handling ([issue 173](https://github.com/logstash-plugins/logstash-filter-grok/issues/173)). - Better handling of the interaction between `overwrite` and `target` settings.
The grok debuggers do not accept the logstash `:int ` conversion. Had me confused for ages. Thanks for contributing to Logstash! If you haven't already signed our CLA, here's a...
Previous functionality grouped each field by name meaning you lost all context about your events: ```json { "logsource": [ "evita", "evita" ], "message": [ "connect from camomile.cloud9.net[168.100.1.3]", "connect from steve.cloud9.net[168.100.1.4]"...
**Logstash information**: Please include the following information: 1. Logstash version (e.g. `bin/logstash --version`) 7.x **Description of the problem including expected versus actual behavior**: The following filters should be equivalent, but...