D
D
duoman2017-02-06 11:36:35
Python
duoman, 2017-02-06 11:36:35

Kibana not displaying data?

Installed elasticsearch + kibana
Set up communication
Set up auto id
Set up mapping on the data field
Wrote a small python script that parses the status and generates json

{u'num_1': 603.9, u'num_2': 602.01, u'type': u'def',  'timestamp': '2017-02-06 11:23:53.554183'}

I send a post request, I get a response to a successful addition
In kibana I set up index patterns for the index, I took a timestamp
In Discover: No results found :(
Please tell me how to display a table with my numbers by time
PS did in Dev Tools
GET _search
 {
  "query": {
    "match": {
      "type":"def"
    }
  }
}

Displays no more than 5 results...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Evgeny Panin, 2018-02-22
@varenich

The same trouble, but 10 records were displayed.
I found the size parameter in the SearchAPI, which is responsible for this.
Here is such a construction, for example, it works fine:
Now I am looking for what needs to be specified so that all results are displayed

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question