Hi
i am trying to create an index-pattern from query , i am able to create it with bellow query
POST /.kibana/doc/1
{
"type" : "index-pattern",
"index-pattern":
{
"title" : "test",
"timeFieldName" : "@timestamp"
}
}
output of the above query is
{
"_index": ".kibana",
"_type": "doc",
"_id": "1",
"_version": 3,
"result": "created",
"_shards": {
"total": 2,
"successful": 1,
"failed": 0
},
"_seq_no": 129,
"_primary_term": 16
}
when i go to management and click on "test" index pattern i am gettig strange error i.e
Could not locate that index-pattern (id: 1), click here to re-create it
what is wrong here , please help me
Thanks for the reply