Creating index-pattens in kibana 6.5.3

Hello

I trying to create my index with curl

curl -X POST "http://127.0.0.1:5601/api/saved_objects/index-pattern/test" -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d'
{
"attributes": {
"title": "test*",
"timeFieldName":"@timestamp"
}
}'

result is ok and my index-name is created

The issue is I can t access to any information , I can see my index-name under Discover menu but when I click on this last nothing happened searching is looping and no answer.

If I deleted this last and created through the interface everything worked fine

The main thing that could cause this would be not using the correct timeFieldName.

Other than that, having an incorrect filter in Discover would prevent data from coming up in a search. When you are in Discover, start out by clicking the New link at the top. Also make sure the time picker has bounds set to a range that matches your timeField's timestamps.

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