# Could not find curl's created index-pattern in Kibana Dashboard

**URL:** https://forum.opensearch.org/t/could-not-find-curls-created-index-pattern-in-kibana-dashboard/5870
**Category:** Index Management
**Created:** [May 7, 2021, 9:36am UTC](https://forum.opensearch.org/t/could-not-find-curls-created-index-pattern-in-kibana-dashboard/5870 "2021-05-07T09:36:40Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Kamikague](https://avatars.discourse-cdn.com/v4/letter/k/e79b87/32.png) [@Kamikague](https://forum.opensearch.org/u/Kamikague)
#### Post date: [May 7, 2021, 9:36am UTC](https://forum.opensearch.org/t/could-not-find-curls-created-index-pattern-in-kibana-dashboard/5870/1 "2021-05-07T09:36:40Z")

</div>

Discuss topics related to automated index state management. Hi,

I am using this curl call to create and index pattern in kibana in the global tenant.

```
curl -u 'admin:xxxxxxxx' -v -X POST -k https://localhost:9200/api/saved_objects/index-pattern/ \
 -H "kbn-xsrf: true"\
 -H "content-type: application/json; charset=utf-8"\
 -H "securitytenant: global_tenant"\
 -H "user-agent: create-role.py/0.0.1"\
 -d '{"attributes": {"title":"logger-*","timeFieldName":"@timestamp"} }'

```

The curl command run successfully and here is the answer

```
{
   "_index":"api",
   "_type":"saved_objects",
   "_id":"index-pattern",
   "_version":1,
   "result":"created",
   "_shards":{
      "total":2,
      "successful":1,
      "failed":0
   },
   "_seq_no":0,
   "_primary_term":1
}

```

However when I connect to kibana (opendistro) the new created index pattern is no where to be find  
in the index-pattern dashboard both with the global and the admin tenant

What am I missing here please ?

---

<div class="post-metadata">

### Author: ![oscark](https://sea1.discourse-cdn.com/flex019/user_avatar/forum.opensearch.org/oscark/32/866_2.png) [@oscark](https://forum.opensearch.org/u/oscark)
#### Post date: [May 7, 2021, 2:38pm UTC](https://forum.opensearch.org/t/could-not-find-curls-created-index-pattern-in-kibana-dashboard/5870/2 "2021-05-07T14:38:40Z")

</div>

I guess this is the same question as here [Header "securitytenant" not work properly for select tenant - #5 by Kamikague](https://forum.opensearch.org/t/header-securitytenant-not-work-properly-for-select-tenant/4382/5)
