Hello, team.
I have multiple values in json reply from a url.
Each request makes some load on a server.
How can i make one reqest and then process item values from one json to different metriks?
To be clear, i have reply like:
{"document":{"items":[{"value": 10}, {"value": 20}, {"value": 30}]}}
I want to make one request, get this json and proces it to get 10 to one item, 20 to second and 30 to 3rd.
Is that possible?
I have multiple values in json reply from a url.
Each request makes some load on a server.
How can i make one reqest and then process item values from one json to different metriks?
To be clear, i have reply like:
{"document":{"items":[{"value": 10}, {"value": 20}, {"value": 30}]}}
I want to make one request, get this json and proces it to get 10 to one item, 20 to second and 30 to 3rd.
Is that possible?
Comment