get_container_llm_analysis
Analyze a container's process tree using LLM to identify security risks and anomalies for enhanced Kubernetes and cloud environment protection.
Instructions
Get LLM analysis of a container's process tree
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | Container ID to get LLM analysis for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"container_id": {
"description": "Container ID to get LLM analysis for",
"type": "string"
}
},
"required": [
"container_id"
],
"type": "object"
}