cURL
curl --request GET \ --url https://www.blxa.de/api/metrics/history
{ "data": { "service-one": { "name": "Service One", "points": [ { "t": 1703750400000, "v": 1250 }, { "t": 1703754000000, "v": 1380 } ] } } }
Get historical data points for all services
Show History Object
Show Service History
Show Data Point
curl -X GET "https://www.blxa.de/api/metrics/history"
{ "data": { "service-one": { "name": "Service One", "points": [ { "t": 1703750400000, "v": 1250 }, { "t": 1703754000000, "v": 1380 }, { "t": 1703757600000, "v": 1520 } ] }, "service-two": { "name": "Service Two", "points": [ { "t": 1703750400000, "v": 850 }, { "t": 1703754000000, "v": 920 } ] } } }