Skip to main content
Infrastructure/Agents
POSTAgentSince 1.0SynchronousAuth Required

ReportCrash

Report a plugin crash event including exit code and signal from the agent

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • agentIdStringRequired

    UUID of the agent where the plugin crashed

  • pluginIdStringRequired

    Unique identifier of the crashed plugin

Body Fields

  • exitCodeIntegerRequired

    Process exit code at crash time

    Example: 1

  • signalStringRequired

    OS signal that caused the crash (e.g. SIGSEGV)

    Example: SIGSEGV

Responses

200 OK

On success, this API returns an empty JSON object {}.

Endpoint

POST/api/v1/agents/{agentId}/plugins/{pluginId}/crash

/api/v1/agents/{agentId}/plugins/{pluginId}/crash

Operation ID

ReportCrash

Permalink

Request Example

curl -X POST '{host}/api/v1/agents/{agentId}/plugins/{pluginId}/crash' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"exitCode":1,"signal":"SIGSEGV"}'

Response Example

200
{}

Change History

This API has no change history records yet.

View all change history