show_engine_innodb_status
Retrieve InnoDB engine status for a specified Alibaba Cloud RDS instance using the instance ID and region ID. This tool provides the SQL result for monitoring and troubleshooting database performance.
Instructions
show engine innodb status in db.
Args:
dbinstance_id (str): The ID of the RDS instance.
region_id(str): the region id of instance.
Returns:
the sql result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dbinstance_id | Yes | ||
region_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dbinstance_id": {
"title": "Dbinstance Id",
"type": "string"
},
"region_id": {
"title": "Region Id",
"type": "string"
}
},
"required": [
"dbinstance_id",
"region_id"
],
"title": "show_engine_innodb_statusArguments",
"type": "object"
}