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

nOutput_ES: provide field indexes to easier use in ES #84

Open
nmaguiar opened this issue Aug 9, 2018 · 0 comments
Open

nOutput_ES: provide field indexes to easier use in ES #84

nmaguiar opened this issue Aug 9, 2018 · 0 comments
Assignees

Comments

@nmaguiar
Copy link
Collaborator

nmaguiar commented Aug 9, 2018

Each attribute value is sent to ES like:

{
   "name_of_attribute": {
      "key1": "value1",
      "property2": "value2",
      "property3": "value3"
   },
   "stamp_key": "value_key"
}

but to filter by key1, that might be used in other attributes, several specific filters might be needed. If an execArg is added to provide a list of key field indexes (in this case [ "key1" ]) the resulting value sent to ES would be:

{
   "name_of_attribute": {
      "property2": "value2",
      "property3": "value3"
   },
   "key1": "value1",
   "stamp_key": "value_key"
}
@nmaguiar nmaguiar self-assigned this Aug 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant