最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jsonpath - JSON Path functionality (sum) value - Stack Overflow

programmeradmin1浏览0评论

I'm making an API request with Zabbix here :

{
     "result": "success",
     "maxTotal": 2,
     "users": [
         {
             "unit": "2025-04-01",
             "total": 2
         },
         {
             "unit": "2025-04-02",
             "total": 3
         }
     ]
 }

I want to sum all “total” values (2+3 = 5), I can't find the right syntax.

$.users[*].total.sum()
$.sum($.users[*].total)
$.sum($.users[0].total,$.users[1].total)
...

This does not work, can you help me please :) Thanks

I'm making an API request with Zabbix here :

{
     "result": "success",
     "maxTotal": 2,
     "users": [
         {
             "unit": "2025-04-01",
             "total": 2
         },
         {
             "unit": "2025-04-02",
             "total": 3
         }
     ]
 }

I want to sum all “total” values (2+3 = 5), I can't find the right syntax.

$.users[*].total.sum()
$.sum($.users[*].total)
$.sum($.users[0].total,$.users[1].total)
...

This does not work, can you help me please :) Thanks

Share Improve this question edited yesterday vimuth 5,68249 gold badges93 silver badges125 bronze badges asked yesterday user30154581user30154581 1 New contributor user30154581 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 2
  • In which programming environment are you using JSONPath? As far as I know sum is not part of JSONPath specs itself. – trincot Commented yesterday
  • This seems to be implemented zabbix/documentation/6.0/en/manual/config/items/… – user30154581 Commented 4 hours ago
Add a comment  | 

1 Answer 1

Reset to default 0

In javascript?

I'm not quite an expert but, if you set up a while loop:

totals:int = 0;
for(i=0;i<return[...].users.lenght;i++){
 totals = total + return.users[i].total;
}

Not working?

发布评论

评论列表(0)

  1. 暂无评论