wjbk

导航

elasticSearch开发者工具聚合查询

index/_search   POST  //index索引
{
"query": { "bool": { "filter": [//过滤条件 { "term": { "business.keyword": { "value": "", "boost": 1 } } } ], "adjust_pure_negative": true, "boost": 1 } }, "aggs": {//聚合查询 "labels": { "nested": { "path": "labels" }, "aggregations": {//查询字段的值总和 "sum": { "sum": { "script": { "source": "doc['labels.sjl.amount'].value + doc['labels.yysb.amount'].value", "lang": "painless" } } } } } } }

下图的sum就是总和

 

 

posted on 2023-11-30 21:17  wjbk  阅读(41)  评论(0)    收藏  举报