如何从 kibana 中仅提取 "message" 字段值?
How do I extract only "message" field values from kibana?
如何从 kibana 中仅提取“消息”字段值?
-> 看图,想把_index,_type,_id,_score分值擦除,只打印出_source中"message"字段的值
我搜索了Google,但找不到方法。
请教我方法。
这是我试过的方法。
GET 0503instgram_csv/_search
{
"_source": [
"message"
]
}
您可以使用 response filtering 仅在响应中显示 message
字段
http://localhost:9200/index-name/_search?_source=message&filter_path=hits.hits._source
如何从 kibana 中仅提取“消息”字段值?
我搜索了Google,但找不到方法。 请教我方法。
这是我试过的方法。
GET 0503instgram_csv/_search
{
"_source": [
"message"
]
}
您可以使用 response filtering 仅在响应中显示 message
字段
http://localhost:9200/index-name/_search?_source=message&filter_path=hits.hits._source