AWS‑IReveal‑MCP

cloudwatch_describe_log_groups

Retrieve and filter CloudWatch log groups by name pattern in a specified AWS region. Outputs JSON-formatted list for streamlined log group management and monitoring.

Instructions

Describes available CloudWatch log groups in the specified region. Parameters: aws_region (str): The AWS region - use 'us-east-1' if not specified. log_group_name_pattern (str): The pattern to filter log group names. Pattern: [\.\-_/#A-Za-z0-9]* If you specify a string for this parameter, the operation returns only log groups that have names that match the string based on a case-sensitive substring search. For example, if you specify Foo, log groups named FooBar, aws/Foo, and GroupFoo would match, but foo, F/o/o and Froo would not match. Returns: str: JSON-formatted list of log groups.

Input Schema

NameRequiredDescriptionDefault
aws_regionYes
limitNo
log_group_name_patternYes

Input Schema (JSON Schema)

{ "properties": { "aws_region": { "title": "Aws Region", "type": "string" }, "limit": { "default": 50, "title": "Limit", "type": "integer" }, "log_group_name_pattern": { "title": "Log Group Name Pattern", "type": "string" } }, "required": [ "aws_region", "log_group_name_pattern" ], "title": "cloudwatch_describe_log_groupsArguments", "type": "object" }
ID: myt94uniyf