> $rows * @return array> */ public function populateLogsData($rows); /** * Distinct recently-requested URLs from the 404 log table. * * @param int $recentLogWindow Max rows scanned from logsv2 before deduplication. * @param int $distinctUrlCap Max distinct URLs returned. * @return array */ public function getDistinctLoggedUrls( int $recentLogWindow = self::DEFAULT_DISTINCT_RECENT_LOG_WINDOW, int $distinctUrlCap = self::DEFAULT_DISTINCT_URL_CAP ): array; /** * @param string $specificURL * @return array> */ public function getLogsIDandURL($specificURL = ''); /** * @param string $specificURL * @param string|int $limitResults * @return array> */ public function getLogsIDandURLLike($specificURL, $limitResults); /** * @param array $tableOptions orderby, paged, perpage, etc. * @return array> */ public function getLogRecords($tableOptions); /** * @param int $days Number of days (default 30, clamped to 1-90) * @return array> */ public function getDailyActivityTrend(int $days = 30): array; }