Skip to main content
Monitoring & Collection/Auto Remediation
GETMonitoringSince 1.0SynchronousAuth Required

ListRemediationPolicies

List all remediation policies

Execution Availability

Try It Out

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

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

    • idString

      Unique identifier of the remediation policy

      Example: policy-001-abc

    • nameString

      Display name of the remediation policy

      Example: High CPU Auto-Restart

    • enabledBoolean

      Whether this policy is currently active

      Example: true

    • agentSelectorLinkedHashMap

      Label selector to match target agents

      Example: (nested object)

    • conditionOpString

      Logical operator combining multiple conditions (AND, OR)

      Example: AND

    • conditionsList

      Conditions for this resource

      Example: (nested array)

      • metricNameString

        Name of the metric to evaluate as a condition

        Example: cpu_usage_percent

      • operatorString

        Comparison operator (e.g. >, =, <=, ==)

        Example: >

      • thresholdLong

        Threshold value for the condition

        Example: 90

    • actionString

      Remediation action to execute when conditions are met

      Example: restart_service

    • actionParamsLinkedHashMap

      Parameters passed to the remediation action

      Example: (nested object)

    • cooldownSecInteger

      Cooldown period in seconds before this policy can trigger again

      Example: 300

    • verifyAfterSecInteger

      Delay in seconds after action execution before verifying success

      Example: 60

    • maxRetriesInteger

      Maximum number of retry attempts on failure

      Example: 3

    • createdAtString

      Created at

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of policies

    Example: 4

  • limitInteger

    Page size limit

    Example: 20

  • offsetInteger

    Pagination offset

    Example: 20

Endpoint

GET/api/v1/monitoring/remediation-policies

/api/v1/monitoring/remediation-policies

Operation ID

ListRemediationPolicies

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/remediation-policies' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 4,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history