I want to check that which template created first across multiple templates.
I have tried GET _cat/templates API but it does not return creation time.
So, how can I get the creation time of the template in elastisearch?
I want to check that which template created first across multiple templates.
I have tried GET _cat/templates API but it does not return creation time.
So, how can I get the creation time of the template in elastisearch?
The short answer is NO.
It is not possible to get those information from the api endpoint but if you want you can use
Versionattribute in the template to check which version you are storing in the cluster or you can have_metafield in your template that you can add information about the template.You can find information about
_metafield here.