我正在尝试从elasticsearch获取索引。
我只想获取_source,但是我做不到。我尝试过:
http://x.x.x.x:9200/vnfsdb/_searchpretty&filter_path=took,hits.hits._source
以及与此类似的所有变体。
我必须使用_source并将其存储到文件中
json_file << curlpp :: options :: Url(“ http://x.x.x.x:9200/vnfsdb/_search?filter_path=hits.hits._source”);
但是每次它也存储元数据(提示,提示标题)时。
我只想存储_source正文。
如何在我的cpp代码中做到这一点?