connection-status
Monitor and verify PostgreSQL database connectivity, diagnose errors, and enable retries to re-establish connections if unavailable.
Instructions
Check database connection status, view error details, and retry connection. Use retry: true to attempt reconnection when database is unavailable.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
retry | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"retry": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}