monitor_real_time_performance
Track and analyze real-time performance metrics for AWS Lambda functions, including cold starts and memory usage, to optimize performance and reduce costs effectively.
Instructions
Get real-time performance metrics and alerts for Lambda functions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Monitoring duration in minutes (default: 5) | |
functionName | Yes | Name of the Lambda function |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Monitoring duration in minutes (default: 5)",
"type": "number"
},
"functionName": {
"description": "Name of the Lambda function",
"type": "string"
}
},
"required": [
"functionName"
],
"type": "object"
}