Graph shows no data

Hi,

I wanted to try out x-pack graph. So I created an index, and filled it with a bunch of dummy data. It consists of 10 reports, each containing a title, description and a list of measures. The description is identical across all reports and some of the have the same measures as well. I figured this should be enough similarity to explore them in graph.

But I ran into a problem: no matter what I do, no vertices show up in graph. I tried the tips in Graph Troubleshooting | Kibana User Guide [6.2] | Elastic but couldnt get it to work.

This is one of my requests:

{
"query": {
"query_string": {
"query": ""
}
},
"controls": {
"use_significance": false,
"timeout": 5000
},
"connections": {
"vertices": [
{
"field": "measures",
"size": 5,
"min_doc_count": 1
}
]
},
"vertices": [
{
"field": "measures",
"size": 5,
"min_doc_count": 1
}
]
}

response:

{
"took": 0,
"timed_out": false,
"failures": ,
"vertices": ,
"connections":
}

What am I missing? Why are there no vertices and edges showing up?

Your query matches nothing. Try search for *

Thanks a lot, I thought I was doing a star search already. Probably because Discover does a star search if nothing is selected.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.