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 |1 Answer
Reset to default 0In 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?
sum
is not part of JSONPath specs itself. – trincot Commented yesterday