Expose process ID

This commit is contained in:
Ingo Oppermann
2025-07-07 12:09:20 +02:00
parent 643dd8386c
commit 15a0f4dbc5
8 changed files with 35 additions and 37 deletions

View File

@@ -1608,12 +1608,6 @@ const docTemplate = `{
"summary": "List of processes in the cluster",
"operationId": "cluster-3-get-all-processes",
"parameters": [
{
"type": "string",
"description": "Domain to act on",
"name": "domain",
"in": "query"
},
{
"type": "string",
"description": "Comma separated list of fields (config, state, report, metadata) that will be part of the output. If empty, all fields will be part of the output.",
@@ -3456,12 +3450,6 @@ const docTemplate = `{
"summary": "List all known processes",
"operationId": "process-3-get-all",
"parameters": [
{
"type": "string",
"description": "Domain to act on",
"name": "domain",
"in": "query"
},
{
"type": "string",
"description": "Comma separated list of fields (config, state, report, metadata) that will be part of the output. If empty, all fields will be part of the output.",
@@ -7483,6 +7471,9 @@ const docTemplate = `{
"type": "integer",
"format": "int64"
},
"domain": {
"type": "string"
},
"exit_state": {
"type": "string"
},
@@ -7528,6 +7519,10 @@ const docTemplate = `{
"order": {
"type": "string"
},
"pid": {
"type": "integer",
"format": "int32"
},
"progress": {
"$ref": "#/definitions/api.Progress"
},