试图从elasticsearch-python中检查索引模板

时间:2017-04-28 13:20:48

标签: python elasticsearch

我试图通过python elasticsearch API查看索引模板的内容。

我这样做:

es.get_template("_template/my_template")

但这就是我回来的全部:

{'_id': '_template/my_template',
 'found': True,
 'lang': 'mustache',
 'template': 'my_template*'}

如何取回完整的模板内容?

1 个答案:

答案 0 :(得分:1)

es.get_template()将检索搜索模板而不是索引模板。

您需要使用es.indices客户端,如下所示:

es.indices.get_template('my_template')