/** * Performance Monitoring MCP Tools for WordPress Server * Provides comprehensive performance insights and management */ import type { ToolDefinition } from "../../server/ToolRegistry.js"; /** * Performance Tools Class * Provides MCP tools for WordPress performance monitoring */ export default class PerformanceTools { private monitor; private collector; private analytics; private logger; private historicalDataInterval?; constructor(clients?: Map); /** * Get all performance monitoring tools */ getTools(): ToolDefinition[]; /** * Get real-time performance statistics */ private getPerformanceStats; /** * Get historical performance data and trends */ private getPerformanceHistory; /** * Get benchmark comparison */ private getBenchmarkComparison; /** * Get performance alerts and anomalies */ private getPerformanceAlerts; /** * Get optimization recommendations */ private getOptimizationRecommendations; /** * Export comprehensive performance report */ private exportPerformanceReport; /** * Start historical data collection */ private startHistoricalDataCollection; /** * Stop historical data collection and cleanup resources */ destroy(): void; } //# sourceMappingURL=PerformanceTools.d.ts.map