// ...existing code... /** * クエリを最大長に切り詰める * * @param string $sql * @param int $maxLength * @return string */ protected function truncateQuery(string $sql, int $maxLength = 100): string { if (strlen($sql) <= $maxLength) { return $sql; } return substr($sql, 0, $maxLength) . '...'; } /** * クエリ統計を取得 * * @return array */ public static function getQueryStats(): array { return self::$queryStats; } /** * クエリタイプ別統計を取得 * * @return array */ public static function getQueryTypeStats(): array { return self::$queryTypeStats; } /** * 最もコストの高いクエリパターンを取得 * * @param int $limit * @return array */ public static function getTopQueryPatterns(int $limit = 10): array { $patterns = self::$patternStats; // 合計時間でソート uasort($patterns, function ($a, $b) { return $b['total_time'] <=> $a['total_time']; }); // 上位N件を返す return array_slice($patterns, 0, $limit); } /** * スロークエリの閾値を設定 * * @param float $threshold * @return void */ public function setSlowQueryThreshold(float $threshold): void { $this->slowQueryThreshold = $threshold; } /** * クエリタイプごとの閾値を設定 * * @param array $thresholds * @return void */ public function setQueryThresholds(array $thresholds): void { $this->queryThresholds = array_merge($this->queryThresholds, $thresholds); } /** * 統計をリセット * * @return void */ public static function resetStats(): void { self::$queryStats = [ 'count' => 0, 'total_time' => 0, 'max_time' => 0, 'slow_queries' => 0, ]; self::$queryTypeStats = [ 'select' => ['count' => 0, 'time' => 0], 'insert' => ['count' => 0, 'time' => 0], 'update' => ['count' => 0, 'time' => 0], 'delete' => ['count' => 0, 'time' => 0], 'other' => ['count' => 0, 'time' => 0], ]; self::$patternStats = []; } }
Please sign in to your account