get_resource_events
Retrieve events for a specific resource managed by an application, using application and resource details to ensure accurate tracking and monitoring.
Instructions
get_resource_events returns events for a resource that is managed by an application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
applicationName | Yes | ||
applicationNamespace | Yes | The namespace of the application. Note that this may differ from the namespace of individual resources. Make sure to verify the application namespace in the Application resource — it is often argocd, but not always. | |
resourceName | Yes | ||
resourceNamespace | Yes | ||
resourceUID | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"applicationName": {
"type": "string"
},
"applicationNamespace": {
"description": "The namespace of the application.\n Note that this may differ from the namespace of individual resources.\n Make sure to verify the application namespace in the Application resource — it is often argocd, but not always.",
"type": "string"
},
"resourceName": {
"type": "string"
},
"resourceNamespace": {
"type": "string"
},
"resourceUID": {
"type": "string"
}
},
"required": [
"applicationName",
"applicationNamespace",
"resourceUID",
"resourceNamespace",
"resourceName"
],
"type": "object"
}