Laufenden Benchmark verfolgen
GET
/v1/probe/status
const url = 'https://example.com/v1/probe/status';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/probe/status \ --header 'Authorization: Bearer <token>'Authorizations
Abschnitt betitelt „Authorizations“Responses
Abschnitt betitelt „Responses“Aktueller Fortschritt (Zeilen-Log, live pollbar).
Media typeapplication/json
object
running
boolean
kind
string
started
string format: date-time
lines
Fortschrittszeilen, jeweils mit Uhrzeit-Präfix, max. 300 (älteste fallen heraus).
Array<string>
error
string
Example
{ "kind": "probe"}