DocsHTTP APIGet workflow analytics

Get workflow analytics

Get workflow analytics. Use GET /analytics/{workflow_id} in Chronoverse, with authentication, parameters, and response details.

GET
/analytics/{workflow_id}

Authentication

cookieSession
apiKey
required

Encrypted session cookie issued after registration or login.

cookie: session

Parameters

workflow_id
path
required

No additional description.

string · uuid

Responses

200

Aggregate totals for one workflow

application/json
{
  "type": "object",
  "required": [
    "workflow_id",
    "total_job_execution_duration",
    "total_jobs",
    "total_joblogs"
  ],
  "properties": {
    "workflow_id": {
      "type": "string",
      "format": "uuid"
    },
    "total_job_execution_duration": {
      "type": "integer",
      "minimum": 0,
      "description": "Combined terminal-job execution duration in seconds"
    },
    "total_jobs": {
      "type": "integer",
      "minimum": 0
    },
    "total_joblogs": {
      "type": "integer",
      "minimum": 0,
      "description": "Generated log events observed for the workflow regardless of retention"
    }
  }
}
401

Missing or invalid session

429

Ingress rate or connection limit exceeded for the client address