Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ingest: Allow arrays in lowercase and uppercase processors #51048

Open
fkelbert opened this issue Jan 15, 2020 · 1 comment
Open

Ingest: Allow arrays in lowercase and uppercase processors #51048

fkelbert opened this issue Jan 15, 2020 · 1 comment
Labels
:Data Management/Ingest Node Execution or management of Ingest Pipelines including GeoIP >enhancement Team:Data Management Meta label for data/management team

Comments

@fkelbert
Copy link
Contributor

fkelbert commented Jan 15, 2020

Elastic Cloud 7.5

Currently, we implement long lists of lowercase/uppercase processors to lowercase/uppercase a list of fields. These processors should be able to process multiple fields.

Potentially, this also applies to other processors.

Current approach:

{
  "processors": [
    {
      "lowercase": {
        "field": "mail.sender"
      }
    },
    {
      "lowercase": {
        "field": "mail.sender_domain"
      }
    }
  ]
}

Desired approach:

PUT _ingest/pipeline/generic
{
  "processors": [
    {
      "lowercase": {
        "field": [ "mail.sender", "mail.sender_domain" ]
      }
    }
  ]
}
@fkelbert fkelbert added >enhancement :Data Management/Ingest Node Execution or management of Ingest Pipelines including GeoIP labels Jan 15, 2020
@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-core-features (:Core/Features/Ingest)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
:Data Management/Ingest Node Execution or management of Ingest Pipelines including GeoIP >enhancement Team:Data Management Meta label for data/management team
Projects
None yet
Development

No branches or pull requests

3 participants