get_performance_stats
Retrieve SQL Server performance statistics and health summary for monitoring database operations, with timeframe options for recent, session, or all-time data.
Instructions
Get overall performance statistics and health summary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeframe | No | Time period for stats: "recent" (last 5 min), "session" (since startup), "all" (default) |
Input Schema (JSON Schema)
{
"properties": {
"timeframe": {
"description": "Time period for stats: \"recent\" (last 5 min), \"session\" (since startup), \"all\" (default)",
"enum": [
"recent",
"session",
"all"
],
"type": "string"
}
},
"type": "object"
}