analyze_memory_utilization
Monitor AWS Lambda function memory usage over specified time ranges, identify inefficiencies, and generate right-sizing recommendations to optimize performance and reduce costs.
Instructions
Analyze memory utilization and provide right-sizing recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
functionName | Yes | Name of the Lambda function | |
timeRange | No | Time range for memory analysis (default: 24h) |
Input Schema (JSON Schema)
{
"properties": {
"functionName": {
"description": "Name of the Lambda function",
"type": "string"
},
"timeRange": {
"description": "Time range for memory analysis (default: 24h)",
"enum": [
"1h",
"6h",
"24h",
"7d"
],
"type": "string"
}
},
"required": [
"functionName"
],
"type": "object"
}