I am using the Developer Console in Kibana to add a document to my index. This is the command:
POST my_index/_doc/test02?op_type=create
{
"user": "USERTEST055"
}
I was wondering why this isn't showing up in the discover tab? If I run the GET command it gives me the results I expect.
GET my_index/_search
{
"query": {"match": {"user": "USERTEST055"}}
}
I am guessing this has something to do with the missing @timestamp field? If so, why isn't a @timestamp field being added when it gets added to the index?
Please format your code, logs or configuration files using </> icon as explained in this guide and not the citation button. It will make your post more readable.
Or use markdown style like:
```
CODE
```
This is the icon to use if you are not using markdown format:
All timestamps stored in Elasticsearch are in UTC timezone, so the timestamp you provided is more than 30 minutes old unless you ran the query several hours ago.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.