analyze_database
Evaluate PostgreSQL database configuration, performance, and security using input connection details. Identify optimization opportunities and ensure operational efficiency.
Instructions
Analyze PostgreSQL database configuration and performance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisType | No | Type of analysis to perform | |
connectionString | Yes | PostgreSQL connection string |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"description": "Type of analysis to perform",
"enum": [
"configuration",
"performance",
"security"
],
"type": "string"
},
"connectionString": {
"description": "PostgreSQL connection string",
"type": "string"
}
},
"required": [
"connectionString"
],
"type": "object"
}