我试图通过python elasticsearch API查看索引模板的内容。
我这样做:
es.get_template("_template/my_template")
但这就是我回来的全部:
{'_id': '_template/my_template',
'found': True,
'lang': 'mustache',
'template': 'my_template*'}
如何取回完整的模板内容?
答案 0 :(得分:1)
es.get_template()
将检索搜索模板而不是索引模板。
您需要使用es.indices
客户端,如下所示:
es.indices.get_template('my_template')