Correct syntax for adding a filter aggregation in a Kibana visualization as a JSON input (filtering for a specific property value)Multiple filters and an aggregate in elasticsearchKibana 4 and relative time filter/json inputinput controls for easy filtering in kibana dashboard?ElasticSearch Index/Insert with NEST failQuery to aggregate over nested field with filter in elastic searchSorting by keyword in Kibana DiscoverHow to turn fields in a text file into terms in kibanaFilter out records with a wildcardVega visualizations for kibana - aggregations and accessing the document fieldsToo many buckets, aggregation fails on histogram
What is the indigenous Russian word for a wild boar?
Is floating in space similar to falling under gravity?
Team member doesn't give me the minimum time to complete a talk
Asking bank to reduce APR instead of increasing credit limit
What are the adverb + 何 +を doing in the following sentence?
Get LaTeX form from step by step solution
Biblical Basis for 400 years of silence between old and new testament
Could IPv6 make NAT / port numbers redundant?
How to properly maintain eye contact with people that have distinctive facial features?
Understanding STM32 datasheet regarding decoupling capacitors
Can non-English-speaking characters use wordplay specific to English?
How crucial is a waifu game storyline?
California: "For quality assurance, this phone call is being recorded"
How should I push back against my job assigning "homework"?
What does it mean when you think without speaking?
If a massive object like Jupiter flew past the Earth how close would it need to come to pull people off of the surface?
Is it possible to change original filename of an exe?
How was Apollo supposed to rendezvous in the case of a lunar abort?
Preserving culinary oils
The deliberate use of misleading terminology
Why does the UK have more political parties than the US?
Why do Russians call their women expensive ("дорогая")?
What caused the tendency for conservatives to not support climate change regulations?
Term for checking piece whose opponent daren't capture it
Correct syntax for adding a filter aggregation in a Kibana visualization as a JSON input (filtering for a specific property value)
Multiple filters and an aggregate in elasticsearchKibana 4 and relative time filter/json inputinput controls for easy filtering in kibana dashboard?ElasticSearch Index/Insert with NEST failQuery to aggregate over nested field with filter in elastic searchSorting by keyword in Kibana DiscoverHow to turn fields in a text file into terms in kibanaFilter out records with a wildcardVega visualizations for kibana - aggregations and accessing the document fieldsToo many buckets, aggregation fails on histogram
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to perform the simplest filter for a specific property value, as a JSON input, in a Kibana visualization, thoroughly without success.
I can't, to my surprise, find concrete examples in doing that (have been searching for a couple of minutes now).
Say we have a document with the following structure:
a: true,
b: 10
How can I add a Filter aggregation for all documents with a = true
?
I tried using "script", "query", "filters" api, but all give me parse errors. My filter jsons are all valid, my problem is with the exact syntax elastic is expecting, but all examples I found out there and tried - give me parsing errors (after making the amendments to my index structure).
Kibana's version: 6.4.3
How is this accomplished ?

add a comment |
I am trying to perform the simplest filter for a specific property value, as a JSON input, in a Kibana visualization, thoroughly without success.
I can't, to my surprise, find concrete examples in doing that (have been searching for a couple of minutes now).
Say we have a document with the following structure:
a: true,
b: 10
How can I add a Filter aggregation for all documents with a = true
?
I tried using "script", "query", "filters" api, but all give me parse errors. My filter jsons are all valid, my problem is with the exact syntax elastic is expecting, but all examples I found out there and tried - give me parsing errors (after making the amendments to my index structure).
Kibana's version: 6.4.3
How is this accomplished ?

add a comment |
I am trying to perform the simplest filter for a specific property value, as a JSON input, in a Kibana visualization, thoroughly without success.
I can't, to my surprise, find concrete examples in doing that (have been searching for a couple of minutes now).
Say we have a document with the following structure:
a: true,
b: 10
How can I add a Filter aggregation for all documents with a = true
?
I tried using "script", "query", "filters" api, but all give me parse errors. My filter jsons are all valid, my problem is with the exact syntax elastic is expecting, but all examples I found out there and tried - give me parsing errors (after making the amendments to my index structure).
Kibana's version: 6.4.3
How is this accomplished ?

I am trying to perform the simplest filter for a specific property value, as a JSON input, in a Kibana visualization, thoroughly without success.
I can't, to my surprise, find concrete examples in doing that (have been searching for a couple of minutes now).
Say we have a document with the following structure:
a: true,
b: 10
How can I add a Filter aggregation for all documents with a = true
?
I tried using "script", "query", "filters" api, but all give me parse errors. My filter jsons are all valid, my problem is with the exact syntax elastic is expecting, but all examples I found out there and tried - give me parsing errors (after making the amendments to my index structure).
Kibana's version: 6.4.3
How is this accomplished ?


asked Mar 24 at 10:14
VeverkeVeverke
3,1242465
3,1242465
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
An example:
POST /sales/_search?size=0
"aggs" :
"docs" :
"filter" : "term": "a": "true" ,
Here is the link to the official documentation with example.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322708%2fcorrect-syntax-for-adding-a-filter-aggregation-in-a-kibana-visualization-as-a-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
An example:
POST /sales/_search?size=0
"aggs" :
"docs" :
"filter" : "term": "a": "true" ,
Here is the link to the official documentation with example.
add a comment |
An example:
POST /sales/_search?size=0
"aggs" :
"docs" :
"filter" : "term": "a": "true" ,
Here is the link to the official documentation with example.
add a comment |
An example:
POST /sales/_search?size=0
"aggs" :
"docs" :
"filter" : "term": "a": "true" ,
Here is the link to the official documentation with example.
An example:
POST /sales/_search?size=0
"aggs" :
"docs" :
"filter" : "term": "a": "true" ,
Here is the link to the official documentation with example.
answered Mar 26 at 8:25


Brijesh ShahBrijesh Shah
1747
1747
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322708%2fcorrect-syntax-for-adding-a-filter-aggregation-in-a-kibana-visualization-as-a-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown