Giter VIP home page Giter VIP logo

Comments (6)

synFK avatar synFK commented on July 20, 2024 1

Can't we just expand a field name that contains dots – e.g. "permission.user.read" – to a nested object or would this be breaking any conventions?

from logstash-filter-grok.

berglh avatar berglh commented on July 20, 2024

I also have replicated this problem with Logstash 1.5.6 and Logstash 2.10. Grok Filter and Nested Objects/Fields Ambiguity, I only just found this issue and seems like it's in a more relevant location with respect to the Grok filter plugin.

What I find strange is that if you launch Logstash with --debug you can see the semantic matches like %{PATTERN:[object][field]} being expanded similar to a the custom pattern matches.

from logstash-filter-grok.

berglh avatar berglh commented on July 20, 2024

So, turns out that the grok filter uses Oniguruma syntax. Looking into the Oniguruma syntax, you can see in L209 of the syntax guide, how the name match reflects that in the custom pattern match of the grok filter: Ruby Regex Syntax

[(?<name>subexp)]    define named group
                     (All characters of the name must be a word character.)

There you have it, it explains the invalid char in group name error in more detail by defining what characters are legal, of which the square brackets are not included. This is an upstream change and would be hard to justify to push it that far up. There may also be some regex related reasons, such as square brackets usually referencing a regex character class.

I think the only current option is to create the custom pattern file and reference it in the grok match:

Pattern File

PERMS [r-]

Grok Filter

 grok {
              patterns_dir => "/etc/logstash/conf.d/patterns"   
              match => [ "source_field", "%{PERMS:[permission][user][read]}" ]
}

Due to the requirement of no period separated fields in Elasticsearch 2.0, which is how nested fields used to be referenced, I think it might be good to disambiguate the documentation to cover this senario in detail. Additionally, the Logstsah Configuration test should probably pick this up and concisely inform you of the reason.

from logstash-filter-grok.

dnk8n avatar dnk8n commented on July 20, 2024

Any update on this issue? I am having difficulty with the same problem (logstash 5.6.4)

from logstash-filter-grok.

jordansissel avatar jordansissel commented on July 20, 2024

from logstash-filter-grok.

willemdh avatar willemdh commented on July 20, 2024

Hey, Just found this issue.. had some troubles doing a regex capture, see #66

from logstash-filter-grok.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.