简体   繁体   中英

How do I extract only "message" field values from kibana?

How do I extract only "message" field values from kibana?

在此处输入图像描述 -> Looking at the picture, I want to erase the _index, _type, _id, and _score scores, and print out only the value of the "message" field in the _source.

I searched Google, but I couldn't find a way. Please teach me the way.

It's the way I tried it.

 GET 0503instgram_csv/_search
    {
      "_source": [
        "message"
      ]
    }

You can use response filtering to just show the message field in the response

http://localhost:9200/index-name/_search?_source=message&filter_path=hits.hits._source

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM