connections
Manage PostgreSQL connection pool operations including checking status, viewing statistics, testing connections, and resetting the pool for optimal database performance.
Instructions
Connection pool management: status, statistics, configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action: status (pool status), stats (detailed statistics), test (test connection), reset (reset pool) |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action: status (pool status), stats (detailed statistics), test (test connection), reset (reset pool)",
"enum": [
"status",
"stats",
"test",
"reset"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}