From 222ce5882be4b8f53dcf9bd296d5a4586ca74ccf Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Tue, 8 Sep 2026 23:45:38 -0600 Subject: [PATCH 01/16] Add Cloudflare page views report script Counts likely-human HTML page views for /docs, /changelog and /blog over the last 90 days via Cloudflare's GraphQL Analytics API, excluding Hetzner and China, and writes reports to logs/ sorted by path and by request count. Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- .gitignore | 3 + dev/page-views-report.mjs | 228 ++++++++++++++++++++++++++++++++++++++ package.json | 1 + 3 files changed, 232 insertions(+) create mode 100644 dev/page-views-report.mjs diff --git a/.gitignore b/.gitignore index ff9bc8266..5dc8d48c5 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,9 @@ .DS_Store *.pem +# script output and reports +/logs + # debug npm-debug.log* yarn-debug.log* diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs new file mode 100644 index 000000000..12660e7b6 --- /dev/null +++ b/dev/page-views-report.mjs @@ -0,0 +1,228 @@ +#!/usr/bin/env node + +/** + * Page views report from Cloudflare's GraphQL Analytics API. + * + * Counts human page views on sourcegraph.com for /docs, /changelog and + * /blog over the last 90 days and writes two Markdown reports to logs/: + * one sorted by path, one sorted by request count. + * + * Filters: HTML 200 responses, Bot Management "likely_human", excluding + * Hetzner (a single hosting provider that dwarfs real German traffic) + * and China. + * + * Requires CLOUDFLARE_API_TOKEN with "Zone > Analytics > Read" on the + * sourcegraph.com zone. + * + * Usage: CLOUDFLARE_API_TOKEN=... node dev/page-views-report.mjs [--days 90] + */ + +import fs from 'fs'; +import path from 'path'; +import {fileURLToPath} from 'url'; + +const ZONE_TAG = + process.env.CLOUDFLARE_ZONE_ID ?? 'a168cb2eefa87d19793824cd9bf83f3a'; +const HOST = 'sourcegraph.com'; +const PATH_PREFIXES = ['/docs', '/changelog', '/blog']; +const EXCLUDED_COUNTRIES = ['CN']; +const EXCLUDED_ASN_DESCRIPTIONS = ['Hetzner Online GmbH']; + +// Zone limits reported by the `settings` query: 32 days per query, +// 90 days of history, 10,000 rows per page. +const MAX_WINDOW_DAYS = 30; +const MAX_HISTORY_DAYS = 90; +const PAGE_SIZE = 10000; + +const HOUR_MS = 60 * 60 * 1000; +const DAY_MS = 24 * HOUR_MS; + +const LOGS_DIR = path.join( + path.dirname(path.dirname(fileURLToPath(import.meta.url))), + 'logs' +); + +const QUERY = ` +query PageViews($zoneTag: string!, $filter: ZoneHttpRequestsAdaptiveGroupsFilter_InputObject!) { + viewer { + zones(filter: {zoneTag: $zoneTag}) { + httpRequestsAdaptiveGroups(limit: ${PAGE_SIZE}, filter: $filter, orderBy: [count_DESC]) { + count + sum { visits } + dimensions { clientRequestPath } + } + } + } +}`; + +function parseDays() { + const index = process.argv.indexOf('--days'); + if (index === -1) return MAX_HISTORY_DAYS; + const days = Number(process.argv[index + 1]); + if (!Number.isInteger(days) || days < 1 || days > MAX_HISTORY_DAYS) { + throw new Error( + `--days must be an integer from 1 to ${MAX_HISTORY_DAYS}` + ); + } + return days; +} + +function buildFilter(start, end) { + return { + datetime_geq: start.toISOString(), + datetime_lt: end.toISOString(), + clientRequestHTTPHost: HOST, + edgeResponseStatus: 200, + edgeResponseContentTypeName: 'html', + botManagementDecision: 'likely_human', + clientASNDescription_notin: EXCLUDED_ASN_DESCRIPTIONS, + clientCountryName_notin: EXCLUDED_COUNTRIES, + OR: PATH_PREFIXES.flatMap(prefix => [ + {clientRequestPath: prefix}, + {clientRequestPath_like: `${prefix}/%`} + ]) + }; +} + +async function queryCloudflare(token, variables) { + const response = await fetch( + 'https://api.cloudflare.com/client/v4/graphql', + { + method: 'POST', + headers: { + Authorization: `Bearer ${token}`, + 'Content-Type': 'application/json' + }, + body: JSON.stringify({query: QUERY, variables}) + } + ); + if (!response.ok) { + throw new Error( + `Cloudflare API HTTP ${response.status}: ${await response.text()}` + ); + } + const body = await response.json(); + if (body.errors?.length) { + throw new Error( + `Cloudflare GraphQL error: ${JSON.stringify(body.errors)}` + ); + } + return body.data.viewer.zones[0].httpRequestsAdaptiveGroups; +} + +// Fetch one window. If the page fills up, split the window and recurse +// so no rows are dropped. +async function fetchWindow(token, start, end, rowsByPath) { + const rows = await queryCloudflare(token, { + zoneTag: ZONE_TAG, + filter: buildFilter(start, end) + }); + if (rows.length >= PAGE_SIZE) { + const middle = new Date( + start.getTime() + (end.getTime() - start.getTime()) / 2 + ); + console.log( + ` page full, splitting ${start.toISOString()} – ${end.toISOString()}` + ); + await fetchWindow(token, start, middle, rowsByPath); + await fetchWindow(token, middle, end, rowsByPath); + return; + } + console.log( + ` ${start.toISOString()} – ${end.toISOString()}: ${rows.length} paths` + ); + for (const row of rows) { + const pagePath = normalizePath(row.dimensions.clientRequestPath); + const totals = rowsByPath.get(pagePath) ?? {requests: 0, visits: 0}; + totals.requests += row.count; + totals.visits += row.sum.visits; + rowsByPath.set(pagePath, totals); + } +} + +// Merge trailing-slash variants of the same page. +function normalizePath(pagePath) { + return pagePath.length > 1 ? pagePath.replace(/\/+$/, '') : pagePath; +} + +function formatReport({title, start, end, rows}) { + const totalRequests = rows.reduce((sum, row) => sum + row.requests, 0); + const totalVisits = rows.reduce((sum, row) => sum + row.visits, 0); + const lines = [ + `# ${title}`, + '', + `- Window: ${start.toISOString()} to ${end.toISOString()} (UTC)`, + `- Host: ${HOST}; paths: ${PATH_PREFIXES.join(', ')}`, + `- Filters: HTML 200 responses; Bot Management likely_human; ` + + `excluding ASN ${EXCLUDED_ASN_DESCRIPTIONS.join(', ')}; ` + + `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}`, + `- Totals: ${rows.length} paths, ${totalRequests} requests, ${totalVisits} visits`, + '- Counts are adaptive-sampled estimates. Visits = requests whose ' + + "referrer is not sourcegraph.com (Cloudflare's page-view proxy).", + '', + '| Path | Requests | Visits |', + '| --- | ---: | ---: |', + ...rows.map(row => `| ${row.path} | ${row.requests} | ${row.visits} |`), + '' + ]; + return lines.join('\n'); +} + +async function main() { + const token = process.env.CLOUDFLARE_API_TOKEN; + if (!token) { + throw new Error('CLOUDFLARE_API_TOKEN is not set'); + } + const days = parseDays(); + + // Cloudflare rejects any datetime older than exactly 90 days from the + // moment the query runs, so anchor the window to now, rounded to the hour. + const end = new Date(Math.floor(Date.now() / HOUR_MS) * HOUR_MS); + const start = new Date(end.getTime() - days * DAY_MS + HOUR_MS); + + console.log(`πŸ“Š Fetching ${days} days of page views for ${HOST}...`); + const rowsByPath = new Map(); + for (let windowStart = start; windowStart < end; ) { + const windowEnd = new Date( + Math.min( + windowStart.getTime() + MAX_WINDOW_DAYS * DAY_MS, + end.getTime() + ) + ); + await fetchWindow(token, windowStart, windowEnd, rowsByPath); + windowStart = windowEnd; + } + + const rows = [...rowsByPath.entries()].map(([pagePath, totals]) => ({ + path: pagePath, + ...totals + })); + + fs.mkdirSync(LOGS_DIR, {recursive: true}); + const reports = [ + { + file: 'page-views-by-path.md', + title: `Page views by path (last ${days} days)`, + rows: [...rows].sort((a, b) => a.path.localeCompare(b.path)) + }, + { + file: 'page-views-by-count.md', + title: `Page views by request count (last ${days} days)`, + rows: [...rows].sort( + (a, b) => + b.requests - a.requests || a.path.localeCompare(b.path) + ) + } + ]; + for (const report of reports) { + const target = path.join(LOGS_DIR, report.file); + fs.writeFileSync(target, formatReport({...report, start, end})); + console.log(`βœ… Wrote ${path.relative(process.cwd(), target)}`); + } + console.log(`\n${rows.length} paths total.`); +} + +main().catch(error => { + console.error(`❌ ${error.message}`); + process.exit(1); +}); diff --git a/package.json b/package.json index 93900c805..c8d43e14a 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "check-links": "node dev/check-links.mjs", "check-filenames": "node dev/check-filenames.mjs", "check-images": "node dev/check-images.mjs", + "page-views-report": "node dev/page-views-report.mjs", "generate-mermaid-logos": "node dev/generate-aws-icons.mjs", "baseai": "baseai", "sync": "npx baseai@latest deploy -m memory-sg-docs-live", From 6c8af61a63b687c39a581fdbf86b71d6016e5da1 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 00:03:32 -0600 Subject: [PATCH 02/16] Add 404 and 5xx counts to page views report Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 86 +++++++++++++++++++++++++++------------ 1 file changed, 61 insertions(+), 25 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index 12660e7b6..adca519cf 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -3,13 +3,13 @@ /** * Page views report from Cloudflare's GraphQL Analytics API. * - * Counts human page views on sourcegraph.com for /docs, /changelog and - * /blog over the last 90 days and writes two Markdown reports to logs/: - * one sorted by path, one sorted by request count. + * Counts human page views (HTML 200s), 404s and 5xx errors on + * sourcegraph.com for /docs, /changelog and /blog over the last 90 days + * and writes two Markdown reports to logs/: one sorted by path, one + * sorted by request count. * - * Filters: HTML 200 responses, Bot Management "likely_human", excluding - * Hetzner (a single hosting provider that dwarfs real German traffic) - * and China. + * Filters: Bot Management "likely_human", excluding Hetzner (a single + * hosting provider that dwarfs real German traffic) and China. * * Requires CLOUDFLARE_API_TOKEN with "Zone > Analytics > Read" on the * sourcegraph.com zone. @@ -49,7 +49,7 @@ query PageViews($zoneTag: string!, $filter: ZoneHttpRequestsAdaptiveGroupsFilter httpRequestsAdaptiveGroups(limit: ${PAGE_SIZE}, filter: $filter, orderBy: [count_DESC]) { count sum { visits } - dimensions { clientRequestPath } + dimensions { clientRequestPath edgeResponseStatus } } } } @@ -72,18 +72,46 @@ function buildFilter(start, end) { datetime_geq: start.toISOString(), datetime_lt: end.toISOString(), clientRequestHTTPHost: HOST, - edgeResponseStatus: 200, - edgeResponseContentTypeName: 'html', botManagementDecision: 'likely_human', clientASNDescription_notin: EXCLUDED_ASN_DESCRIPTIONS, clientCountryName_notin: EXCLUDED_COUNTRIES, - OR: PATH_PREFIXES.flatMap(prefix => [ - {clientRequestPath: prefix}, - {clientRequestPath_like: `${prefix}/%`} - ]) + AND: [ + { + OR: PATH_PREFIXES.flatMap(prefix => [ + {clientRequestPath: prefix}, + {clientRequestPath_like: `${prefix}/%`} + ]) + }, + { + OR: [ + { + edgeResponseStatus: 200, + edgeResponseContentTypeName: 'html' + }, + {edgeResponseStatus: 404}, + {edgeResponseStatus_geq: 500, edgeResponseStatus_lt: 600} + ] + } + ] }; } +function emptyTotals() { + return {requests: 0, visits: 0, notFound: 0, serverErrors: 0}; +} + +function addRow(totals, row) { + const status = row.dimensions.edgeResponseStatus; + if (status === 200) { + totals.requests += row.count; + totals.visits += row.sum.visits; + } else if (status === 404) { + totals.notFound += row.count; + } else if (status >= 500) { + totals.serverErrors += row.count; + } +} + async function queryCloudflare(token, variables) { const response = await fetch( 'https://api.cloudflare.com/client/v4/graphql', @@ -133,9 +161,8 @@ async function fetchWindow(token, start, end, rowsByPath) { ); for (const row of rows) { const pagePath = normalizePath(row.dimensions.clientRequestPath); - const totals = rowsByPath.get(pagePath) ?? {requests: 0, visits: 0}; - totals.requests += row.count; - totals.visits += row.sum.visits; + const totals = rowsByPath.get(pagePath) ?? emptyTotals(); + addRow(totals, row); rowsByPath.set(pagePath, totals); } } @@ -146,23 +173,32 @@ function normalizePath(pagePath) { } function formatReport({title, start, end, rows}) { - const totalRequests = rows.reduce((sum, row) => sum + row.requests, 0); - const totalVisits = rows.reduce((sum, row) => sum + row.visits, 0); + const total = rows.reduce((sum, row) => { + for (const key of Object.keys(sum)) sum[key] += row[key]; + return sum; + }, emptyTotals()); const lines = [ `# ${title}`, '', `- Window: ${start.toISOString()} to ${end.toISOString()} (UTC)`, `- Host: ${HOST}; paths: ${PATH_PREFIXES.join(', ')}`, - `- Filters: HTML 200 responses; Bot Management likely_human; ` + + `- Filters: Bot Management likely_human; ` + `excluding ASN ${EXCLUDED_ASN_DESCRIPTIONS.join(', ')}; ` + `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}`, - `- Totals: ${rows.length} paths, ${totalRequests} requests, ${totalVisits} visits`, - '- Counts are adaptive-sampled estimates. Visits = requests whose ' + - "referrer is not sourcegraph.com (Cloudflare's page-view proxy).", + `- Totals: ${rows.length} paths, ${total.requests} requests, ` + + `${total.visits} visits, ${total.notFound} 404s, ${total.serverErrors} 5xx`, + '- Requests and Visits count HTML 200 responses. Visits = requests ' + + "whose referrer is not sourcegraph.com (Cloudflare's page-view proxy).", + '- 404 and 5xx count responses of any content type. ' + + 'All counts are adaptive-sampled estimates.', '', - '| Path | Requests | Visits |', - '| --- | ---: | ---: |', - ...rows.map(row => `| ${row.path} | ${row.requests} | ${row.visits} |`), + '| Path | Requests | Visits | 404 | 5xx |', + '| --- | ---: | ---: | ---: | ---: |', + ...rows.map( + row => + `| ${row.path} | ${row.requests} | ${row.visits} | ` + + `${row.notFound} | ${row.serverErrors} |` + ), '' ]; return lines.join('\n'); From 526c44a4619dda2bcbd644132c8804c4caa620d8 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 00:17:39 -0600 Subject: [PATCH 03/16] Add redirect counts to page views report Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index adca519cf..6b74d3243 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -3,7 +3,7 @@ /** * Page views report from Cloudflare's GraphQL Analytics API. * - * Counts human page views (HTML 200s), 404s and 5xx errors on + * Counts human page views (HTML 200s), redirects, 404s and 5xx errors on * sourcegraph.com for /docs, /changelog and /blog over the last 90 days * and writes two Markdown reports to logs/: one sorted by path, one * sorted by request count. @@ -88,6 +88,7 @@ function buildFilter(start, end) { edgeResponseStatus: 200, edgeResponseContentTypeName: 'html' }, + {edgeResponseStatus_geq: 300, edgeResponseStatus_lt: 400}, {edgeResponseStatus: 404}, {edgeResponseStatus_geq: 500, edgeResponseStatus_lt: 600} ] @@ -97,7 +98,13 @@ function buildFilter(start, end) { } function emptyTotals() { - return {requests: 0, visits: 0, notFound: 0, serverErrors: 0}; + return { + requests: 0, + visits: 0, + redirects: 0, + notFound: 0, + serverErrors: 0 + }; } function addRow(totals, row) { @@ -105,6 +112,8 @@ function addRow(totals, row) { if (status === 200) { totals.requests += row.count; totals.visits += row.sum.visits; + } else if (status >= 300 && status < 400) { + totals.redirects += row.count; } else if (status === 404) { totals.notFound += row.count; } else if (status >= 500) { @@ -186,18 +195,19 @@ function formatReport({title, start, end, rows}) { `excluding ASN ${EXCLUDED_ASN_DESCRIPTIONS.join(', ')}; ` + `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}`, `- Totals: ${rows.length} paths, ${total.requests} requests, ` + - `${total.visits} visits, ${total.notFound} 404s, ${total.serverErrors} 5xx`, + `${total.visits} visits, ${total.redirects} 3xx, ` + + `${total.notFound} 404s, ${total.serverErrors} 5xx`, '- Requests and Visits count HTML 200 responses. Visits = requests ' + "whose referrer is not sourcegraph.com (Cloudflare's page-view proxy).", - '- 404 and 5xx count responses of any content type. ' + + '- 3xx, 404 and 5xx count responses of any content type. ' + 'All counts are adaptive-sampled estimates.', '', - '| Path | Requests | Visits | 404 | 5xx |', - '| --- | ---: | ---: | ---: | ---: |', + '| Path | Requests | Visits | 3xx | 404 | 5xx |', + '| --- | ---: | ---: | ---: | ---: | ---: |', ...rows.map( row => `| ${row.path} | ${row.requests} | ${row.visits} | ` + - `${row.notFound} | ${row.serverErrors} |` + `${row.redirects} | ${row.notFound} | ${row.serverErrors} |` ), '' ]; From bb25019bb7c44b97e60c8ae350e93e9c4eecfc51 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 00:50:21 -0600 Subject: [PATCH 04/16] Page views report: count real redirects only, skip static assets, add redirect and error reports Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 83 ++++++++++++++++++++++++++++----------- 1 file changed, 59 insertions(+), 24 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index 6b74d3243..b75bc6bb5 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -5,8 +5,8 @@ * * Counts human page views (HTML 200s), redirects, 404s and 5xx errors on * sourcegraph.com for /docs, /changelog and /blog over the last 90 days - * and writes two Markdown reports to logs/: one sorted by path, one - * sorted by request count. + * and writes Markdown reports to logs/ sorted by path, request count, + * redirect count and error count. * * Filters: Bot Management "likely_human", excluding Hetzner (a single * hosting provider that dwarfs real German traffic) and China. @@ -28,6 +28,14 @@ const PATH_PREFIXES = ['/docs', '/changelog', '/blog']; const EXCLUDED_COUNTRIES = ['CN']; const EXCLUDED_ASN_DESCRIPTIONS = ['Hetzner Online GmbH']; +// Real redirects only; 304 Not Modified is a cache revalidation. +const REDIRECT_STATUSES = [301, 302, 303, 307, 308]; + +// Build output and static assets are not pages. Feeds (.xml, .rss, .atom) +// are kept because their 404s and redirects are worth knowing about. +const STATIC_ASSET_PATTERN = + /\/_next\/|\.(js|css|map|png|jpe?g|gif|svg|ico|webp|woff2?|ttf)$/i; + // Zone limits reported by the `settings` query: 32 days per query, // 90 days of history, 10,000 rows per page. const MAX_WINDOW_DAYS = 30; @@ -88,7 +96,7 @@ function buildFilter(start, end) { edgeResponseStatus: 200, edgeResponseContentTypeName: 'html' }, - {edgeResponseStatus_geq: 300, edgeResponseStatus_lt: 400}, + {edgeResponseStatus_in: REDIRECT_STATUSES}, {edgeResponseStatus: 404}, {edgeResponseStatus_geq: 500, edgeResponseStatus_lt: 600} ] @@ -112,7 +120,7 @@ function addRow(totals, row) { if (status === 200) { totals.requests += row.count; totals.visits += row.sum.visits; - } else if (status >= 300 && status < 400) { + } else if (REDIRECT_STATUSES.includes(status)) { totals.redirects += row.count; } else if (status === 404) { totals.notFound += row.count; @@ -170,6 +178,7 @@ async function fetchWindow(token, start, end, rowsByPath) { ); for (const row of rows) { const pagePath = normalizePath(row.dimensions.clientRequestPath); + if (STATIC_ASSET_PATTERN.test(pagePath)) continue; const totals = rowsByPath.get(pagePath) ?? emptyTotals(); addRow(totals, row); rowsByPath.set(pagePath, totals); @@ -181,11 +190,8 @@ function normalizePath(pagePath) { return pagePath.length > 1 ? pagePath.replace(/\/+$/, '') : pagePath; } -function formatReport({title, start, end, rows}) { - const total = rows.reduce((sum, row) => { - for (const key of Object.keys(sum)) sum[key] += row[key]; - return sum; - }, emptyTotals()); +// Totals cover every path, so the header is identical across reports. +function formatReport({title, start, end, total, rows}) { const lines = [ `# ${title}`, '', @@ -194,12 +200,13 @@ function formatReport({title, start, end, rows}) { `- Filters: Bot Management likely_human; ` + `excluding ASN ${EXCLUDED_ASN_DESCRIPTIONS.join(', ')}; ` + `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}`, - `- Totals: ${rows.length} paths, ${total.requests} requests, ` + + `- Totals: ${total.paths} paths, ${total.requests} requests, ` + `${total.visits} visits, ${total.redirects} 3xx, ` + `${total.notFound} 404s, ${total.serverErrors} 5xx`, '- Requests and Visits count HTML 200 responses. Visits = requests ' + "whose referrer is not sourcegraph.com (Cloudflare's page-view proxy).", - '- 3xx, 404 and 5xx count responses of any content type. ' + + `- 3xx counts redirects (${REDIRECT_STATUSES.join(', ')}); 404 and ` + + '5xx count any content type. Static assets are skipped. ' + 'All counts are adaptive-sampled estimates.', '', '| Path | Requests | Visits | 3xx | 404 | 5xx |', @@ -243,26 +250,54 @@ async function main() { path: pagePath, ...totals })); + const total = {paths: rows.length, ...emptyTotals()}; + for (const row of rows) { + for (const key of Object.keys(emptyTotals())) total[key] += row[key]; + } - fs.mkdirSync(LOGS_DIR, {recursive: true}); + // Each report sorts by a metric (descending) and drops rows where it + // is zero; the by-path report keeps every row in path order. const reports = [ + {file: 'page-views-by-path.md', title: 'Page views by path'}, { - file: 'page-views-by-path.md', - title: `Page views by path (last ${days} days)`, - rows: [...rows].sort((a, b) => a.path.localeCompare(b.path)) + file: 'page-views-by-count.md', + title: 'Page views by request count', + metric: row => row.requests }, { - file: 'page-views-by-count.md', - title: `Page views by request count (last ${days} days)`, - rows: [...rows].sort( - (a, b) => - b.requests - a.requests || a.path.localeCompare(b.path) - ) + file: 'page-views-by-redirects.md', + title: 'Page views by redirect count', + metric: row => row.redirects + }, + { + file: 'page-views-by-errors.md', + title: 'Page views by error count (404 + 5xx)', + metric: row => row.notFound + row.serverErrors } ]; - for (const report of reports) { - const target = path.join(LOGS_DIR, report.file); - fs.writeFileSync(target, formatReport({...report, start, end})); + + fs.mkdirSync(LOGS_DIR, {recursive: true}); + for (const {file, title, metric} of reports) { + const reportRows = metric + ? rows + .filter(row => metric(row) > 0) + .sort( + (a, b) => + metric(b) - metric(a) || + a.path.localeCompare(b.path) + ) + : [...rows].sort((a, b) => a.path.localeCompare(b.path)); + const target = path.join(LOGS_DIR, file); + fs.writeFileSync( + target, + formatReport({ + title: `${title} (last ${days} days)`, + start, + end, + total, + rows: reportRows + }) + ); console.log(`βœ… Wrote ${path.relative(process.cwd(), target)}`); } console.log(`\n${rows.length} paths total.`); From fe9e03121265320ff24b12f33834a7efba5a61a3 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 00:54:33 -0600 Subject: [PATCH 05/16] Page views report: skip scanner probe paths and bare /_next Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index b75bc6bb5..cd032cb5a 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -34,7 +34,18 @@ const REDIRECT_STATUSES = [301, 302, 303, 307, 308]; // Build output and static assets are not pages. Feeds (.xml, .rss, .atom) // are kept because their 404s and redirects are worth knowing about. const STATIC_ASSET_PATTERN = - /\/_next\/|\.(js|css|map|png|jpe?g|gif|svg|ico|webp|woff2?|ttf)$/i; + /\/_next(\/|$)|\.(js|css|map|png|jpe?g|gif|svg|ico|webp|woff2?|ttf)$/i; + +// Real page URLs only use these characters; anything else is a scanner +// probe or injection payload, for example "(A(x))", "%3Cscript%3E", "..;/". +const SCANNER_PATH_PATTERN = /[^\w/.~@'-]/; + +function isNoisePath(pagePath) { + return ( + STATIC_ASSET_PATTERN.test(pagePath) || + SCANNER_PATH_PATTERN.test(pagePath) + ); +} // Zone limits reported by the `settings` query: 32 days per query, // 90 days of history, 10,000 rows per page. @@ -178,7 +189,7 @@ async function fetchWindow(token, start, end, rowsByPath) { ); for (const row of rows) { const pagePath = normalizePath(row.dimensions.clientRequestPath); - if (STATIC_ASSET_PATTERN.test(pagePath)) continue; + if (isNoisePath(pagePath)) continue; const totals = rowsByPath.get(pagePath) ?? emptyTotals(); addRow(totals, row); rowsByPath.set(pagePath, totals); @@ -206,7 +217,8 @@ function formatReport({title, start, end, total, rows}) { '- Requests and Visits count HTML 200 responses. Visits = requests ' + "whose referrer is not sourcegraph.com (Cloudflare's page-view proxy).", `- 3xx counts redirects (${REDIRECT_STATUSES.join(', ')}); 404 and ` + - '5xx count any content type. Static assets are skipped. ' + + '5xx count any content type. Static assets and scanner ' + + 'probe paths are skipped. ' + 'All counts are adaptive-sampled estimates.', '', '| Path | Requests | Visits | 3xx | 404 | 5xx |', From 583eb98dfcc2b561d32678cda18b9b121553b1a1 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 01:00:29 -0600 Subject: [PATCH 06/16] Page views report: skip trailing-slash redirects, keep zero rows in sorted reports Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index cd032cb5a..1f5e338bf 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -188,6 +188,7 @@ async function fetchWindow(token, start, end, rowsByPath) { ` ${start.toISOString()} – ${end.toISOString()}: ${rows.length} paths` ); for (const row of rows) { + if (isTrailingSlashRedirect(row)) continue; const pagePath = normalizePath(row.dimensions.clientRequestPath); if (isNoisePath(pagePath)) continue; const totals = rowsByPath.get(pagePath) ?? emptyTotals(); @@ -201,6 +202,16 @@ function normalizePath(pagePath) { return pagePath.length > 1 ? pagePath.replace(/\/+$/, '') : pagePath; } +// The site redirects "/page/" to "/page"; that redirect is not worth counting. +function isTrailingSlashRedirect(row) { + const {clientRequestPath, edgeResponseStatus} = row.dimensions; + return ( + clientRequestPath.length > 1 && + clientRequestPath.endsWith('/') && + REDIRECT_STATUSES.includes(edgeResponseStatus) + ); +} + // Totals cover every path, so the header is identical across reports. function formatReport({title, start, end, total, rows}) { const lines = [ @@ -217,8 +228,8 @@ function formatReport({title, start, end, total, rows}) { '- Requests and Visits count HTML 200 responses. Visits = requests ' + "whose referrer is not sourcegraph.com (Cloudflare's page-view proxy).", `- 3xx counts redirects (${REDIRECT_STATUSES.join(', ')}); 404 and ` + - '5xx count any content type. Static assets and scanner ' + - 'probe paths are skipped. ' + + '5xx count any content type. Trailing-slash redirects, static ' + + 'assets and scanner probe paths are skipped. ' + 'All counts are adaptive-sampled estimates.', '', '| Path | Requests | Visits | 3xx | 404 | 5xx |', @@ -267,8 +278,7 @@ async function main() { for (const key of Object.keys(emptyTotals())) total[key] += row[key]; } - // Each report sorts by a metric (descending) and drops rows where it - // is zero; the by-path report keeps every row in path order. + // Every report has every row: sorted by a metric (descending), or by path. const reports = [ {file: 'page-views-by-path.md', title: 'Page views by path'}, { @@ -290,15 +300,11 @@ async function main() { fs.mkdirSync(LOGS_DIR, {recursive: true}); for (const {file, title, metric} of reports) { - const reportRows = metric - ? rows - .filter(row => metric(row) > 0) - .sort( - (a, b) => - metric(b) - metric(a) || - a.path.localeCompare(b.path) - ) - : [...rows].sort((a, b) => a.path.localeCompare(b.path)); + const reportRows = [...rows].sort( + (a, b) => + (metric ? metric(b) - metric(a) : 0) || + a.path.localeCompare(b.path) + ); const target = path.join(LOGS_DIR, file); fs.writeFileSync( target, From 697fcc26d59725c9428f92d0aee99aed9df23353 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 01:11:01 -0600 Subject: [PATCH 07/16] Page views report: count hits per redirect rule in src/data/redirects.ts Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 103 ++++++++++++++++++++++++++++++++++---- 1 file changed, 94 insertions(+), 9 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index 1f5e338bf..36600a0cc 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -6,7 +6,8 @@ * Counts human page views (HTML 200s), redirects, 404s and 5xx errors on * sourcegraph.com for /docs, /changelog and /blog over the last 90 days * and writes Markdown reports to logs/ sorted by path, request count, - * redirect count and error count. + * redirect count and error count, plus how often each redirect rule in + * src/data/redirects.ts was followed. * * Filters: Bot Management "likely_human", excluding Hetzner (a single * hosting provider that dwarfs real German traffic) and China. @@ -56,10 +57,13 @@ const PAGE_SIZE = 10000; const HOUR_MS = 60 * 60 * 1000; const DAY_MS = 24 * HOUR_MS; -const LOGS_DIR = path.join( - path.dirname(path.dirname(fileURLToPath(import.meta.url))), - 'logs' -); +const REPO_ROOT = path.dirname(path.dirname(fileURLToPath(import.meta.url))); +const LOGS_DIR = path.join(REPO_ROOT, 'logs'); +const REDIRECTS_FILE = path.join(REPO_ROOT, 'src', 'data', 'redirects.ts'); + +// One `{source: '...', destination: '...' | CONSTANT}` entry in redirects.ts. +const REDIRECT_RULE_PATTERN = + /\{\s*source:\s*'([^']*)',\s*destination:\s*(?:'([^']*)'|(\w+))\s*,?\s*\}/g; const QUERY = ` query PageViews($zoneTag: string!, $filter: ZoneHttpRequestsAdaptiveGroupsFilter_InputObject!) { @@ -212,16 +216,84 @@ function isTrailingSlashRedirect(row) { ); } -// Totals cover every path, so the header is identical across reports. -function formatReport({title, start, end, total, rows}) { - const lines = [ +// src/middleware.ts matches rules by exact source path (relative to /docs) +// and the first match wins, so a repeated source is a dead rule. +function loadRedirectRules() { + const text = fs.readFileSync(REDIRECTS_FILE, 'utf8'); + const firstLineBySource = new Map(); + const rules = []; + let line = 1; + let cursor = 0; + for (const match of text.matchAll(REDIRECT_RULE_PATTERN)) { + const [, source, destination, constantName] = match; + line += text.slice(cursor, match.index).split('\n').length - 1; + cursor = match.index; + rules.push({ + line, + source, + destination: destination ?? constantName, + shadowedBy: firstLineBySource.get(source) + }); + if (!firstLineBySource.has(source)) firstLineBySource.set(source, line); + } + return rules; +} + +function reportHeader(title, start, end) { + return [ `# ${title}`, '', `- Window: ${start.toISOString()} to ${end.toISOString()} (UTC)`, `- Host: ${HOST}; paths: ${PATH_PREFIXES.join(', ')}`, `- Filters: Bot Management likely_human; ` + `excluding ASN ${EXCLUDED_ASN_DESCRIPTIONS.join(', ')}; ` + - `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}`, + `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}` + ]; +} + +// Hits = redirects served on /docs. Live rules sort by hits, then +// shadowed duplicates; both keep file order within a tie. +function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { + const hitsOf = rule => + rowsByPath.get(`/docs${rule.source}`)?.redirects ?? 0; + const live = rules.filter(rule => !rule.shadowedBy); + const ruleHits = live.reduce((sum, rule) => sum + hitsOf(rule), 0); + const docsRedirects = [...rowsByPath.entries()] + .filter(([pagePath]) => pagePath.startsWith('/docs')) + .reduce((sum, [, totals]) => sum + totals.redirects, 0); + const sorted = [...rules].sort( + (a, b) => + (a.shadowedBy ? 1 : 0) - (b.shadowedBy ? 1 : 0) || + hitsOf(b) - hitsOf(a) || + a.line - b.line + ); + const lines = [ + ...reportHeader(title, start, end), + `- Rules: ${rules.length} in ${path.relative(REPO_ROOT, REDIRECTS_FILE)}; ` + + `${live.length} live, ${rules.length - live.length} shadowed by an ` + + `earlier rule with the same source (never match), ` + + `${live.filter(rule => hitsOf(rule) === 0).length} live with zero hits`, + `- Hits: ${ruleHits} redirects matched a rule, of ${docsRedirects} ` + + 'redirects on /docs paths (the rest are version and other redirects)', + '- Hits count 3xx responses on /docs with the same filters as ' + + 'the page views reports; adaptive-sampled estimates.', + '', + '| Line | Source | Destination | Hits |', + '| ---: | --- | --- | ---: |', + ...sorted.map( + rule => + `| ${rule.line} | ${rule.source} | ${rule.destination} | ` + + `${rule.shadowedBy ? `shadowed by line ${rule.shadowedBy}` : hitsOf(rule)} |` + ), + '' + ]; + return lines.join('\n'); +} + +// Totals cover every path, so the header is identical across reports. +function formatReport({title, start, end, total, rows}) { + const lines = [ + ...reportHeader(title, start, end), `- Totals: ${total.paths} paths, ${total.requests} requests, ` + `${total.visits} visits, ${total.redirects} 3xx, ` + `${total.notFound} 404s, ${total.serverErrors} 5xx`, @@ -318,6 +390,19 @@ async function main() { ); console.log(`βœ… Wrote ${path.relative(process.cwd(), target)}`); } + + const rulesTarget = path.join(LOGS_DIR, 'redirect-rules.md'); + fs.writeFileSync( + rulesTarget, + formatRedirectRulesReport({ + title: `Redirect rules by hits (last ${days} days)`, + start, + end, + rules: loadRedirectRules(), + rowsByPath + }) + ); + console.log(`βœ… Wrote ${path.relative(process.cwd(), rulesTarget)}`); console.log(`\n${rows.length} paths total.`); } From 960a74876d5fbef19c67173386589905728ff8cf Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 01:25:06 -0600 Subject: [PATCH 08/16] Page views report: flag redirect rule chains Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- dev/page-views-report.mjs | 57 ++++++++++++++++++++++++++++++++++----- 1 file changed, 50 insertions(+), 7 deletions(-) diff --git a/dev/page-views-report.mjs b/dev/page-views-report.mjs index 36600a0cc..f37672f4a 100644 --- a/dev/page-views-report.mjs +++ b/dev/page-views-report.mjs @@ -251,6 +251,28 @@ function reportHeader(title, start, end) { ]; } +// A destination the browser will request back through the middleware, or +// null when it leaves the docs site. Browsers do not send fragments. +function docsDestinationPath(destination) { + const relative = destination.replace( + /^https:\/\/sourcegraph\.com\/docs/, + '' + ); + return relative.startsWith('/') ? relative.replace(/[#?].*$/, '') : null; +} + +// Follow a rule's destination through further rules, as a browser would. +// Returns the rules hit after this one, and whether they loop back. +function chainAfter(rule, liveRuleBySource) { + const hops = []; + let next = liveRuleBySource.get(docsDestinationPath(rule.destination)); + while (next && next !== rule && !hops.includes(next)) { + hops.push(next); + next = liveRuleBySource.get(docsDestinationPath(next.destination)); + } + return {hops, loop: Boolean(next)}; +} + // Hits = redirects served on /docs. Live rules sort by hits, then // shadowed duplicates; both keep file order within a tie. function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { @@ -258,6 +280,16 @@ function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { rowsByPath.get(`/docs${rule.source}`)?.redirects ?? 0; const live = rules.filter(rule => !rule.shadowedBy); const ruleHits = live.reduce((sum, rule) => sum + hitsOf(rule), 0); + const liveRuleBySource = new Map(live.map(rule => [rule.source, rule])); + const chainOf = rule => + rule.shadowedBy + ? {hops: [], loop: false} + : chainAfter(rule, liveRuleBySource); + const chained = live.filter(rule => chainOf(rule).hops.length > 0); + const longestChain = Math.max( + 0, + ...chained.map(rule => chainOf(rule).hops.length) + ); const docsRedirects = [...rowsByPath.entries()] .filter(([pagePath]) => pagePath.startsWith('/docs')) .reduce((sum, [, totals]) => sum + totals.redirects, 0); @@ -277,14 +309,25 @@ function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { 'redirects on /docs paths (the rest are version and other redirects)', '- Hits count 3xx responses on /docs with the same filters as ' + 'the page views reports; adaptive-sampled estimates.', + `- Chains: ${chained.length} live rules redirect to another rule's ` + + `source, so the browser follows more redirects (longest chain: ` + + `${longestChain} more). Chain shows the extra hops and where the ` + + 'user ends up.', '', - '| Line | Source | Destination | Hits |', - '| ---: | --- | --- | ---: |', - ...sorted.map( - rule => - `| ${rule.line} | ${rule.source} | ${rule.destination} | ` + - `${rule.shadowedBy ? `shadowed by line ${rule.shadowedBy}` : hitsOf(rule)} |` - ), + '| Line | Source | Destination | Hits | Chain |', + '| ---: | --- | --- | ---: | --- |', + ...sorted.map(rule => { + const {hops, loop} = chainOf(rule); + const hits = rule.shadowedBy + ? `shadowed by line ${rule.shadowedBy}` + : hitsOf(rule); + const chain = loop + ? `LOOP after ${hops.length} more` + : hops.length + ? `${hops.length} more β†’ ${hops.at(-1).destination}` + : ''; + return `| ${rule.line} | ${rule.source} | ${rule.destination} | ${hits} | ${chain} |`; + }), '' ]; return lines.join('\n'); From f3f7150906f88e0dca62b4db97e2a6034e3895a9 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 01:32:13 -0600 Subject: [PATCH 09/16] Move page views report to viewership-metrics/ with README Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- .gitignore | 2 +- package.json | 2 +- viewership-metrics/README.md | 59 +++++++++++++++++++ .../page-views-report.mjs | 23 +++----- 4 files changed, 70 insertions(+), 16 deletions(-) create mode 100644 viewership-metrics/README.md rename {dev => viewership-metrics}/page-views-report.mjs (95%) diff --git a/.gitignore b/.gitignore index 5dc8d48c5..d053a5721 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,7 @@ *.pem # script output and reports -/logs +/viewership-metrics/reports # debug npm-debug.log* diff --git a/package.json b/package.json index c8d43e14a..44dbcc0c2 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "check-links": "node dev/check-links.mjs", "check-filenames": "node dev/check-filenames.mjs", "check-images": "node dev/check-images.mjs", - "page-views-report": "node dev/page-views-report.mjs", + "page-views-report": "node viewership-metrics/page-views-report.mjs", "generate-mermaid-logos": "node dev/generate-aws-icons.mjs", "baseai": "baseai", "sync": "npx baseai@latest deploy -m memory-sg-docs-live", diff --git a/viewership-metrics/README.md b/viewership-metrics/README.md new file mode 100644 index 000000000..c72bfbaa8 --- /dev/null +++ b/viewership-metrics/README.md @@ -0,0 +1,59 @@ +# Viewership metrics + +Page view, redirect and error counts for `/docs`, `/changelog` and `/blog` on +sourcegraph.com, from Cloudflare's GraphQL Analytics API. + +## Run + +Needs a Cloudflare API token with **Zone > Analytics > Read** on the +sourcegraph.com zone. + +```sh +CLOUDFLARE_API_TOKEN=... npm run page-views-report # last 90 days +CLOUDFLARE_API_TOKEN=... npm run page-views-report -- --days 30 +``` + +Cloudflare keeps 90 days of history, so `--days` maxes out at 90. + +## Reports + +Written to `reports/` (gitignored). Every page report has the same rows, +sorted differently: + +| File | Sorted by | +| ---------------------------- | ---------------------------------------- | +| `page-views-by-path.md` | path | +| `page-views-by-count.md` | requests | +| `page-views-by-redirects.md` | 3xx count | +| `page-views-by-errors.md` | 404 + 5xx count | +| `redirect-rules.md` | hits per rule in `src/data/redirects.ts` | + +Page report columns: Requests and Visits count HTML 200 responses; Visits +is the subset whose referrer is not sourcegraph.com, Cloudflare's page-view +proxy. 3xx, 404 and 5xx are response counts for the path. + +`redirect-rules.md` matches each rule's source against `/docs` 3xx counts. +Rules are first-match-wins, like `src/middleware.ts`, so a rule whose source +repeats an earlier one is flagged `shadowed`. The Chain column shows how +many more redirects a browser follows when a rule's destination is itself +another rule's source, and where the user finally lands. + +## Filters + +- Bot Management decision `likely_human` +- Excluding ASN `Hetzner Online GmbH` (one hosting provider that dwarfs + real German traffic) and country `CN` +- Skipped as noise: `/_next` and static assets, paths with characters + outside `[A-Za-z0-9/_.~@'-]` (scanner probes), and trailing-slash + redirects. Trailing-slash variants of a page are merged. + +## Known caveats + +- The docs site returns 200 for unknown paths, so deleted docs pages and + probe paths like `/docs/.zshrc` show up as page views. Blog and changelog + return real 404s. +- Counts are adaptive-sampled estimates from `httpRequestsAdaptiveGroups`, + not exact totals. +- Blog and changelog pages are served from `github.com/sourcegraph/sourcegraph` + (`blog/`, `changelog/`, `cmd/docs/`), not this repo, so `redirect-rules.md` + only covers `/docs`. diff --git a/dev/page-views-report.mjs b/viewership-metrics/page-views-report.mjs similarity index 95% rename from dev/page-views-report.mjs rename to viewership-metrics/page-views-report.mjs index f37672f4a..4042cc09d 100644 --- a/dev/page-views-report.mjs +++ b/viewership-metrics/page-views-report.mjs @@ -5,17 +5,11 @@ * * Counts human page views (HTML 200s), redirects, 404s and 5xx errors on * sourcegraph.com for /docs, /changelog and /blog over the last 90 days - * and writes Markdown reports to logs/ sorted by path, request count, + * and writes Markdown reports to reports/ sorted by path, request count, * redirect count and error count, plus how often each redirect rule in - * src/data/redirects.ts was followed. + * src/data/redirects.ts was followed. See README.md. * - * Filters: Bot Management "likely_human", excluding Hetzner (a single - * hosting provider that dwarfs real German traffic) and China. - * - * Requires CLOUDFLARE_API_TOKEN with "Zone > Analytics > Read" on the - * sourcegraph.com zone. - * - * Usage: CLOUDFLARE_API_TOKEN=... node dev/page-views-report.mjs [--days 90] + * Usage: CLOUDFLARE_API_TOKEN=... npm run page-views-report [-- --days 90] */ import fs from 'fs'; @@ -57,8 +51,9 @@ const PAGE_SIZE = 10000; const HOUR_MS = 60 * 60 * 1000; const DAY_MS = 24 * HOUR_MS; -const REPO_ROOT = path.dirname(path.dirname(fileURLToPath(import.meta.url))); -const LOGS_DIR = path.join(REPO_ROOT, 'logs'); +const SCRIPT_DIR = path.dirname(fileURLToPath(import.meta.url)); +const REPO_ROOT = path.dirname(SCRIPT_DIR); +const REPORTS_DIR = path.join(SCRIPT_DIR, 'reports'); const REDIRECTS_FILE = path.join(REPO_ROOT, 'src', 'data', 'redirects.ts'); // One `{source: '...', destination: '...' | CONSTANT}` entry in redirects.ts. @@ -413,14 +408,14 @@ async function main() { } ]; - fs.mkdirSync(LOGS_DIR, {recursive: true}); + fs.mkdirSync(REPORTS_DIR, {recursive: true}); for (const {file, title, metric} of reports) { const reportRows = [...rows].sort( (a, b) => (metric ? metric(b) - metric(a) : 0) || a.path.localeCompare(b.path) ); - const target = path.join(LOGS_DIR, file); + const target = path.join(REPORTS_DIR, file); fs.writeFileSync( target, formatReport({ @@ -434,7 +429,7 @@ async function main() { console.log(`βœ… Wrote ${path.relative(process.cwd(), target)}`); } - const rulesTarget = path.join(LOGS_DIR, 'redirect-rules.md'); + const rulesTarget = path.join(REPORTS_DIR, 'redirect-rules.md'); fs.writeFileSync( rulesTarget, formatRedirectRulesReport({ From 07e309bea7f111c295d89d429135f1591100663c Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 01:41:57 -0600 Subject: [PATCH 10/16] Viewership metrics README: blog/changelog redirects and problems found Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- viewership-metrics/README.md | 42 +++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/viewership-metrics/README.md b/viewership-metrics/README.md index c72bfbaa8..dc765423b 100644 --- a/viewership-metrics/README.md +++ b/viewership-metrics/README.md @@ -56,4 +56,44 @@ another rule's source, and where the user finally lands. not exact totals. - Blog and changelog pages are served from `github.com/sourcegraph/sourcegraph` (`blog/`, `changelog/`, `cmd/docs/`), not this repo, so `redirect-rules.md` - only covers `/docs`. + only covers `/docs`. That site's only redirects are the `REDIRECTS` map in + `cmd/docs/src/hooks.server.ts` (30 exact-match 301s, mostly marketing + paths) plus a 302 in `changelog/pagination.ts` for out-of-range `?page=`. + Two rules touch our prefixes, and both show in the page reports as 3xx: + `/blog/rss.xml β†’ /blog/feed.rss` (21,790 hits in 90 days, 94% of all + blog + changelog redirects) and + `/changelog/self-hosted/server β†’ /changelog/self-hosted/kubernetes` (110). + Cloudflare's path dimension drops the query string, so pagination + redirects land on the bare `/changelog` and `/changelog/releases` rows. + +## Problems found + +From the first 90-day run, September 2026 +([thread](https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34)): + +- **Docs soft-404s.** `/docs/` returns 200, so deleted pages such as + `/docs/code_intelligence/tutorials/indexing_go_repo` (830 requests) and + probes such as `/docs/.zshrc` (660), `/docs/id_dsa` (480) and + `/docs/__data.json` (990) count as page views and never surface as errors. + Hundreds of docs paths with traffic are in neither the sitemap nor the + repo, and the reports cannot tell them from real pages. +- **Redirect chains.** 269 of 962 live rules in `src/data/redirects.ts` + redirect to another rule's source; the longest chain adds 5 hops. 11,640 + of 35,740 matched redirects landed on a chaining rule. Worst case is + `/code_navigation/explanations/precise_code_navigation`, 3 redirects to + reach `/code-navigation/precise-code-navigation`; the three + `precise_code_navigation` rules alone send about 5,500 visitors through + 2 or 3 redirects. +- **Shadowed and dead redirect rules.** 362 rules repeat an earlier rule's + source and can never match; 689 live rules had zero hits. +- **Changelog API 5xx.** + `/changelog/.api/changelog.v1.ChangelogService/ListReleasePosts` returned + 1,880 5xx responses. `/docs` itself returned 260. +- **Missing blog feed redirects.** `/blog/feed.atom` (3,410) and + `/blog/feed.xml` (1,000) 404, while `/blog/rss.xml` redirects 21,790 + times. Feed readers are still polling the old URLs. +- **Old versioned docs paths.** 75 `/docs/@vX.Y/...` paths still receive + traffic. +- **Redirect rule added mid-window.** `/changelog/self-hosted/server` shows + 150 requests served as 200 alongside 110 redirects, so the rule likely + landed partway through the 90 days. From b2a7a97fd200a268ef3a6f00651ddcb3da388a07 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 01:50:15 -0600 Subject: [PATCH 11/16] Page views report: add Sitemap column to page and redirect rule reports Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- viewership-metrics/README.md | 26 ++++++- viewership-metrics/page-views-report.mjs | 97 +++++++++++++++++++++--- 2 files changed, 109 insertions(+), 14 deletions(-) diff --git a/viewership-metrics/README.md b/viewership-metrics/README.md index dc765423b..b39969b33 100644 --- a/viewership-metrics/README.md +++ b/viewership-metrics/README.md @@ -30,13 +30,19 @@ sorted differently: Page report columns: Requests and Visits count HTML 200 responses; Visits is the subset whose referrer is not sourcegraph.com, Cloudflare's page-view -proxy. 3xx, 404 and 5xx are response counts for the path. +proxy. 3xx, 404 and 5xx are response counts for the path. Sitemap is `yes` +when the path is listed in (an index +over `sitemap-main.xml` for blog and changelog, and `docs/sitemap.xml`). A +`no` on `/docs` is a deleted page or probe that still returns 200; the blog +sitemap only lists recent posts, so `no` on `/blog` is normal for old posts. `redirect-rules.md` matches each rule's source against `/docs` 3xx counts. Rules are first-match-wins, like `src/middleware.ts`, so a rule whose source repeats an earlier one is flagged `shadowed`. The Chain column shows how many more redirects a browser follows when a rule's destination is itself -another rule's source, and where the user finally lands. +another rule's source, and where the user finally lands. Its Sitemap column +says whether that final page is in the sitemap, blank when the redirect +leaves the site; `no` means the rule sends people to a soft 404. ## Filters @@ -75,8 +81,8 @@ From the first 90-day run, September 2026 `/docs/code_intelligence/tutorials/indexing_go_repo` (830 requests) and probes such as `/docs/.zshrc` (660), `/docs/id_dsa` (480) and `/docs/__data.json` (990) count as page views and never surface as errors. - Hundreds of docs paths with traffic are in neither the sitemap nor the - repo, and the reports cannot tell them from real pages. + 1,441 of 1,958 docs paths with traffic (40,690 of 277,670 docs requests) + are not in the docs sitemap. - **Redirect chains.** 269 of 962 live rules in `src/data/redirects.ts` redirect to another rule's source; the longest chain adds 5 hops. 11,640 of 35,740 matched redirects landed on a chaining rule. Worst case is @@ -86,6 +92,18 @@ From the first 90-day run, September 2026 2 or 3 redirects. - **Shadowed and dead redirect rules.** 362 rules repeat an earlier rule's source and can never match; 689 live rules had zero hits. +- **Redirects to soft 404s.** 175 live rules land on a `/docs` page that is + not in the sitemap (280 hits), and 71 more land on unlisted + `sourcegraph.com` paths such as `/handbook/...` and `/retrospectives/...` + (180 hits). Docs examples: + `/admin/external_services/postgres β†’ /self-hosted/external_services/postgres` + and `/integration/google_gsuite β†’ /integration/google_workspace`, which + both return 200 with the generic "Sourcegraph docs" title and have no + `.mdx` in the repo. +- **Changelog pages missing from the sitemap.** `/changelog/releases/7.6` + (780 requests), `/changelog/releases/7.0` (750) and dated posts such as + `/changelog/2026-06-22` (330) serve real pages but are not in + `sitemap-main.xml`. - **Changelog API 5xx.** `/changelog/.api/changelog.v1.ChangelogService/ListReleasePosts` returned 1,880 5xx responses. `/docs` itself returned 260. diff --git a/viewership-metrics/page-views-report.mjs b/viewership-metrics/page-views-report.mjs index 4042cc09d..c258b0d9f 100644 --- a/viewership-metrics/page-views-report.mjs +++ b/viewership-metrics/page-views-report.mjs @@ -20,6 +20,8 @@ const ZONE_TAG = process.env.CLOUDFLARE_ZONE_ID ?? 'a168cb2eefa87d19793824cd9bf83f3a'; const HOST = 'sourcegraph.com'; const PATH_PREFIXES = ['/docs', '/changelog', '/blog']; +// An index pointing at sitemap-main.xml (blog, changelog) and docs/sitemap.xml. +const SITEMAP_URL = `https://${HOST}/sitemap.xml`; const EXCLUDED_COUNTRIES = ['CN']; const EXCLUDED_ASN_DESCRIPTIONS = ['Hetzner Online GmbH']; @@ -234,6 +236,41 @@ function loadRedirectRules() { return rules; } +// Paths listed in the sitemap, following entries. Any page +// with traffic that is not here is deleted, unlisted or a probe. +async function fetchSitemapPaths(url = SITEMAP_URL, paths = new Set()) { + const response = await fetch(url); + if (!response.ok) { + throw new Error(`${url}: HTTP ${response.status}`); + } + const xml = await response.text(); + const locations = [...xml.matchAll(/([^<]+)<\/loc>/g)].map(match => + match[1].trim() + ); + if (xml.includes('. Live rules sort by hits, then // shadowed duplicates; both keep file order within a tie. -function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { +function formatRedirectRulesReport({ + title, + start, + end, + rules, + rowsByPath, + sitemapPaths +}) { const hitsOf = rule => rowsByPath.get(`/docs${rule.source}`)?.redirects ?? 0; const live = rules.filter(rule => !rule.shadowedBy); @@ -285,6 +329,15 @@ function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { 0, ...chained.map(rule => chainOf(rule).hops.length) ); + // Where the browser ends up: yes/no for sitemap membership, blank off-site. + const sitemapOf = rule => { + const {hops, loop} = chainOf(rule); + const landing = loop + ? null + : landingPath((hops.at(-1) ?? rule).destination); + return landing === null ? '' : sitemapPaths.has(landing) ? 'yes' : 'no'; + }; + const landingUnlisted = live.filter(rule => sitemapOf(rule) === 'no'); const docsRedirects = [...rowsByPath.entries()] .filter(([pagePath]) => pagePath.startsWith('/docs')) .reduce((sum, [, totals]) => sum + totals.redirects, 0); @@ -308,9 +361,15 @@ function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { `source, so the browser follows more redirects (longest chain: ` + `${longestChain} more). Chain shows the extra hops and where the ` + 'user ends up.', + `- Sitemap: whether the page the user ends up on is in ${SITEMAP_URL} ` + + `(blank when it leaves the site). ${landingUnlisted.length} live ` + + `rules land on an unlisted page, ${landingUnlisted.reduce( + (sum, rule) => sum + hitsOf(rule), + 0 + )} hits; on /docs that is likely a soft 404.`, '', - '| Line | Source | Destination | Hits | Chain |', - '| ---: | --- | --- | ---: | --- |', + '| Line | Source | Destination | Hits | Chain | Sitemap |', + '| ---: | --- | --- | ---: | --- | --- |', ...sorted.map(rule => { const {hops, loop} = chainOf(rule); const hits = rule.shadowedBy @@ -321,7 +380,7 @@ function formatRedirectRulesReport({title, start, end, rules, rowsByPath}) { : hops.length ? `${hops.length} more β†’ ${hops.at(-1).destination}` : ''; - return `| ${rule.line} | ${rule.source} | ${rule.destination} | ${hits} | ${chain} |`; + return `| ${rule.line} | ${rule.source} | ${rule.destination} | ${hits} | ${chain} | ${sitemapOf(rule)} |`; }), '' ]; @@ -341,13 +400,18 @@ function formatReport({title, start, end, total, rows}) { '5xx count any content type. Trailing-slash redirects, static ' + 'assets and scanner probe paths are skipped. ' + 'All counts are adaptive-sampled estimates.', + `- Sitemap: ${total.sitemapPaths} of ${total.paths} paths are in ` + + `${SITEMAP_URL}, with ${total.sitemapRequests} of ${total.requests} ` + + 'requests. The rest are deleted, unlisted or probe paths; on /docs ' + + 'they still return 200. The blog sitemap lists only recent posts.', '', - '| Path | Requests | Visits | 3xx | 404 | 5xx |', - '| --- | ---: | ---: | ---: | ---: | ---: |', + '| Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap |', + '| --- | ---: | ---: | ---: | ---: | ---: | --- |', ...rows.map( row => `| ${row.path} | ${row.requests} | ${row.visits} | ` + - `${row.redirects} | ${row.notFound} | ${row.serverErrors} |` + `${row.redirects} | ${row.notFound} | ${row.serverErrors} | ` + + `${row.inSitemap ? 'yes' : 'no'} |` ), '' ]; @@ -379,13 +443,25 @@ async function main() { windowStart = windowEnd; } + console.log(`πŸ—ΊοΈ Fetching ${SITEMAP_URL}...`); + const sitemapPaths = await fetchSitemapPaths(); const rows = [...rowsByPath.entries()].map(([pagePath, totals]) => ({ path: pagePath, - ...totals + ...totals, + inSitemap: sitemapPaths.has(pagePath) })); - const total = {paths: rows.length, ...emptyTotals()}; + const total = { + paths: rows.length, + ...emptyTotals(), + sitemapPaths: 0, + sitemapRequests: 0 + }; for (const row of rows) { for (const key of Object.keys(emptyTotals())) total[key] += row[key]; + if (row.inSitemap) { + total.sitemapPaths += 1; + total.sitemapRequests += row.requests; + } } // Every report has every row: sorted by a metric (descending), or by path. @@ -437,7 +513,8 @@ async function main() { start, end, rules: loadRedirectRules(), - rowsByPath + rowsByPath, + sitemapPaths }) ); console.log(`βœ… Wrote ${path.relative(process.cwd(), rulesTarget)}`); From 9e4e49d0da84c133479d0d1e2ade78df8f4f2c70 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 02:04:04 -0600 Subject: [PATCH 12/16] Redirect rules report: Sitemap column checks the rule's own destination Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- viewership-metrics/README.md | 14 ++++++++------ viewership-metrics/page-views-report.mjs | 18 ++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/viewership-metrics/README.md b/viewership-metrics/README.md index b39969b33..ac23d7e84 100644 --- a/viewership-metrics/README.md +++ b/viewership-metrics/README.md @@ -41,8 +41,9 @@ Rules are first-match-wins, like `src/middleware.ts`, so a rule whose source repeats an earlier one is flagged `shadowed`. The Chain column shows how many more redirects a browser follows when a rule's destination is itself another rule's source, and where the user finally lands. Its Sitemap column -says whether that final page is in the sitemap, blank when the redirect -leaves the site; `no` means the rule sends people to a soft 404. +says whether the rule's destination is in the sitemap, blank when the +redirect leaves the site. A `no` with an empty Chain means the rule sends +people to a soft 404; a `no` with a Chain is an intermediate hop. ## Filters @@ -92,10 +93,11 @@ From the first 90-day run, September 2026 2 or 3 redirects. - **Shadowed and dead redirect rules.** 362 rules repeat an earlier rule's source and can never match; 689 live rules had zero hits. -- **Redirects to soft 404s.** 175 live rules land on a `/docs` page that is - not in the sitemap (280 hits), and 71 more land on unlisted - `sourcegraph.com` paths such as `/handbook/...` and `/retrospectives/...` - (180 hits). Docs examples: +- **Redirects to soft 404s.** 512 live rules have a destination that is not + in the sitemap (12,100 hits). 269 of those are chain hops into another + rule; the rest are dead ends: 172 point at a `/docs` page that does not + exist (280 hits) and 71 at unlisted `sourcegraph.com` paths such as + `/handbook/...` and `/retrospectives/...` (180 hits). Docs examples: `/admin/external_services/postgres β†’ /self-hosted/external_services/postgres` and `/integration/google_gsuite β†’ /integration/google_workspace`, which both return 200 with the generic "Sourcegraph docs" title and have no diff --git a/viewership-metrics/page-views-report.mjs b/viewership-metrics/page-views-report.mjs index c258b0d9f..3c459b0e4 100644 --- a/viewership-metrics/page-views-report.mjs +++ b/viewership-metrics/page-views-report.mjs @@ -329,15 +329,12 @@ function formatRedirectRulesReport({ 0, ...chained.map(rule => chainOf(rule).hops.length) ); - // Where the browser ends up: yes/no for sitemap membership, blank off-site. + // Sitemap membership of the rule's own destination; blank when off-site. const sitemapOf = rule => { - const {hops, loop} = chainOf(rule); - const landing = loop - ? null - : landingPath((hops.at(-1) ?? rule).destination); + const landing = landingPath(rule.destination); return landing === null ? '' : sitemapPaths.has(landing) ? 'yes' : 'no'; }; - const landingUnlisted = live.filter(rule => sitemapOf(rule) === 'no'); + const destinationUnlisted = live.filter(rule => sitemapOf(rule) === 'no'); const docsRedirects = [...rowsByPath.entries()] .filter(([pagePath]) => pagePath.startsWith('/docs')) .reduce((sum, [, totals]) => sum + totals.redirects, 0); @@ -361,12 +358,13 @@ function formatRedirectRulesReport({ `source, so the browser follows more redirects (longest chain: ` + `${longestChain} more). Chain shows the extra hops and where the ` + 'user ends up.', - `- Sitemap: whether the page the user ends up on is in ${SITEMAP_URL} ` + - `(blank when it leaves the site). ${landingUnlisted.length} live ` + - `rules land on an unlisted page, ${landingUnlisted.reduce( + `- Sitemap: whether the rule's destination is in ${SITEMAP_URL} ` + + `(blank when it leaves the site). ${destinationUnlisted.length} ` + + `live rules point at an unlisted page, ${destinationUnlisted.reduce( (sum, rule) => sum + hitsOf(rule), 0 - )} hits; on /docs that is likely a soft 404.`, + )} hits; unless Chain shows a further redirect, on /docs that is ` + + 'likely a soft 404.', '', '| Line | Source | Destination | Hits | Chain | Sitemap |', '| ---: | --- | --- | ---: | --- | --- |', From 394b4d6da015c6110cc6628a998550875a865afc Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 11:00:59 -0600 Subject: [PATCH 13/16] Adding report outputs --- .gitignore | 3 - .../reports/page-views-by-count.md | 3053 +++++++++++++++++ .../reports/page-views-by-errors.md | 3053 +++++++++++++++++ .../reports/page-views-by-path.md | 3053 +++++++++++++++++ .../reports/page-views-by-redirects.md | 3053 +++++++++++++++++ viewership-metrics/reports/redirect-rules.md | 1337 ++++++++ 6 files changed, 13549 insertions(+), 3 deletions(-) create mode 100644 viewership-metrics/reports/page-views-by-count.md create mode 100644 viewership-metrics/reports/page-views-by-errors.md create mode 100644 viewership-metrics/reports/page-views-by-path.md create mode 100644 viewership-metrics/reports/page-views-by-redirects.md create mode 100644 viewership-metrics/reports/redirect-rules.md diff --git a/.gitignore b/.gitignore index d053a5721..ff9bc8266 100644 --- a/.gitignore +++ b/.gitignore @@ -19,9 +19,6 @@ .DS_Store *.pem -# script output and reports -/viewership-metrics/reports - # debug npm-debug.log* yarn-debug.log* diff --git a/viewership-metrics/reports/page-views-by-count.md b/viewership-metrics/reports/page-views-by-count.md new file mode 100644 index 000000000..e4541f589 --- /dev/null +++ b/viewership-metrics/reports/page-views-by-count.md @@ -0,0 +1,3053 @@ +# Page views by request count (last 90 days) + +- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Host: sourcegraph.com; paths: /docs, /changelog, /blog +- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN +- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). +- 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. +- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. + +| Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | +| --- | ---: | ---: | ---: | ---: | ---: | --- | +| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | +| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | +| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | +| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | +| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | +| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | +| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | +| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | +| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | +| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | +| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | +| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | +| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | +| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | +| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | +| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | +| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | +| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | +| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | +| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | +| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | +| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | +| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | +| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | +| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | +| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | +| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | +| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | +| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | +| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | +| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | +| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | +| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | +| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | +| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | +| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | +| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | +| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | +| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | +| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | +| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | +| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | +| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | +| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | +| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | +| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | +| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | +| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | +| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | +| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | +| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | +| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | +| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | +| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | +| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | +| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | +| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | +| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | +| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | +| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | +| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | +| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | +| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | +| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | +| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | +| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | +| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | +| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | +| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | +| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | +| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | +| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | +| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | +| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | +| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | +| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | +| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | +| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | +| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | +| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | +| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | +| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | +| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | +| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | +| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | +| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | +| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | +| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | +| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | +| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | +| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | +| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | +| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | +| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | +| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | +| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | +| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | +| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | +| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | +| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | +| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | +| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | +| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | +| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | +| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | +| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | +| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | +| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | +| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | +| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | +| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | +| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | +| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | +| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | +| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | +| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | +| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | +| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | +| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | +| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | +| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | +| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | +| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | +| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | +| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | +| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | +| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | +| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | +| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | +| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | +| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | +| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | +| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | +| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | +| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | +| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | +| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | +| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | +| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | +| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | +| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | +| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | +| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | +| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | +| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | +| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | +| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | +| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | +| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | +| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | +| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | +| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | +| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | +| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | +| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | +| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | +| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | +| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | +| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | +| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | +| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | +| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | +| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | +| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | +| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | +| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | +| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | +| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | +| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | +| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | +| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | +| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | +| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | +| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | +| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | +| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | +| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | +| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | +| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | +| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | +| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | +| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | +| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | +| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | +| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | +| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | +| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | +| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | +| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | +| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | +| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | +| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | +| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | +| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | +| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | +| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | +| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/login | 320 | 320 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | +| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | +| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | +| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | +| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | +| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | +| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | +| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | +| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | +| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | +| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | +| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | +| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | +| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | +| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | +| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | +| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | +| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | +| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | +| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | +| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | +| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | +| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | +| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | +| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | +| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | +| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | +| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | +| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | +| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | +| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | +| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | +| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | +| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | +| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | +| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | +| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | +| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | +| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | +| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | +| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | +| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | +| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | +| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | +| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | +| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | +| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | +| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | +| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | +| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | +| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | +| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | +| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | +| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | +| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | +| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | +| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | +| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | +| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | +| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | +| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | +| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | +| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | +| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | +| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | +| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | +| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | +| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | +| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | +| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | +| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | +| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | +| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | +| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | +| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | +| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | +| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | +| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | +| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | +| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | +| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | +| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | +| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | +| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | +| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | +| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | +| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | +| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | +| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | +| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | +| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | +| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | +| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | +| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | +| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | +| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | +| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | +| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | +| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | +| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | +| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | +| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | +| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | +| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | +| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | +| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | +| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | +| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | +| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | +| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | +| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | +| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | +| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | +| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | +| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | +| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | +| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | +| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | +| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | +| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | +| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | +| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | +| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | +| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | +| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | +| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | +| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | +| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | +| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | +| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | +| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | +| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | +| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | +| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | +| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | +| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | +| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | +| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | +| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | +| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | +| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | +| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | +| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | +| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | +| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | +| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | +| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | +| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | +| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | +| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | +| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | +| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | +| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | +| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | +| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | +| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | +| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | +| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | +| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | +| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | +| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | +| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | +| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | +| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | +| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | +| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | +| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | +| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | +| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | +| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | +| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | +| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | +| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | +| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | +| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | +| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | +| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | +| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | +| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | +| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | +| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | +| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | +| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | +| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | +| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | +| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | +| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | +| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | +| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | +| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | +| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | +| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | +| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | +| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | +| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | +| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | +| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | +| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | +| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | +| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | +| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | +| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | +| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | +| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | +| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | +| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | +| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | +| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | +| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | +| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | +| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | +| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | +| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | +| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | +| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | +| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | +| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | +| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | +| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | +| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | +| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | +| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | +| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | +| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | +| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | +| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | +| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | +| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | +| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | +| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | +| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | +| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | +| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | +| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | +| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | +| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | +| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | +| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | +| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | +| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | +| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | +| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | +| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | +| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | +| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | +| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | +| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | +| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | +| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | +| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | +| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | +| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | +| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | +| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | +| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | +| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | +| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | +| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | +| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | +| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | +| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | +| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | +| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | +| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | +| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | +| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | +| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | +| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | +| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | +| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | +| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | +| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | +| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | +| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | +| /docs/account | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | +| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | +| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | +| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | +| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | +| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | +| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | +| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | +| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | +| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | +| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | +| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | +| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | +| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | +| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | +| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | +| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | +| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | +| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | +| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | +| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | +| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | +| /docs/about | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | +| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | +| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | +| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | +| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | +| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | +| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | +| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | +| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | +| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | +| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | +| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | +| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | +| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | +| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | +| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | +| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | +| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | +| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | +| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | +| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | +| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | +| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | +| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | +| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | +| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | +| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | +| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | +| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | +| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/nope | 10 | 10 | 0 | 0 | 0 | no | +| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | +| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | +| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | +| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | +| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /blog/_ | 0 | 0 | 0 | 90 | 0 | no | +| /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117135991499/5-surprisingly-painful-things-about-client-side-js | 0 | 0 | 0 | 30 | 0 | no | +| /blog/117137797304/google-io-2014-building-sourcegraph-a | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117580140734 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/117580140734/announcing-appdash-an-open-source-perf-tracing | 0 | 0 | 0 | 20 | 0 | no | +| /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | +| /blog/93793683802e220755a568.avi | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | +| /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | +| /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | +| /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | +| /blog/agent-skills | 0 | 0 | 0 | 30 | 0 | no | +| /blog/agentic-batch-changes-is-now-in-public-beta | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ai-assisted-coding-with-cody-lessons-from-context-retrieval-and-evaluation-for-code-recommendations | 0 | 0 | 0 | 70 | 0 | no | +| /blog/ai-code-migration | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-coding-costs | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ai-native-codebases-2 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/alex-isken | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp | 0 | 0 | 0 | 70 | 0 | no | +| /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | +| /blog/amp-ai-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-general-availability | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | +| /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | +| /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | +| /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | +| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | +| /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | +| /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | +| /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | +| /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | +| /blog/bin/register/XWiki/XWikiRegister | 0 | 0 | 0 | 30 | 0 | no | +| /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | +| /blog/browse-github-like-an-ide-with-the-sourcegraph-chrome-extension-9e279d2b98e9 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/building-a-testable-webapp | 0 | 0 | 0 | 60 | 0 | no | +| /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | +| /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changes-to-sourcegraph-open-source-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-our-license | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chat-oriented-programming-in-action4 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chrome-extension-tooltips-and-seamless | 0 | 0 | 0 | 20 | 0 | no | +| /blog/claude-3.5-sonnet-now-available-in-cody | 0 | 0 | 0 | 70 | 0 | no | +| /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | +| /blog/co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-ai/how-cody-context-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | +| /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-scanning-tools | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-usage-examples-in-your-editor-as-you-type-f7fc89d894dd | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-is-now-free-for-all-developers | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | +| /blog/convoy-improved-their-developer-on-boarding-with-sourcegraph | 0 | 0 | 0 | 60 | 0 | no | +| /blog/cyclomatic-complexity | 0 | 0 | 0 | 30 | 0 | no | +| /blog/deep-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/dev | 0 | 0 | 0 | 30 | 0 | no | +| /blog/developer-experience-tools | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-productivity-with-ai-coding-assistants | 0 | 0 | 0 | 20 | 0 | no | +| /blog/devops-transformation-a-complete-guide-for-2026.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | +| /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | +| /blog/dump.zip | 0 | 0 | 0 | 20 | 0 | no | +| /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | +| /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | +| /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | +| /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | +| /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | +| /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | +| /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | +| /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go-at-the-darpa-cyber-grand-challenge-will-hawkins | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go-code-intelligence-on-sourcegraph-now-in-general-availability-ga-e2ebcddc7f45 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/admin../actuator/env | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/data-api/logfile | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/go-reliability-and-durability-at-dropbox-tammy-butow | 0 | 0 | 0 | 40 | 0 | no | +| /blog/go/gophercon-2018-adventures-in-cgo-performance | 0 | 0 | 0 | 90 | 0 | no | +| /blog/go/gophercon-2018-allocator-wrestling | 0 | 0 | 0 | 60 | 0 | no | +| /blog/go/gophercon-2018-asynchronous-networking-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-computer-vision-using-go-and-opencv-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-from-prototype-to-production-lessons-from-building-and | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-how-to-write-a-parser-in-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2018-implementing-a-network-protocol-in-go | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-rethinking-classical-concurrency-patterns | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-the-go-programmers-guide-to-secure-connections | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-the-importance-of-beginners | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-detecting-incompatible-api-changes | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | +| /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/idiomatic-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/lightning-talks-1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/management//httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/peter-bourgon-on-the-history-of-go-kit-and-whats-next | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/writing-network-clients-in-go-the-design-and-implementation-of-the-nats-client | 0 | 0 | 0 | 10 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph-a-large-scale-code-search-cross-reference-engine-in-go-1f911b78a82e | 0 | 0 | 0 | 70 | 0 | no | +| /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | +| /blog/graph-based-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-massive-scale-graphql-as-the-glue-in-a-microservice-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | +| /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | +| /blog/heapdump.hprof | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-cody-searches-your-codebase | 0 | 0 | 0 | 80 | 0 | no | +| /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-nativeScript-onboards-new-open-source-contributors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-sourcegraph-approaches-on-premise-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-read-code-effectively-in-2020 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-literal-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-use-cody-in-large-codebases | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-to-write-good-coding-agent-instructions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/img | 0 | 0 | 0 | 60 | 0 | no | +| /blog/img/payments | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improving-code-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/index.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | +| /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | +| /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | +| /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | +| /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | +| /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | +| /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | +| /blog/keeping-it-boring-and-relevant-with-bm25f/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/lee-byron-kicks-things-off | 0 | 0 | 0 | 20 | 0 | no | +| /blog/lessons-from-ai-coding-assistants-context-retrieval-and-evaluation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | +| /blog/live/gophercon2015/123586421955 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123645585015 | 0 | 0 | 0 | 70 | 0 | no | +| /blog/live/gophercon2015/123653512740 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123653512741 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123656134615 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123664481750 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123748269731 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111549976927 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111639383132 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111640712092 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111642525197 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644026097 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644528497 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111645038222 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | +| /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | +| /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | +| /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | +| /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | +| /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | +| /blog/null | 0 | 0 | 0 | 10 | 0 | no | +| /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | +| /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | +| /blog/openai-o1-for-cody/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | +| /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | +| /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | +| /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | +| /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | +| /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release | 0 | 0 | 0 | 40 | 0 | no | +| /blog/release-anxiety | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/release/3.29 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | +| /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | +| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss | 0 | 0 | 0 | 20 | 0 | no | +| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/scip | 0 | 0 | 0 | 90 | 0 | no | +| /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | +| /blog/search-based-vs-semantic-code-search | 0 | 0 | 0 | 40 | 0 | no | +| /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/series-d | 0 | 0 | 0 | 10 | 0 | no | +| /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sosf-1-kickoff | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.17 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.9 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-5-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-5.3-changelog | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-7 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/sourcegraph-7-0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/staff/mammals-coombe-bissett-down-fox | 0 | 0 | 0 | 10 | 0 | no | +| /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/steve-yegge | 0 | 0 | 0 | 10 | 0 | no | +| /blog/steve-yegge-joins-sourcegraph | 0 | 0 | 0 | 40 | 0 | no | +| /blog/strange-loop/strange-loop-2019-everything-you-wanted-to-know-about-distributed-tracing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-improving-law-interpretability-using-nlp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | +| /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | +| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-death-of-the-junior-develop | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-end-of-programming-as-we-know-it | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-evolution-of-code-intelligence-beyond-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-future-of-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-navigation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-go | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-query | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-lifecycle-of-a-cody-request | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-new-era-of-go-package-management | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively/g'p9ro0ywy | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-mcp-server | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-12-more-steps-to-better-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | +| /blog/throwingawesomemeetups | 0 | 0 | 0 | 10 | 0 | no | +| /blog/thunder-talks | 0 | 0 | 0 | 20 | 0 | no | +| /blog/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c | 0 | 0 | 0 | 80 | 0 | no | +| /blog/top-150-most-used-golang-functions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/understanding-channels-kavya-joshi | 0 | 0 | 0 | 20 | 0 | no | +| /blog/upgraded-claude-3.5-sonnet-available-in-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ways-to-use-sourcegraph-extension-for-vs-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | +| /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | +| /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | +| /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-we-built-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-we-switched-to-zoekt-for-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/write-for-us | 0 | 0 | 0 | 10 | 0 | no | +| /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | +| /blog/zoekt | 0 | 0 | 0 | 30 | 0 | no | +| /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | +| /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-05-05.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-05-14 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-06-22.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/batch-spec-library-customizable.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/chat-full-width-vscode/logon/LogonPoint/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-4-models-available | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | +| /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.viminfo | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../config/initializers/secret_token.rb | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../configs/sourcegraph_1.yml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../data | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../dev_sourcegraph_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph_admin-2026-09-01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | +| /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/self-hosted/deployment.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | +| /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logger/sourcegraphprod_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logs/admin_sourcegraph.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/xscanlsimdfry/server | 0 | 0 | 0 | 80 | 0 | no | +| /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | +| /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/auth/login_form | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/saml_with_microsoft_adfs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | +| /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | +| /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/deploy/migrate-backup | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deployment_best_practices | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_dind | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | +| /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/how-to/update_repo_failure | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/http_https_configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | +| /docs/admin/install/docker-compose | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker-compose/migrate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker/aws | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker/google_cloud | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/install/kubernetes/configure | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/operations | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | +| /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | +| /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | +| /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | +| /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | +| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | +| /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | +| /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | +| /docs/app | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | +| /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | +| /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | +| /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | +| /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | +| /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | +| /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | +| /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | +| /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | +| /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | +| /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | +| /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | +| /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | +| /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | +| /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code_search/explanations/features | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | +| /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | +| /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | +| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | +| /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | +| /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | +| /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | +| /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | +| /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | +| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | +| /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | +| /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | +| /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | +| /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | +| /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/how-to/run-psql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/admin/observability | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | +| /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | +| /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | +| /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/how-to-videos | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | +| /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | +| /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | +| /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | +| /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/own | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | +| /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | +| /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | +| /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | +| /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | +| /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | +| /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | +| /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | +| /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | +| /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | +| /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | +| /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/user | 0 | 0 | 80 | 0 | 0 | no | +| /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | +| /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | +| /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.10/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.10/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.11/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/admin/auth | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/admin/config/batch_changes | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12/admin/permissions | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/batch_changes/quickstart | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.0/admin/observability/metrics | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/batch_changes/quickstart | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_insights/references/common_use_cases | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_monitoring/how-tos/starting_points | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.2/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.2/cody/clients/install-vscode | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/integration/browser_extension | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/explanations/server_side | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/quickstart | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/batch-changes/site-admin-configuration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/code_monitoring/how-tos/starting_points | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.4/code-search/types/search-jobs | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.4/code-search/working/search_contexts | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/cody | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/self-hosted/external-services/object-storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5 | 0 | 0 | 230 | 0 | 0 | no | +| /docs/v/7.5/admin/auth | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.5/admin/code_hosts/github | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.5/admin/repo/recording | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/admin/updates | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/cli | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/7.5/code_navigation/explanations/precise_code_navigation | 0 | 0 | 160 | 0 | 0 | no | +| /docs/v/7.5/code_search/reference/queries | 0 | 0 | 410 | 0 | 0 | no | +| /docs/v/7.5/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.5/integration/open_in_editor | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/self-hosted/external-services/object-storage | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.6 | 0 | 0 | 150 | 0 | 0 | no | +| /docs/v/7.6/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.6/code_insights/references/license | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.6/code_navigation/explanations/precise_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/v/7.6/code_search/how-to/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.6/code_search/reference/queries | 0 | 0 | 340 | 0 | 0 | no | +| /docs/v/7.6/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.6/code-search/working/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.7/api/graphql | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | +| /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | diff --git a/viewership-metrics/reports/page-views-by-errors.md b/viewership-metrics/reports/page-views-by-errors.md new file mode 100644 index 000000000..3dae7ed5c --- /dev/null +++ b/viewership-metrics/reports/page-views-by-errors.md @@ -0,0 +1,3053 @@ +# Page views by error count (404 + 5xx) (last 90 days) + +- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Host: sourcegraph.com; paths: /docs, /changelog, /blog +- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN +- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). +- 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. +- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. + +| Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | +| --- | ---: | ---: | ---: | ---: | ---: | --- | +| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | +| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | +| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | +| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | +| /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | +| /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | +| /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | +| /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | +| /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | +| /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/_ | 0 | 0 | 0 | 90 | 0 | no | +| /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | +| /blog/browse-github-like-an-ide-with-the-sourcegraph-chrome-extension-9e279d2b98e9 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | +| /blog/go/gophercon-2018-adventures-in-cgo-performance | 0 | 0 | 0 | 90 | 0 | no | +| /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | +| /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | +| /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/scip | 0 | 0 | 0 | 90 | 0 | no | +| /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | +| /blog/how-cody-searches-your-codebase | 0 | 0 | 0 | 80 | 0 | no | +| /blog/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c | 0 | 0 | 0 | 80 | 0 | no | +| /changelog/xscanlsimdfry/server | 0 | 0 | 0 | 80 | 0 | no | +| /blog/ai-assisted-coding-with-cody-lessons-from-context-retrieval-and-evaluation-for-code-recommendations | 0 | 0 | 0 | 70 | 0 | no | +| /blog/amp | 0 | 0 | 0 | 70 | 0 | no | +| /blog/claude-3.5-sonnet-now-available-in-cody | 0 | 0 | 0 | 70 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph-a-large-scale-code-search-cross-reference-engine-in-go-1f911b78a82e | 0 | 0 | 0 | 70 | 0 | no | +| /blog/live/gophercon2015/123645585015 | 0 | 0 | 0 | 70 | 0 | no | +| /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | +| /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | +| /blog/building-a-testable-webapp | 0 | 0 | 0 | 60 | 0 | no | +| /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/convoy-improved-their-developer-on-boarding-with-sourcegraph | 0 | 0 | 0 | 60 | 0 | no | +| /blog/go/gophercon-2018-allocator-wrestling | 0 | 0 | 0 | 60 | 0 | no | +| /blog/img | 0 | 0 | 0 | 60 | 0 | no | +| /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-3.9 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-5.3-changelog | 0 | 0 | 0 | 60 | 0 | no | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | +| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | +| /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | +| /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | +| /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | +| /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | +| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | +| /blog/117580140734 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | +| /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/deep-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/go/go-reliability-and-durability-at-dropbox-tammy-butow | 0 | 0 | 0 | 40 | 0 | no | +| /blog/img/payments | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | +| /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | +| /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | +| /blog/release | 0 | 0 | 0 | 40 | 0 | no | +| /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | +| /blog/search-based-vs-semantic-code-search | 0 | 0 | 0 | 40 | 0 | no | +| /blog/sourcegraph-7 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/steve-yegge-joins-sourcegraph | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-evolution-of-code-intelligence-beyond-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-future-of-go | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-lifecycle-of-a-cody-request | 0 | 0 | 0 | 40 | 0 | no | +| /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | +| /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/117135991499/5-surprisingly-painful-things-about-client-side-js | 0 | 0 | 0 | 30 | 0 | no | +| /blog/agent-skills | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-code-migration | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-native-codebases-2 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | +| /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | +| /blog/bin/register/XWiki/XWikiRegister | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-is-now-free-for-all-developers | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cyclomatic-complexity | 0 | 0 | 0 | 30 | 0 | no | +| /blog/dev | 0 | 0 | 0 | 30 | 0 | no | +| /blog/devops-transformation-a-complete-guide-for-2026.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go-at-the-darpa-cyber-grand-challenge-will-hawkins | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2018-how-to-write-a-parser-in-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/idiomatic-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | +| /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | +| /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | +| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | +| /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | +| /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | +| /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | +| /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | +| /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | +| /blog/zoekt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/static../logs/admin_sourcegraph.txt | 0 | 0 | 0 | 30 | 0 | no | +| /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | +| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | +| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | +| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | +| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | +| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | +| /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117137797304/google-io-2014-building-sourcegraph-a | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117580140734/announcing-appdash-an-open-source-perf-tracing | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-ai-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | +| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | +| /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changes-to-sourcegraph-open-source-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-our-license | 0 | 0 | 0 | 20 | 0 | no | +| /blog/chat-oriented-programming-in-action4 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/chrome-extension-tooltips-and-seamless | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-ai/how-cody-context-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-scanning-tools | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-usage-examples-in-your-editor-as-you-type-f7fc89d894dd | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/developer-productivity-with-ai-coding-assistants | 0 | 0 | 0 | 20 | 0 | no | +| /blog/dump.zip | 0 | 0 | 0 | 20 | 0 | no | +| /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | +| /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/admin../actuator/env | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-from-prototype-to-production-lessons-from-building-and | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-rethinking-classical-concurrency-patterns | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/lightning-talks-1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/management//httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improving-code-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | +| /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | +| /blog/keeping-it-boring-and-relevant-with-bm25f/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/lee-byron-kicks-things-off | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123653512741 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123656134615 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123664481750 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111549976927 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111639383132 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111640712092 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111642525197 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644026097 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644528497 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111645038222 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | +| /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | +| /blog/openai-o1-for-cody/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release-anxiety | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/3.29 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | +| /blog/rss | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.17 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | +| /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/strange-loop/strange-loop-2019-improving-law-interpretability-using-nlp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/thunder-talks | 0 | 0 | 0 | 20 | 0 | no | +| /blog/understanding-channels-kavya-joshi | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-we-switched-to-zoekt-for-search | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-05-05.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/batch-spec-library-customizable.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-4-models-available | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../configs/sourcegraph_1.yml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/deployment.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | +| /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | +| /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | +| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | +| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | +| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | +| /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | +| /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | +| /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | +| /blog/93793683802e220755a568.avi | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | +| /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | +| /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | +| /blog/agentic-batch-changes-is-now-in-public-beta | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ai-coding-costs | 0 | 0 | 0 | 10 | 0 | no | +| /blog/alex-isken | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-general-availability | 0 | 0 | 0 | 10 | 0 | no | +| /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | +| /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | +| /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | +| /blog/co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-experience-tools | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | +| /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | +| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | +| /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | +| /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | +| /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | +| /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go-code-intelligence-on-sourcegraph-now-in-general-availability-ga-e2ebcddc7f45 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/data-api/logfile | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-asynchronous-networking-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-computer-vision-using-go-and-opencv-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-implementing-a-network-protocol-in-go | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-the-go-programmers-guide-to-secure-connections | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-the-importance-of-beginners | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-detecting-incompatible-api-changes | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/peter-bourgon-on-the-history-of-go-kit-and-whats-next | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/writing-network-clients-in-go-the-design-and-implementation-of-the-nats-client | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graph-based-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-massive-scale-graphql-as-the-glue-in-a-microservice-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | +| /blog/heapdump.hprof | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-nativeScript-onboards-new-open-source-contributors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-sourcegraph-approaches-on-premise-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-read-code-effectively-in-2020 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-literal-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-use-cody-in-large-codebases | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-write-good-coding-agent-instructions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/index.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/lessons-from-ai-coding-assistants-context-retrieval-and-evaluation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123586421955 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123653512740 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123748269731 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | +| /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | +| /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/null | 0 | 0 | 0 | 10 | 0 | no | +| /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | +| /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | +| /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | +| /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | +| /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | +| /blog/series-d | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sosf-1-kickoff | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-5-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-7-0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/staff/mammals-coombe-bissett-down-fox | 0 | 0 | 0 | 10 | 0 | no | +| /blog/steve-yegge | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-everything-you-wanted-to-know-about-distributed-tracing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-death-of-the-junior-develop | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-end-of-programming-as-we-know-it | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-navigation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-query | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-new-era-of-go-package-management | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively/g'p9ro0ywy | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-mcp-server | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-12-more-steps-to-better-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/throwingawesomemeetups | 0 | 0 | 0 | 10 | 0 | no | +| /blog/top-150-most-used-golang-functions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/upgraded-claude-3.5-sonnet-available-in-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ways-to-use-sourcegraph-extension-for-vs-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | +| /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-we-built-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/write-for-us | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-05-14 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-06-22.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/chat-full-width-vscode/logon/LogonPoint/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.viminfo | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../config/initializers/secret_token.rb | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../data | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../dev_sourcegraph_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph_admin-2026-09-01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logger/sourcegraphprod_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | +| /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | +| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | +| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | +| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | +| /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | +| /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | +| /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | +| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | +| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | +| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | +| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | +| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | +| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | +| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | +| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | +| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | +| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | +| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | +| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | +| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | +| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | +| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | +| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | +| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | +| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | +| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | +| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | +| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | +| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | +| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | +| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | +| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | +| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | +| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | +| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | +| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | +| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | +| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | +| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | +| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | +| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | +| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | +| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | +| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | +| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | +| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | +| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | +| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | +| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | +| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | +| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | +| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | +| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | +| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | +| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | +| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | +| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | +| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | +| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | +| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | +| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | +| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | +| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | +| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | +| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | +| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | +| /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | +| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | +| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | +| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | +| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | +| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | +| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | +| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | +| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | +| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | +| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | +| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | +| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | +| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | +| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | +| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | +| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | +| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | +| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | +| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | +| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | +| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | +| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | +| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | +| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | +| /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | +| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | +| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | +| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | +| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | +| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | +| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | +| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | +| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | +| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | +| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | +| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | +| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | +| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | +| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | +| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | +| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | +| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | +| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | +| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | +| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | +| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | +| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | +| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | +| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | +| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | +| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | +| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | +| /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | +| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | +| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | +| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | +| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | +| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | +| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | +| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | +| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | +| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | +| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | +| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | +| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | +| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | +| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | +| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | +| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | +| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | +| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | +| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | +| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | +| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | +| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | +| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | +| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | +| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | +| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | +| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | +| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | +| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | +| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | +| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | +| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | +| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | +| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | +| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | +| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | +| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | +| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | +| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | +| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | +| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | +| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | +| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | +| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | +| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | +| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | +| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | +| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | +| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | +| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | +| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | +| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | +| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | +| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | +| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | +| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | +| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | +| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | +| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | +| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | +| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | +| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | +| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | +| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | +| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | +| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | +| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | +| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | +| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | +| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | +| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | +| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | +| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | +| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | +| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | +| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | +| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | +| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | +| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | +| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | +| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | +| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | +| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | +| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | +| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | +| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | +| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | +| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | +| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | +| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | +| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | +| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | +| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | +| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | +| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | +| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | +| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | +| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | +| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | +| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | +| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | +| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | +| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | +| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | +| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | +| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | +| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | +| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | +| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | +| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | +| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | +| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | +| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | +| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | +| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | +| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | +| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | +| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | +| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | +| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | +| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | +| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | +| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | +| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | +| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | +| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | +| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | +| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | +| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | +| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | +| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | +| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | +| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | +| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | +| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | +| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | +| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | +| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | +| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | +| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | +| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | +| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | +| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | +| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | +| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | +| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | +| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | +| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | +| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | +| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | +| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | +| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | +| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | +| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | +| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | +| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | +| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | +| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | +| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | +| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | +| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | +| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | +| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | +| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | +| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | +| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | +| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | +| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | +| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | +| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | +| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | +| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | +| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | +| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | +| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | +| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | +| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | +| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | +| /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | +| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | +| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | +| /docs/about | 20 | 20 | 0 | 0 | 0 | no | +| /docs/account | 30 | 30 | 0 | 0 | 0 | no | +| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | +| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | +| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | +| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | +| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | +| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | +| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/auth/login_form | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml_with_microsoft_adfs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | +| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | +| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | +| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | +| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/deploy/migrate-backup | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deployment_best_practices | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | +| /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_dind | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | +| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | +| /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/update_repo_failure | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/http_https_configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | +| /docs/admin/install/docker-compose | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/migrate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker/aws | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker/google_cloud | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/install/kubernetes/configure | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/operations | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | +| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | +| /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | +| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | +| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | +| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | +| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | +| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | +| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | +| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | +| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | +| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | +| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | +| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | +| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | +| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | +| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | +| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | +| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | +| /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | +| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | +| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | +| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | +| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | +| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | +| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | +| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | +| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | +| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | +| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | +| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | +| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | +| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | +| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | +| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | +| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | +| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | +| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | +| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | +| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | +| /docs/app | 0 | 0 | 10 | 0 | 0 | no | +| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | +| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | +| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | +| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | +| /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | +| /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | +| /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | +| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | +| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | +| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | +| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | +| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | +| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | +| /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | +| /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | +| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | +| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | +| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | +| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | +| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | +| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | +| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | +| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | +| /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | +| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | +| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | +| /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | +| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | +| /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | +| /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code_search/explanations/features | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | +| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | +| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | +| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | +| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | +| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | +| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | +| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | +| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | +| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | +| /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | +| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | +| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | +| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | +| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | +| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | +| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | +| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | +| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | +| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | +| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | +| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | +| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | +| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | +| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | +| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | +| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | +| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | +| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | +| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | +| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | +| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | +| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | +| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | +| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | +| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | +| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | +| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | +| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | +| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | +| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | +| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | +| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | +| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | +| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | +| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | +| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | +| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/run-psql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/admin/observability | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | +| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | +| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | +| /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | +| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | +| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | +| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | +| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | +| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | +| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | +| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | +| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | +| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | +| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | +| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | +| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to-videos | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | +| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | +| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | +| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | +| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | +| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | +| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | +| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | +| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | +| /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | +| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | +| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | +| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | +| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | +| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/login | 320 | 320 | 0 | 0 | 0 | no | +| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | +| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/nope | 10 | 10 | 0 | 0 | 0 | no | +| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | +| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | +| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | +| /docs/own | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | +| /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | +| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | +| /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | +| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | +| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | +| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | +| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | +| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | +| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | +| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | +| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | +| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | +| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | +| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | +| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | +| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | +| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | +| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | +| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | +| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | +| /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | +| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | +| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | +| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | +| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | +| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | +| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | +| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | +| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | +| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | +| /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | +| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | +| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | +| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | +| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | +| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | +| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user | 0 | 0 | 80 | 0 | 0 | no | +| /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | +| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | +| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.10/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.10/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.11/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/admin/auth | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/admin/config/batch_changes | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12/admin/permissions | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/batch_changes/quickstart | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.0/admin/observability/metrics | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/batch_changes/quickstart | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_insights/references/common_use_cases | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_monitoring/how-tos/starting_points | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.2/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.2/cody/clients/install-vscode | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/integration/browser_extension | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/explanations/server_side | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/quickstart | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/batch-changes/site-admin-configuration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/code_monitoring/how-tos/starting_points | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.4/code-search/types/search-jobs | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.4/code-search/working/search_contexts | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/cody | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/self-hosted/external-services/object-storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5 | 0 | 0 | 230 | 0 | 0 | no | +| /docs/v/7.5/admin/auth | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.5/admin/code_hosts/github | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.5/admin/repo/recording | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/admin/updates | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/cli | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/7.5/code_navigation/explanations/precise_code_navigation | 0 | 0 | 160 | 0 | 0 | no | +| /docs/v/7.5/code_search/reference/queries | 0 | 0 | 410 | 0 | 0 | no | +| /docs/v/7.5/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.5/integration/open_in_editor | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/self-hosted/external-services/object-storage | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.6 | 0 | 0 | 150 | 0 | 0 | no | +| /docs/v/7.6/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.6/code_insights/references/license | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.6/code_navigation/explanations/precise_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/v/7.6/code_search/how-to/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.6/code_search/reference/queries | 0 | 0 | 340 | 0 | 0 | no | +| /docs/v/7.6/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.6/code-search/working/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.7/api/graphql | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | +| /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | +| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | +| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | diff --git a/viewership-metrics/reports/page-views-by-path.md b/viewership-metrics/reports/page-views-by-path.md new file mode 100644 index 000000000..e86d00ce0 --- /dev/null +++ b/viewership-metrics/reports/page-views-by-path.md @@ -0,0 +1,3053 @@ +# Page views by path (last 90 days) + +- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Host: sourcegraph.com; paths: /docs, /changelog, /blog +- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN +- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). +- 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. +- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. + +| Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | +| --- | ---: | ---: | ---: | ---: | ---: | --- | +| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | +| /blog/_ | 0 | 0 | 0 | 90 | 0 | no | +| /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117135991499/5-surprisingly-painful-things-about-client-side-js | 0 | 0 | 0 | 30 | 0 | no | +| /blog/117137797304/google-io-2014-building-sourcegraph-a | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117580140734 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/117580140734/announcing-appdash-an-open-source-perf-tracing | 0 | 0 | 0 | 20 | 0 | no | +| /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | +| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | +| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | +| /blog/93793683802e220755a568.avi | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | +| /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | +| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | +| /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | +| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | +| /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | +| /blog/agent-skills | 0 | 0 | 0 | 30 | 0 | no | +| /blog/agentic-batch-changes-is-now-in-public-beta | 0 | 0 | 0 | 10 | 0 | no | +| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | +| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | +| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | +| /blog/ai-assisted-coding-with-cody-lessons-from-context-retrieval-and-evaluation-for-code-recommendations | 0 | 0 | 0 | 70 | 0 | no | +| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | +| /blog/ai-code-migration | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | +| /blog/ai-coding-costs | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | +| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | +| /blog/ai-native-codebases-2 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/alex-isken | 0 | 0 | 0 | 10 | 0 | no | +| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/amp | 0 | 0 | 0 | 70 | 0 | no | +| /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | +| /blog/amp-ai-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-general-availability | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | +| /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | +| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | +| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | +| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | +| /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | +| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | +| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | +| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | +| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | +| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | +| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | +| /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | +| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | +| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | +| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | +| /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | +| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | +| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | +| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | +| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | +| /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | +| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | +| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/bin/register/XWiki/XWikiRegister | 0 | 0 | 0 | 30 | 0 | no | +| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | +| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | +| /blog/browse-github-like-an-ide-with-the-sourcegraph-chrome-extension-9e279d2b98e9 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | +| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | +| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | +| /blog/building-a-testable-webapp | 0 | 0 | 0 | 60 | 0 | no | +| /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | +| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | +| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | +| /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | +| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | +| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | +| /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | +| /blog/changes-to-sourcegraph-open-source-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-our-license | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | +| /blog/chat-oriented-programming-in-action4 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | +| /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chrome-extension-tooltips-and-seamless | 0 | 0 | 0 | 20 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | +| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | +| /blog/claude-3.5-sonnet-now-available-in-cody | 0 | 0 | 0 | 70 | 0 | no | +| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | +| /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | +| /blog/co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-ai/how-cody-context-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | +| /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | +| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | +| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/code-scanning-tools | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | +| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | +| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | +| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-usage-examples-in-your-editor-as-you-type-f7fc89d894dd | 0 | 0 | 0 | 20 | 0 | no | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | +| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | +| /blog/cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | +| /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | +| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | +| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | +| /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | +| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | +| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | +| /blog/cody-is-now-free-for-all-developers | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | +| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | +| /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | +| /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | +| /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | +| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | +| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | +| /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | +| /blog/convoy-improved-their-developer-on-boarding-with-sourcegraph | 0 | 0 | 0 | 60 | 0 | no | +| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | +| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | +| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | +| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | +| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | +| /blog/deep-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | +| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | +| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | +| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/dev | 0 | 0 | 0 | 30 | 0 | no | +| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | +| /blog/developer-experience-tools | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | +| /blog/developer-productivity-with-ai-coding-assistants | 0 | 0 | 0 | 20 | 0 | no | +| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/devops-transformation-a-complete-guide-for-2026.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | +| /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | +| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | +| /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | +| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | +| /blog/dump.zip | 0 | 0 | 0 | 20 | 0 | no | +| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | +| /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | +| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | +| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | +| /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | +| /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | +| /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | +| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | +| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | +| /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | +| /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | +| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | +| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | +| /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | +| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | +| /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | +| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | +| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | +| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | +| /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | +| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | +| /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | +| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | +| /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | +| /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | +| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | +| /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go-at-the-darpa-cyber-grand-challenge-will-hawkins | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go-code-intelligence-on-sourcegraph-now-in-general-availability-ga-e2ebcddc7f45 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/admin../actuator/env | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/data-api/logfile | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/go-reliability-and-durability-at-dropbox-tammy-butow | 0 | 0 | 0 | 40 | 0 | no | +| /blog/go/gophercon-2018-adventures-in-cgo-performance | 0 | 0 | 0 | 90 | 0 | no | +| /blog/go/gophercon-2018-allocator-wrestling | 0 | 0 | 0 | 60 | 0 | no | +| /blog/go/gophercon-2018-asynchronous-networking-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-computer-vision-using-go-and-opencv-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-from-prototype-to-production-lessons-from-building-and | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-how-to-write-a-parser-in-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2018-implementing-a-network-protocol-in-go | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-rethinking-classical-concurrency-patterns | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-the-go-programmers-guide-to-secure-connections | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-the-importance-of-beginners | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-detecting-incompatible-api-changes | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | +| /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/idiomatic-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/lightning-talks-1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/management//httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/peter-bourgon-on-the-history-of-go-kit-and-whats-next | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/writing-network-clients-in-go-the-design-and-implementation-of-the-nats-client | 0 | 0 | 0 | 10 | 0 | no | +| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph-a-large-scale-code-search-cross-reference-engine-in-go-1f911b78a82e | 0 | 0 | 0 | 70 | 0 | no | +| /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | +| /blog/graph-based-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-massive-scale-graphql-as-the-glue-in-a-microservice-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | +| /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | +| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | +| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | +| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | +| /blog/heapdump.hprof | 0 | 0 | 0 | 10 | 0 | no | +| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | +| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | +| /blog/how-cody-searches-your-codebase | 0 | 0 | 0 | 80 | 0 | no | +| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | +| /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-nativeScript-onboards-new-open-source-contributors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | +| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/how-sourcegraph-approaches-on-premise-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | +| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | +| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | +| /blog/how-to-read-code-effectively-in-2020 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-literal-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-use-cody-in-large-codebases | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-to-write-good-coding-agent-instructions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | +| /blog/img | 0 | 0 | 0 | 60 | 0 | no | +| /blog/img/payments | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improving-code-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | +| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | +| /blog/index.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | +| /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | +| /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | +| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | +| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | +| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | +| /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | +| /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | +| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | +| /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | +| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | +| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | +| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | +| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | +| /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | +| /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | +| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | +| /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | +| /blog/keeping-it-boring-and-relevant-with-bm25f/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | +| /blog/lee-byron-kicks-things-off | 0 | 0 | 0 | 20 | 0 | no | +| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | +| /blog/lessons-from-ai-coding-assistants-context-retrieval-and-evaluation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | +| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | +| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | +| /blog/live/gophercon2015 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | +| /blog/live/gophercon2015/123586421955 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123645585015 | 0 | 0 | 0 | 70 | 0 | no | +| /blog/live/gophercon2015/123653512740 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123653512741 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123656134615 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123664481750 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123748269731 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111549976927 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111639383132 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111640712092 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111642525197 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644026097 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644528497 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111645038222 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | +| /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | +| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | +| /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | +| /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | +| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | +| /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | +| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | +| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | +| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | +| /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | +| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | +| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | +| /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | +| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | +| /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | +| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | +| /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | +| /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | +| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | +| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | +| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | +| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | +| /blog/null | 0 | 0 | 0 | 10 | 0 | no | +| /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | +| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | +| /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | +| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | +| /blog/openai-o1-for-cody/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | +| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | +| /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | +| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | +| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | +| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | +| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | +| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | +| /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | +| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | +| /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | +| /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | +| /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | +| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | +| /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | +| /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | +| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | +| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | +| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | +| /blog/release | 0 | 0 | 0 | 40 | 0 | no | +| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-anxiety | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | +| /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/release/3.29 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | +| /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | +| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | +| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss | 0 | 0 | 0 | 20 | 0 | no | +| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/scip | 0 | 0 | 0 | 90 | 0 | no | +| /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | +| /blog/search-based-vs-semantic-code-search | 0 | 0 | 0 | 40 | 0 | no | +| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | +| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | +| /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | +| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | +| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | +| /blog/series-d | 0 | 0 | 0 | 10 | 0 | no | +| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | +| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | +| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | +| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | +| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | +| /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | +| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | +| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sosf-1-kickoff | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.17 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.9 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-5-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | +| /blog/sourcegraph-5.3-changelog | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-7 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/sourcegraph-7-0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | +| /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | +| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/staff/mammals-coombe-bissett-down-fox | 0 | 0 | 0 | 10 | 0 | no | +| /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | +| /blog/steve-yegge | 0 | 0 | 0 | 10 | 0 | no | +| /blog/steve-yegge-joins-sourcegraph | 0 | 0 | 0 | 40 | 0 | no | +| /blog/strange-loop/strange-loop-2019-everything-you-wanted-to-know-about-distributed-tracing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-improving-law-interpretability-using-nlp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | +| /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | +| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | +| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | +| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | +| /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | +| /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-death-of-the-junior-develop | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | +| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | +| /blog/the-end-of-programming-as-we-know-it | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/the-evolution-of-code-intelligence-beyond-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-future-of-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-navigation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | +| /blog/the-future-of-go | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | +| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | +| /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-query | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-lifecycle-of-a-cody-request | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-new-era-of-go-package-management | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively/g'p9ro0ywy | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | +| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | +| /blog/the-sourcegraph-mcp-server | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-12-more-steps-to-better-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | +| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | +| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | +| /blog/throwingawesomemeetups | 0 | 0 | 0 | 10 | 0 | no | +| /blog/thunder-talks | 0 | 0 | 0 | 20 | 0 | no | +| /blog/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c | 0 | 0 | 0 | 80 | 0 | no | +| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/top-150-most-used-golang-functions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | +| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | +| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | +| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | +| /blog/understanding-channels-kavya-joshi | 0 | 0 | 0 | 20 | 0 | no | +| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | +| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | +| /blog/upgraded-claude-3.5-sonnet-available-in-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | +| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | +| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | +| /blog/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | +| /blog/ways-to-use-sourcegraph-extension-for-vs-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | +| /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | +| /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | +| /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | +| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | +| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | +| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-we-built-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | +| /blog/why-we-switched-to-zoekt-for-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | +| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | +| /blog/write-for-us | 0 | 0 | 0 | 10 | 0 | no | +| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | +| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | +| /blog/zoekt | 0 | 0 | 0 | 30 | 0 | no | +| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | +| /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | +| /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | +| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | +| /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | +| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | +| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-05.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/2026-05-14 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | +| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | +| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | +| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-06-22.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | +| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | +| /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | +| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-library-customizable.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | +| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | +| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | +| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/chat-full-width-vscode/logon/LogonPoint/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-4-models-available | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | +| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | +| /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | +| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | +| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | +| /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | +| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | +| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | +| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | +| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | +| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | +| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | +| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | +| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | +| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | +| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | +| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | +| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | +| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | +| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | +| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | +| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | +| /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | +| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | +| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | +| /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | +| /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | +| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | +| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | +| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | +| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | +| /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | +| /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.viminfo | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../config/initializers/secret_token.rb | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../configs/sourcegraph_1.yml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../data | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../dev_sourcegraph_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph_admin-2026-09-01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | +| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | +| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | +| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | +| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | +| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | +| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | +| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | +| /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | +| /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | +| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | +| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | +| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | +| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | +| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | +| /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | +| /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | +| /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/self-hosted/deployment.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | +| /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | +| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | +| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | +| /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logger/sourcegraphprod_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logs/admin_sourcegraph.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | +| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | +| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | +| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | +| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | +| /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/xscanlsimdfry/server | 0 | 0 | 0 | 80 | 0 | no | +| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | +| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | +| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | +| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | +| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | +| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | +| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | +| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | +| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | +| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | +| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | +| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | +| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | +| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | +| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | +| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | +| /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | +| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | +| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | +| /docs/about | 20 | 20 | 0 | 0 | 0 | no | +| /docs/account | 30 | 30 | 0 | 0 | 0 | no | +| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | +| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | +| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | +| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | +| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | +| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | +| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/auth/login_form | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml_with_microsoft_adfs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | +| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | +| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | +| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | +| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/deploy/migrate-backup | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deployment_best_practices | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | +| /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_dind | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | +| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | +| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | +| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | +| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | +| /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/update_repo_failure | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/http_https_configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | +| /docs/admin/install/docker-compose | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/migrate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker/aws | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker/google_cloud | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/install/kubernetes/configure | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/operations | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | +| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | +| /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | +| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | +| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | +| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | +| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | +| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | +| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | +| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | +| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | +| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | +| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | +| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | +| /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | +| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | +| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | +| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | +| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | +| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | +| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | +| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | +| /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | +| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | +| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | +| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | +| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | +| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | +| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | +| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | +| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | +| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | +| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | +| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | +| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | +| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | +| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | +| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | +| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | +| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | +| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | +| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | +| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | +| /docs/app | 0 | 0 | 10 | 0 | 0 | no | +| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | +| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | +| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | +| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | +| /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | +| /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | +| /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | +| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | +| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | +| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | +| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | +| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | +| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | +| /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | +| /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | +| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | +| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | +| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | +| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | +| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | +| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | +| /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | +| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | +| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | +| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | +| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | +| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | +| /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | +| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | +| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | +| /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | +| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | +| /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | +| /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code_search/explanations/features | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | +| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | +| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | +| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | +| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | +| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | +| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | +| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | +| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | +| /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | +| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | +| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | +| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | +| /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | +| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | +| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | +| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | +| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | +| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | +| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | +| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | +| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | +| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | +| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | +| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | +| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | +| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | +| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | +| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | +| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | +| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | +| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | +| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | +| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | +| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | +| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | +| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | +| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | +| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | +| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | +| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | +| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | +| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | +| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | +| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | +| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | +| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | +| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | +| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | +| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | +| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | +| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | +| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | +| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | +| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | +| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | +| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/run-psql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/admin/observability | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | +| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | +| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | +| /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | +| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | +| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | +| /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | +| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | +| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | +| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | +| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | +| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | +| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | +| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | +| /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | +| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to-videos | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | +| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | +| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | +| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | +| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | +| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | +| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | +| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | +| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | +| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | +| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | +| /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | +| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | +| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | +| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | +| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | +| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/login | 320 | 320 | 0 | 0 | 0 | no | +| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | +| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/nope | 10 | 10 | 0 | 0 | 0 | no | +| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | +| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | +| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | +| /docs/own | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | +| /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | +| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | +| /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | +| /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | +| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | +| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | +| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | +| /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | +| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | +| /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | +| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | +| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | +| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | +| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | +| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | +| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | +| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | +| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | +| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | +| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | +| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | +| /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | +| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | +| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | +| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | +| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | +| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | +| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | +| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | +| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | +| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | +| /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | +| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | +| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | +| /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | +| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | +| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | +| /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user | 0 | 0 | 80 | 0 | 0 | no | +| /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | +| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | +| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.10/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.10/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.11/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/admin/auth | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/admin/config/batch_changes | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12/admin/permissions | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/batch_changes/quickstart | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.0/admin/observability/metrics | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/batch_changes/quickstart | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_insights/references/common_use_cases | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_monitoring/how-tos/starting_points | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.2/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.2/cody/clients/install-vscode | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/integration/browser_extension | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/explanations/server_side | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/quickstart | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/batch-changes/site-admin-configuration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/code_monitoring/how-tos/starting_points | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.4/code-search/types/search-jobs | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.4/code-search/working/search_contexts | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/cody | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/self-hosted/external-services/object-storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5 | 0 | 0 | 230 | 0 | 0 | no | +| /docs/v/7.5/admin/auth | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.5/admin/code_hosts/github | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.5/admin/repo/recording | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/admin/updates | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/cli | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/7.5/code_navigation/explanations/precise_code_navigation | 0 | 0 | 160 | 0 | 0 | no | +| /docs/v/7.5/code_search/reference/queries | 0 | 0 | 410 | 0 | 0 | no | +| /docs/v/7.5/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.5/integration/open_in_editor | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/self-hosted/external-services/object-storage | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.6 | 0 | 0 | 150 | 0 | 0 | no | +| /docs/v/7.6/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.6/code_insights/references/license | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.6/code_navigation/explanations/precise_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/v/7.6/code_search/how-to/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.6/code_search/reference/queries | 0 | 0 | 340 | 0 | 0 | no | +| /docs/v/7.6/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.6/code-search/working/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.7/api/graphql | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | +| /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | +| /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | +| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | +| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | diff --git a/viewership-metrics/reports/page-views-by-redirects.md b/viewership-metrics/reports/page-views-by-redirects.md new file mode 100644 index 000000000..238ed8212 --- /dev/null +++ b/viewership-metrics/reports/page-views-by-redirects.md @@ -0,0 +1,3053 @@ +# Page views by redirect count (last 90 days) + +- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Host: sourcegraph.com; paths: /docs, /changelog, /blog +- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN +- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). +- 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. +- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. + +| Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | +| --- | ---: | ---: | ---: | ---: | ---: | --- | +| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | +| /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | +| /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | +| /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | +| /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | +| /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | +| /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | +| /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | +| /docs/v/7.5/code_search/reference/queries | 0 | 0 | 410 | 0 | 0 | no | +| /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | +| /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | +| /docs/v/7.6/code_search/reference/queries | 0 | 0 | 340 | 0 | 0 | no | +| /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | +| /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | +| /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | +| /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/install/kubernetes | 0 | 0 | 290 | 0 | 0 | no | +| /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | +| /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | +| /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | +| /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | +| /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.5/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/v/7.6/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | +| /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | +| /docs/v/7.5 | 0 | 0 | 230 | 0 | 0 | no | +| /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | +| /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | +| /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | +| /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | +| /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | +| /docs/v/7.5/code_navigation/explanations/precise_code_navigation | 0 | 0 | 160 | 0 | 0 | no | +| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | +| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | +| /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | +| /docs/v/7.6 | 0 | 0 | 150 | 0 | 0 | no | +| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | +| /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | +| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | +| /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | +| /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | +| /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | +| /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | +| /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | +| /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.2/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /docs/v/7.4/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | +| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | +| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | +| /docs/v/7.6/code_navigation/explanations/precise_code_navigation | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | +| /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | +| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | +| /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | +| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | +| /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | +| /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | +| /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | +| /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | +| /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | +| /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | +| /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | +| /docs/user | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | +| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | +| /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | +| /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | +| /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | +| /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | +| /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/7.5/cli | 0 | 0 | 70 | 0 | 0 | no | +| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | +| /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | +| /docs/admin/install/kubernetes/operations | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | +| /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | +| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | +| /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | +| /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own | 0 | 0 | 60 | 0 | 0 | no | +| /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | +| /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/7.6/code_insights/references/license | 0 | 0 | 60 | 0 | 0 | no | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | +| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | +| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | +| /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | +| /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.4/code-search/types/search-jobs | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | +| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | +| /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/deploy/migrate-backup | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/deployment_best_practices | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker-compose | 0 | 0 | 40 | 0 | 0 | no | +| /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | +| /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | +| /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | +| /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/admin/permissions | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/6.12/batch_changes/quickstart | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/batch-changes/site-admin-configuration | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.4/code-search/working/search_contexts | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.5/admin/auth | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.5/self-hosted/external-services/object-storage | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.7/api/graphql | 0 | 0 | 40 | 0 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | +| /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | +| /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | +| /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | +| /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | +| /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | +| /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/observability | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos | 0 | 0 | 30 | 0 | 0 | no | +| /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | +| /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | +| /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | +| /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/quickstart | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/code_monitoring/how-tos/starting_points | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.4/cody | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/admin/code_hosts/github | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.5/admin/updates | 0 | 0 | 30 | 0 | 0 | no | +| /docs/v/7.7/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | +| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | +| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | +| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | +| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | +| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | +| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | +| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | +| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | +| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | +| /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | +| /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/login_form | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/auth/saml_with_microsoft_adfs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/update_repo_failure | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/http_https_configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/docker-compose/migrate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | +| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | +| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | +| /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | +| /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | +| /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | +| /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | +| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | +| /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | +| /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | +| /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | +| /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | +| /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | +| /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | +| /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | +| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | +| /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | +| /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | +| /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.10/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.10/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.11/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.12/admin/config/batch_changes | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/admin/observability/metrics | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code_monitoring/how-tos/starting_points | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4/self-hosted/external-services/object-storage | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/admin/repo/recording | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.5/integration/open_in_editor | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.6/code_search/how-to/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.6/code-search/working/search_contexts | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | +| /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | +| /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | +| /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | +| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | +| /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | +| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | +| /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | +| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | +| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | +| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | +| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | +| /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | +| /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | +| /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | +| /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_dind | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/deploy_executors_kubernetes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/docker/aws | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/docker/google_cloud | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/configure | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | +| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | +| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | +| /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/app | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | +| /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | +| /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_search/explanations/features | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | +| /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | +| /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/admin/how-to/run-psql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | +| /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | +| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | +| /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | +| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | +| /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | +| /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.10/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/admin/auth | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/api | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/batch_changes/quickstart | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_insights/references/common_use_cases | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/cody/clients/install-vscode | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.2/integration/browser_extension | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/batch_changes/explanations/server_side | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.5/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.6/admin/permissions/syncing | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | +| /blog/_ | 0 | 0 | 0 | 90 | 0 | no | +| /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117135991499/5-surprisingly-painful-things-about-client-side-js | 0 | 0 | 0 | 30 | 0 | no | +| /blog/117137797304/google-io-2014-building-sourcegraph-a | 0 | 0 | 0 | 20 | 0 | no | +| /blog/117580140734 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/117580140734/announcing-appdash-an-open-source-perf-tracing | 0 | 0 | 0 | 20 | 0 | no | +| /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | +| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | +| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | +| /blog/93793683802e220755a568.avi | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | +| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | +| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | +| /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | +| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | +| /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | +| /blog/agent-skills | 0 | 0 | 0 | 30 | 0 | no | +| /blog/agentic-batch-changes-is-now-in-public-beta | 0 | 0 | 0 | 10 | 0 | no | +| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | +| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | +| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | +| /blog/ai-assisted-coding-with-cody-lessons-from-context-retrieval-and-evaluation-for-code-recommendations | 0 | 0 | 0 | 70 | 0 | no | +| /blog/ai-code-migration | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | +| /blog/ai-coding-costs | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | +| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | +| /blog/ai-native-codebases-2 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/alex-isken | 0 | 0 | 0 | 10 | 0 | no | +| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/amp | 0 | 0 | 0 | 70 | 0 | no | +| /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | +| /blog/amp-ai-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-general-availability | 0 | 0 | 0 | 10 | 0 | no | +| /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | +| /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | +| /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | +| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | +| /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | +| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | +| /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | +| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | +| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | +| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | +| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | +| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | +| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | +| /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | +| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | +| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | +| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | +| /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | +| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | +| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | +| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | +| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | +| /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | +| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | +| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/bin/register/XWiki/XWikiRegister | 0 | 0 | 0 | 30 | 0 | no | +| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | +| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | +| /blog/browse-github-like-an-ide-with-the-sourcegraph-chrome-extension-9e279d2b98e9 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | +| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | +| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | +| /blog/building-a-testable-webapp | 0 | 0 | 0 | 60 | 0 | no | +| /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | +| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | +| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | +| /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | +| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | +| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | +| /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | +| /blog/changes-to-sourcegraph-open-source-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-our-license | 0 | 0 | 0 | 20 | 0 | no | +| /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | +| /blog/chat-oriented-programming-in-action4 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | +| /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/chrome-extension-tooltips-and-seamless | 0 | 0 | 0 | 20 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | +| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | +| /blog/claude-3.5-sonnet-now-available-in-cody | 0 | 0 | 0 | 70 | 0 | no | +| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | +| /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | +| /blog/co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-ai/how-cody-context-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | +| /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | +| /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | +| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | +| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | +| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/code-scanning-tools | 0 | 0 | 0 | 20 | 0 | no | +| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | +| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | +| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | +| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-usage-examples-in-your-editor-as-you-type-f7fc89d894dd | 0 | 0 | 0 | 20 | 0 | no | +| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | +| /blog/cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | +| /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | +| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | +| /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | +| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | +| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | +| /blog/cody-is-now-free-for-all-developers | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | +| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | +| /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | +| /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | +| /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | +| /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | +| /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | +| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | +| /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | +| /blog/convoy-improved-their-developer-on-boarding-with-sourcegraph | 0 | 0 | 0 | 60 | 0 | no | +| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | +| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | +| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity | 0 | 0 | 0 | 30 | 0 | no | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | +| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | +| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | +| /blog/deep-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | +| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | +| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | +| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/dev | 0 | 0 | 0 | 30 | 0 | no | +| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | +| /blog/developer-experience-tools | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | +| /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | +| /blog/developer-productivity-with-ai-coding-assistants | 0 | 0 | 0 | 20 | 0 | no | +| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | +| /blog/devops-transformation-a-complete-guide-for-2026.md | 0 | 0 | 0 | 30 | 0 | no | +| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | +| /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | +| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | +| /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | +| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | +| /blog/dump.zip | 0 | 0 | 0 | 20 | 0 | no | +| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | +| /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | +| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | +| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | +| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | +| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | +| /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | +| /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | +| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | +| /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | +| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | +| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | +| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | +| /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | +| /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | +| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | +| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | +| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | +| /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | +| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | +| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | +| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | +| /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | +| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | +| /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | +| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | +| /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | +| /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | +| /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | +| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | +| /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go-at-the-darpa-cyber-grand-challenge-will-hawkins | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go-code-intelligence-on-sourcegraph-now-in-general-availability-ga-e2ebcddc7f45 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/admin../actuator/env | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/data-api/logfile | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/go-reliability-and-durability-at-dropbox-tammy-butow | 0 | 0 | 0 | 40 | 0 | no | +| /blog/go/gophercon-2018-adventures-in-cgo-performance | 0 | 0 | 0 | 90 | 0 | no | +| /blog/go/gophercon-2018-allocator-wrestling | 0 | 0 | 0 | 60 | 0 | no | +| /blog/go/gophercon-2018-asynchronous-networking-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-computer-vision-using-go-and-opencv-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-from-prototype-to-production-lessons-from-building-and | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-how-to-write-a-parser-in-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2018-implementing-a-network-protocol-in-go | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-rethinking-classical-concurrency-patterns | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/gophercon-2018-the-go-programmers-guide-to-secure-connections | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2018-the-importance-of-beginners | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-detecting-incompatible-api-changes | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | +| /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/idiomatic-go | 0 | 0 | 0 | 30 | 0 | no | +| /blog/go/lightning-talks-1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/management//httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/peter-bourgon-on-the-history-of-go-kit-and-whats-next | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | +| /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | +| /blog/go/writing-network-clients-in-go-the-design-and-implementation-of-the-nats-client | 0 | 0 | 0 | 10 | 0 | no | +| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | +| /blog/google-i-o-talk-building-sourcegraph-a-large-scale-code-search-cross-reference-engine-in-go-1f911b78a82e | 0 | 0 | 0 | 70 | 0 | no | +| /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | +| /blog/graph-based-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-massive-scale-graphql-as-the-glue-in-a-microservice-architecture | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | +| /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | +| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | +| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | +| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | +| /blog/heapdump.hprof | 0 | 0 | 0 | 10 | 0 | no | +| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | +| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | +| /blog/how-cody-searches-your-codebase | 0 | 0 | 0 | 80 | 0 | no | +| /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-nativeScript-onboards-new-open-source-contributors | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | +| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | +| /blog/how-sourcegraph-approaches-on-premise-ai | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | +| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | +| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | +| /blog/how-to-read-code-effectively-in-2020 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | +| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-literal-patterns | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | +| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-use-cody-in-large-codebases | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | +| /blog/how-to-write-good-coding-agent-instructions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | +| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | +| /blog/img | 0 | 0 | 0 | 60 | 0 | no | +| /blog/img/payments | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | +| /blog/improving-code-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | +| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | +| /blog/index.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | +| /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | +| /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | +| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | +| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | +| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | +| /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | +| /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | +| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | +| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | +| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | +| /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | +| /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | +| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | +| /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | +| /blog/keeping-it-boring-and-relevant-with-bm25f/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | +| /blog/lee-byron-kicks-things-off | 0 | 0 | 0 | 20 | 0 | no | +| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | +| /blog/lessons-from-ai-coding-assistants-context-retrieval-and-evaluation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | +| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | +| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | +| /blog/live/gophercon2015 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | +| /blog/live/gophercon2015/123586421955 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123645585015 | 0 | 0 | 0 | 70 | 0 | no | +| /blog/live/gophercon2015/123653512740 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gophercon2015/123653512741 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123656134615 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123664481750 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gophercon2015/123748269731 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111549976927 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111639383132 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111640712092 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111642525197 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644026097 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111644528497 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111645038222 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | +| /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | +| /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | +| /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | +| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | +| /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | +| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | +| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | +| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | +| /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | +| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | +| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | +| /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | +| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | +| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | +| /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | +| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | +| /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | +| /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | +| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | +| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | +| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | +| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | +| /blog/null | 0 | 0 | 0 | 10 | 0 | no | +| /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | +| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | +| /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | +| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | +| /blog/openai-o1-for-cody/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | +| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | +| /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | +| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | +| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | +| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | +| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | +| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | +| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | +| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | +| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | +| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | +| /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | +| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | +| /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | +| /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | +| /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | +| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | +| /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | +| /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | +| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | +| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | +| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | +| /blog/release | 0 | 0 | 0 | 40 | 0 | no | +| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-anxiety | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | +| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | +| /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/release/3.29 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | +| /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | +| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | +| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss | 0 | 0 | 0 | 20 | 0 | no | +| /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/scip | 0 | 0 | 0 | 90 | 0 | no | +| /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | +| /blog/search-based-vs-semantic-code-search | 0 | 0 | 0 | 40 | 0 | no | +| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | +| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | +| /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | +| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | +| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | +| /blog/series-d | 0 | 0 | 0 | 10 | 0 | no | +| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | +| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | +| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | +| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | +| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | +| /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | +| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | +| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sosf-1-kickoff | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | +| /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | +| /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.17 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.9 | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-5-3 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | +| /blog/sourcegraph-5.3-changelog | 0 | 0 | 0 | 60 | 0 | no | +| /blog/sourcegraph-7 | 0 | 0 | 0 | 40 | 0 | no | +| /blog/sourcegraph-7-0 | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | +| /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | +| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | +| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | +| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | +| /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/staff/mammals-coombe-bissett-down-fox | 0 | 0 | 0 | 10 | 0 | no | +| /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | +| /blog/steve-yegge | 0 | 0 | 0 | 10 | 0 | no | +| /blog/steve-yegge-joins-sourcegraph | 0 | 0 | 0 | 40 | 0 | no | +| /blog/strange-loop/strange-loop-2019-everything-you-wanted-to-know-about-distributed-tracing | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-improving-law-interpretability-using-nlp | 0 | 0 | 0 | 20 | 0 | no | +| /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | +| /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | +| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | +| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | +| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | +| /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | +| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | +| /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-death-of-the-junior-develop | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | +| /blog/the-end-of-programming-as-we-know-it | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/the-evolution-of-code-intelligence-beyond-search.md | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-future-of-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-navigation | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | +| /blog/the-future-of-go | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | +| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | +| /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | +| /blog/the-lifecycle-of-a-code-ai-query | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-lifecycle-of-a-cody-request | 0 | 0 | 0 | 40 | 0 | no | +| /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | +| /blog/the-new-era-of-go-package-management | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively/g'p9ro0ywy | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | +| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | +| /blog/the-sourcegraph-mcp-server | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-12-more-steps-to-better-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | +| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | +| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | +| /blog/throwingawesomemeetups | 0 | 0 | 0 | 10 | 0 | no | +| /blog/thunder-talks | 0 | 0 | 0 | 20 | 0 | no | +| /blog/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c | 0 | 0 | 0 | 80 | 0 | no | +| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/top-150-most-used-golang-functions | 0 | 0 | 0 | 10 | 0 | no | +| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | +| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | +| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | +| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | +| /blog/understanding-channels-kavya-joshi | 0 | 0 | 0 | 20 | 0 | no | +| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | +| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | +| /blog/upgraded-claude-3.5-sonnet-available-in-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | +| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | +| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | +| /blog/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | +| /blog/ways-to-use-sourcegraph-extension-for-vs-code | 0 | 0 | 0 | 10 | 0 | no | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | +| /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | +| /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | +| /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | +| /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | +| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | +| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | +| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | +| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | +| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-we-built-cody | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | +| /blog/why-we-switched-to-zoekt-for-search | 0 | 0 | 0 | 20 | 0 | no | +| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | +| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | +| /blog/write-for-us | 0 | 0 | 0 | 10 | 0 | no | +| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | +| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | +| /blog/zoekt | 0 | 0 | 0 | 30 | 0 | no | +| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | +| /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | +| /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | +| /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-05-05.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/2026-05-14 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | +| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | +| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | +| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-06-22.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | +| /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | +| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | +| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/batch-spec-library-customizable.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | +| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | +| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | +| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/chat-full-width-vscode/logon/LogonPoint/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-4-models-available | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | +| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | +| /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | +| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | +| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | +| /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | +| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | +| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | +| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | +| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | +| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | +| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | +| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | +| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | +| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | +| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | +| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | +| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | +| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | +| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | +| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | +| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | +| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | +| /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | +| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | +| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | +| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | +| /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | +| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | +| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | +| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | +| /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | +| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | +| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | +| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | +| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | +| /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../.viminfo | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../config/initializers/secret_token.rb | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../configs/sourcegraph_1.yml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/metrics../data | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../dev_sourcegraph_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph_admin-2026-09-01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | +| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | +| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | +| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | +| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | +| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | +| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | +| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | +| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | +| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | +| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | +| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | +| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | +| /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | +| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | +| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | +| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | +| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | +| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | +| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | +| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | +| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | +| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | +| /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | +| /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/self-hosted/deployment.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | +| /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | +| /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | +| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | +| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | +| /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logger/sourcegraphprod_20260901.log | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../logs/admin_sourcegraph.txt | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | +| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | +| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | +| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | +| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | +| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | +| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | +| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | +| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | +| /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | +| /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | +| /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/xscanlsimdfry/server | 0 | 0 | 0 | 80 | 0 | no | +| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | +| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | +| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | +| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | +| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | +| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | +| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | +| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | +| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | +| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | +| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | +| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | +| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | +| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | +| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | +| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | +| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | +| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | +| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | +| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | +| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | +| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | +| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | +| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | +| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | +| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | +| /docs/about | 20 | 20 | 0 | 0 | 0 | no | +| /docs/account | 30 | 30 | 0 | 0 | 0 | no | +| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | +| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | +| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | +| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | +| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | +| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | +| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | +| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | +| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | +| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | +| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | +| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | +| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | +| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | +| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | +| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | +| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | +| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | +| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | +| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | +| /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | +| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | +| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | +| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | +| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | +| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | +| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | +| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | +| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | +| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | +| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | +| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | +| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | +| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | +| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | +| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | +| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | +| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | +| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | +| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | +| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | +| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | +| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | +| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | +| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | +| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | +| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | +| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | +| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | +| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | +| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | +| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | +| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | +| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | +| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | +| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | +| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | +| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | +| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | +| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | +| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | +| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | +| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | +| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | +| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | +| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | +| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | +| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | +| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | +| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | +| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | +| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | +| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | +| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | +| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | +| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | +| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | +| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | +| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | +| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | +| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | +| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | +| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | +| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | +| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | +| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | +| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | +| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | +| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | +| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | +| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | +| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | +| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | +| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | +| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | +| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | +| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | +| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | +| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | +| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | +| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | +| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | +| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | +| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | +| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | +| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | +| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | +| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | +| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | +| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | +| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | +| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | +| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | +| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | +| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | +| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | +| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | +| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | +| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | +| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | +| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | +| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | +| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | +| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | +| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | +| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | +| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | +| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | +| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | +| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | +| /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | +| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | +| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | +| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | +| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | +| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | +| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | +| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | +| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | +| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | +| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | +| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | +| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | +| /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | +| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | +| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | +| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | +| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | +| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | +| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | +| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | +| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | +| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | +| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | +| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | +| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | +| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | +| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | +| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | +| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | +| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | +| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | +| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | +| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | +| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | +| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | +| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | +| /docs/login | 320 | 320 | 0 | 0 | 0 | no | +| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | +| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | +| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | +| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | +| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | +| /docs/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/nope | 10 | 10 | 0 | 0 | 0 | no | +| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | +| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | +| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | +| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | +| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | +| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | +| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | +| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | +| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | +| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | +| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | +| /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | +| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | +| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | +| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | +| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | +| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | +| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | +| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | +| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | +| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | +| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | +| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | +| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | +| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | +| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | +| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | +| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | +| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | +| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | +| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | +| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | +| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | +| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | +| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | +| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | +| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | +| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | +| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | +| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | +| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | +| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | +| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | +| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | +| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | +| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | +| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | +| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | +| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | +| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | +| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | +| /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | +| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | +| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | +| /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | +| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | +| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | +| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | +| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | +| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | +| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | +| /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | +| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | +| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | diff --git a/viewership-metrics/reports/redirect-rules.md b/viewership-metrics/reports/redirect-rules.md new file mode 100644 index 000000000..f122f57a4 --- /dev/null +++ b/viewership-metrics/reports/redirect-rules.md @@ -0,0 +1,1337 @@ +# Redirect rules by hits (last 90 days) + +- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Host: sourcegraph.com; paths: /docs, /changelog, /blog +- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN +- Rules: 1324 in src/data/redirects.ts; 962 live, 362 shadowed by an earlier rule with the same source (never match), 689 live with zero hits +- Hits: 35740 redirects matched a rule, of 41820 redirects on /docs paths (the rest are version and other redirects) +- Hits count 3xx responses on /docs with the same filters as the page views reports; adaptive-sampled estimates. +- Chains: 269 live rules redirect to another rule's source, so the browser follows more redirects (longest chain: 5 more). Chain shows the extra hops and where the user ends up. +- Sitemap: whether the rule's destination is in https://sourcegraph.com/sitemap.xml (blank when it leaves the site). 512 live rules point at an unlisted page, 12100 hits; unless Chain shows a further redirect, on /docs that is likely a soft 404. + +| Line | Source | Destination | Hits | Chain | Sitemap | +| ---: | --- | --- | ---: | --- | --- | +| 4745 | /code-search/code-navigation/precise_code_navigation | /code-navigation/precise_code_navigation | 2060 | 1 more β†’ /code-navigation/precise-code-navigation | no | +| 5585 | /code-navigation/precise_code_navigation | /code-navigation/precise-code-navigation | 1980 | | yes | +| 2193 | /code_navigation/explanations/precise_code_navigation | /code-search/code-navigation/precise_code_navigation | 1470 | 2 more β†’ /code-navigation/precise-code-navigation | no | +| 1952 | /code_search/reference/language | /code-search/queries/language | 1200 | | yes | +| 1942 | /code_search/reference/queries | /code-search/queries | 1120 | | yes | +| 4485 | /pricing | https://sourcegraph.com/pricing | 850 | | yes | +| 4873 | /admin/deploy/kubernetes | /self-hosted/deploy/kubernetes | 710 | | yes | +| 4769 | /code-search/code-navigation/writing_an_indexer | /code-navigation/writing_an_indexer | 630 | 1 more β†’ /code-navigation/writing-an-indexer | no | +| 5597 | /code-navigation/writing_an_indexer | /code-navigation/writing-an-indexer | 620 | | yes | +| 1290 | /code_intelligence | /code_navigation | 590 | 2 more β†’ /code-navigation | no | +| 1958 | /code_navigation | /code-search/code-navigation | 590 | 1 more β†’ /code-navigation | no | +| 4737 | /code-search/code-navigation | /code-navigation | 570 | | yes | +| 4473 | /cody/capabilities/commands | /cody/capabilities/prompts | 500 | | yes | +| 4519 | /pricing/plans | https://sourcegraph.com/pricing | 500 | | yes | +| 4682 | /code-search/code-navigation/auto_indexing | /code-navigation/auto_indexing | 490 | 1 more β†’ /code-navigation/auto-indexing | no | +| 5637 | /integration/browser_extension | /integration/browser-extension | 460 | | yes | +| 2430 | /code_navigation/references/indexers | /code-search/code-navigation/writing_an_indexer#sourcegraph-recommended-indexers | 450 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2496 | /batch_changes | /batch-changes | 440 | | yes | +| 5313 | /admin/code_hosts/github | /admin/code-hosts/github | 440 | | yes | +| 5824 | /admin/config | /admin | 440 | | yes | +| 4609 | /code-search/types/deep-search | /deep-search | 410 | | yes | +| 1869 | /code_search | /code-search | 400 | | yes | +| 5542 | /code-navigation/auto_indexing | /code-navigation/auto-indexing | 400 | | yes | +| 5828 | /admin/repo/permissions | /admin/permissions | 370 | | yes | +| 714 | /admin/analytics | /analytics | 360 | | yes | +| 1128 | /code_intelligence/explanations/precise_code_intelligence | /code_navigation/explanations/precise_code_navigation | 330 | 3 more β†’ /code-navigation/precise-code-navigation | no | +| 1376 | /cody/overview | /cody/ | 330 | | yes | +| 5200 | /admin/updates | /self-hosted/updates | 330 | | yes | +| 4853 | /admin/deploy | /self-hosted/deploy | 320 | | yes | +| 5150 | /admin/observability/troubleshooting | /self-hosted/observability/troubleshooting | 310 | | yes | +| 999 | /admin/install/kubernetes | /admin/deploy/kubernetes | 290 | 1 more β†’ /self-hosted/deploy/kubernetes | no | +| 1115 | /code_intelligence/explanations/auto_indexing | /code_navigation/explanations/auto_indexing | 290 | 3 more β†’ /code-navigation/auto-indexing | no | +| 4821 | /admin/deploy/docker-compose | /self-hosted/deploy/docker-compose | 290 | | yes | +| 4849 | /admin/deploy/docker-single-container | /self-hosted/deploy | 280 | | yes | +| 1107 | /code_intelligence/explanations/writing_an_indexer | /code_navigation/explanations/writing_an_indexer | 260 | 3 more β†’ /code-navigation/writing-an-indexer | no | +| 1071 | /admin/install/docker | /self-hosted/deploy | 250 | | yes | +| 1862 | /cody/custom-commands | /cody/capabilities/commands#custom-commands | 250 | 1 more β†’ /cody/capabilities/prompts | no | +| 2360 | /code_navigation/explanations/auto_indexing | /code-search/code-navigation/auto_indexing | 250 | 2 more β†’ /code-navigation/auto-indexing | no | +| 4719 | /code-search/code-navigation/how-to/index_a_go_repository | /code-navigation/how-to/index_a_go_repository | 240 | 1 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 5305 | /admin/code_hosts/bitbucket_server | /admin/code-hosts/bitbucket-server | 240 | | yes | +| 5758 | /self-hosted/how-to/dirty_database | /self-hosted/how-to/dirty-database | 230 | | yes | +| 2531 | /batch_changes/explanations/how_src_executes_a_batch_spec | /batch-changes/how-src-executes-a-batch-spec | 220 | | yes | +| 4552 | /cody/capabilities/agentic-chat | /cody/capabilities/agentic-context-fetching | 220 | | yes | +| 4658 | /admin/access_control/service_accounts | /admin/service_accounts | 200 | 1 more β†’ /admin/service-accounts | no | +| 4723 | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | /code-navigation/how-to/index_a_typescript_and_javascript_repository | 200 | 1 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 4865 | /admin/deploy/kubernetes/configure | /self-hosted/deploy/kubernetes/configure | 200 | | yes | +| 4937 | /admin/deploy/resource_estimator | /self-hosted/deploy/resource_estimator | 200 | 1 more β†’ /self-hosted/deploy/resource-estimator | no | +| 5409 | /cli/how-tos/creating_an_access_token | /cli/how-tos/creating-an-access-token | 200 | | yes | +| 2657 | /batch_changes/references/batch_spec_yaml_reference | /batch-changes/batch-spec-yaml-reference | 180 | | yes | +| 4702 | /code-search/code-navigation/features | /code-navigation/features | 180 | | yes | +| 5609 | /code-search/working/search_contexts | /code-search/working/search-contexts | 180 | | yes | +| 5122 | /admin/observability/dashboards | /self-hosted/observability/dashboards | 170 | | yes | +| 5353 | /admin/config/site_config | /admin/config/site-config | 170 | | yes | +| 5405 | /api/stream_api | /api/stream-api | 170 | | yes | +| 979 | /admin/install | /admin/deploy | 160 | 1 more β†’ /self-hosted/deploy | no | +| 5037 | /admin/how-to/dirty_database | /self-hosted/how-to/dirty_database | 160 | 1 more β†’ /self-hosted/how-to/dirty-database | no | +| 2011 | /code_navigation/how-to/index_a_typescript_and_javascript_repository | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 150 | 2 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 5538 | /code_monitoring | /code-monitoring | 150 | | yes | +| 5873 | /own/codeowners-format | /code-ownership/codeowners-format | 150 | | yes | +| 2324 | /code_navigation/explanations/writing_an_indexer | /code-search/code-navigation/writing_an_indexer#writing-an-indexer | 140 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 838 | /campaigns/references/campaign_spec_yaml_reference | /batch_changes/references/batch_spec_yaml_reference | 130 | 1 more β†’ /batch-changes/batch-spec-yaml-reference | no | +| 5154 | /admin/config/postgres-conf | /self-hosted/postgres-conf | 130 | | yes | +| 5522 | /code_insights/references/common_use_cases | /code-insights/references/common-use-cases | 130 | | yes | +| 5877 | /api/graphql/examples | /api/graphql | 130 | | yes | +| 931 | /campaigns | /batch_changes | 120 | 1 more β†’ /batch-changes | no | +| 1195 | /code_intelligence/how-to/index_a_cpp_repository | https://sourcegraph.com/github.com/sourcegraph/scip-clang/-/blob/README.md#usage | 120 | | no | +| 2850 | /batch_changes/references/faq | /batch-changes/faq | 120 | | yes | +| 4467 | /cody/clients/model-configuration | /cody/enterprise/model-configuration | 120 | | yes | +| 4662 | /cody/core-concepts/cody-gateway | /model-provider | 120 | | yes | +| 5146 | /admin/observability/tracing | /self-hosted/observability/tracing | 120 | | yes | +| 5162 | /admin/postgres12_end_of_life_notice | /self-hosted/postgres12_end_of_life_notice | 120 | 1 more β†’ /self-hosted/postgres12-end-of-life-notice | no | +| 5484 | /code_insights/explanations/data_retention | /code-insights/explanations/data-retention | 120 | | yes | +| 5686 | /self-hosted/deploy/resource_estimator | /self-hosted/deploy/resource-estimator | 120 | | yes | +| 4825 | /admin/deploy/docker-compose/migrate | /self-hosted/deploy/docker-compose/migrate | 110 | | yes | +| 5130 | /admin/observability | /self-hosted/observability | 110 | | yes | +| 5369 | /admin/how-to/lsif_scip_migration | /admin/how-to/lsif-scip-migration | 110 | | yes | +| 5567 | /code-navigation/how-to/index_a_typescript_and_javascript_repository | /code-navigation/how-to/index-a-typescript-and-javascript-repository | 110 | | yes | +| 5589 | /code-navigation/search_based_code_navigation | /code-navigation/search-based-code-navigation | 110 | | yes | +| 5869 | /own/codeowners-ingestion | /code-ownership | 110 | | yes | +| 1388 | /cody/overview/install-neovim | /cody/clients/install-neovim | 100 | | yes | +| 4813 | /admin/deploy/docker-compose/digitalocean | /self-hosted/deploy/docker-compose/digitalocean | 100 | | yes | +| 4897 | /admin/deploy/kubernetes/operations | /self-hosted/deploy/kubernetes/operations | 100 | | yes | +| 5142 | /admin/observability/opentelemetry | /self-hosted/observability/opentelemetry | 100 | | yes | +| 5397 | /admin/user_data_deletion | /admin/user-data-deletion | 100 | | yes | +| 5546 | /code-navigation/auto_indexing_configuration | /code-navigation/auto-indexing-configuration | 100 | | yes | +| 5563 | /code-navigation/how-to/index_a_go_repository | /code-navigation/how-to/index-a-go-repository | 100 | | yes | +| 5674 | /self-hosted/advanced_config_file | /self-hosted/advanced-config-file | 100 | | yes | +| 5706 | /self-hosted/executors/deploy_executors_binary | /self-hosted/executors/deploy-executors-binary | 100 | | yes | +| 738 | /user/code_intelligence | /code_intelligence | 90 | 3 more β†’ /code-navigation | no | +| 2563 | /batch_changes/how-tos/creating_a_batch_change | /batch-changes/create-a-batch-change | 90 | | yes | +| 4558 | /cody/core-concepts/embeddings | /cody/ | 90 | | yes | +| 4616 | /cody/usage-and-pricing | https://sourcegraph.com/pricing | 90 | | yes | +| 5216 | /admin/updates/migrator/migrator-operations | /self-hosted/updates/migrator/migrator-operations | 90 | | yes | +| 5285 | /admin/beta_and_experimental_features | /beta-and-experimental | 90 | | yes | +| 5393 | /admin/service_accounts | /admin/service-accounts | 90 | | yes | +| 5633 | /integration/bitbucket_server | /integration/bitbucket-server | 90 | | yes | +| 742 | /user | /getting-started | 80 | | yes | +| 1200 | /code_intelligence/how-to/index_a_go_repository | /code_navigation/how-to/index_a_go_repository | 80 | 3 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 2607 | /batch_changes/how-tos/configuring_credentials | /batch-changes/configuring-credentials | 80 | | yes | +| 4973 | /admin/executors/deploy_executors_binary | /self-hosted/executors/deploy_executors_binary | 80 | 1 more β†’ /self-hosted/executors/deploy-executors-binary | no | +| 5094 | /admin/how-to/upgrade-postgres-12-16-builtin-dbs | /self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 80 | | yes | +| 5204 | /admin/updates/kubernetes | https://sourcegraph.com/changelog/self-hosted/kubernetes | 80 | | yes | +| 5385 | /admin/repo/update_frequency | /admin/repo/update-frequency | 80 | | yes | +| 5453 | /code_insights | /code-insights | 80 | | yes | +| 5662 | /own/codeowners_format | /own/codeowners-format | 80 | 1 more β†’ /code-ownership/codeowners-format | no | +| 5742 | /self-hosted/external_services/object_storage | /self-hosted/external-services/object-storage | 80 | | yes | +| 2539 | /batch_changes/explanations/server_side | /batch-changes/server-side | 70 | | yes | +| 4917 | /admin/deploy/machine-images/aws-oneclick | /self-hosted/deploy/machine-images/aws-oneclick | 70 | | yes | +| 5158 | /admin/postgres | /self-hosted/postgres | 70 | | yes | +| 5289 | /admin/code_hosts | /admin/code-hosts | 70 | | yes | +| 5734 | /self-hosted/executors/executors_troubleshooting | /self-hosted/executors/executors-troubleshooting | 70 | | yes | +| 628 | /user/code_intelligence/features | /user/code_intelligence/explanations/features | 60 | 4 more β†’ /code-navigation/features | no | +| 672 | /user/code_intelligence/explanations/precise_code_intelligence | /code_intelligence/explanations/precise_code_intelligence | 60 | 4 more β†’ /code-navigation/precise-code-navigation | no | +| 1007 | /admin/install/kubernetes/operations | /admin/deploy/kubernetes/operations | 60 | 1 more β†’ /self-hosted/deploy/kubernetes/operations | no | +| 2245 | /code_navigation/explanations/features | /code-search/code-navigation/features | 60 | 1 more β†’ /code-navigation/features | no | +| 4634 | /code_monitoring/how-tos | /code_monitoring | 60 | 1 more β†’ /code-monitoring | no | +| 4941 | /admin/deploy/scale | /self-hosted/deploy/scale | 60 | | yes | +| 5017 | /admin/external_services/postgres | /self-hosted/external_services/postgres | 60 | | no | +| 5118 | /admin/observability/alerts | /self-hosted/observability/alerts | 60 | | yes | +| 5138 | /admin/observability/metrics | /self-hosted/observability/metrics | 60 | | yes | +| 5187 | /admin/ssl_https_self_signed_cert_nginx | /self-hosted/ssl_https_self_signed_cert_nginx | 60 | 1 more β†’ /self-hosted/ssl-https-self-signed-cert-nginx | no | +| 5208 | /admin/updates/migrator/downgrading | /self-hosted/updates/migrator/downgrading | 60 | | yes | +| 5349 | /admin/config/batch_changes | /admin/config/batch-changes | 60 | | yes | +| 5641 | /integration/browser_extension/how-tos/browser_search_engine | /integration/browser-extension/how-tos/browser-search-engine | 60 | | yes | +| 5666 | /own/codeowners_ingestion | /own/codeowners-ingestion | 60 | 1 more β†’ /code-ownership | no | +| 5722 | /self-hosted/executors/deploy_executors_kubernetes | /self-hosted/executors/deploy-executors-kubernetes | 60 | | yes | +| 5798 | /self-hosted/postgres12_end_of_life_notice | /self-hosted/postgres12-end-of-life-notice | 60 | | yes | +| 5857 | /own | /code-ownership | 60 | | yes | +| 5881 | /api/graphql/search | /api/stream-api | 60 | | yes | +| 1204 | /code_intelligence/how-to/index_a_typescript_and_javascript_repository | /code_navigation/how-to/index_a_typescript_and_javascript_repository | 50 | 3 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 1892 | /code_search/how-to/saved_searches | /code-search/working/saved_searches | 50 | 1 more β†’ /code-search/working/saved-searches | no | +| 2648 | /batch_changes/references/requirements | /batch-changes/requirements | 50 | | yes | +| 2828 | /batch_changes/references/batch_spec_templating | /batch-changes/batch-spec-templating | 50 | | yes | +| 4642 | /code_monitoring/how-tos/starting_points | /code_monitoring | 50 | 1 more β†’ /code-monitoring | no | +| 4690 | /code-search/code-navigation/envvars | /code-navigation/envvars | 50 | | yes | +| 4710 | /code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | /code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 50 | 1 more β†’ /code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | no | +| 4797 | /admin/config/advanced_config_file | /self-hosted/advanced_config_file | 50 | 1 more β†’ /self-hosted/advanced-config-file | no | +| 5074 | /admin/how-to/rollback_database | /self-hosted/how-to/rollback_database | 50 | 1 more β†’ /self-hosted/how-to/rollback-database | no | +| 5317 | /admin/code_hosts/gitlab | /admin/code-hosts/gitlab | 50 | | yes | +| 5457 | /code_insights/quickstart | /code-insights/quickstart | 50 | | yes | +| 5479 | /code_insights/explanations/current_limitations_of_code_insights | /code-insights/explanations/current-limitations-of-code-insights | 50 | | yes | +| 5526 | /code_insights/references/incomplete_data_points | /code-insights/references/incomplete-data-points | 50 | | yes | +| 5738 | /self-hosted/external_services | /self-hosted/external-services | 50 | | yes | +| 5750 | /self-hosted/how-to/blobstore_update_notes | /self-hosted/how-to/blobstore-update-notes | 50 | | yes | +| 5762 | /self-hosted/how-to/dirty_database_pre_3_37 | /self-hosted/how-to/dirty-database-pre-3-37 | 50 | | yes | +| 25 | /dev/code_reviews | https://docs.sourcegraph.com/dev/background-information/code_reviews | 40 | | | +| 1039 | /admin/install/docker-compose | /admin/deploy/docker-compose | 40 | 1 more β†’ /self-hosted/deploy/docker-compose | no | +| 1063 | /admin/install/docker/digitalocean | /self-hosted/deploy | 40 | | yes | +| 1416 | /cody/explanations/enabling_cody_enterprise | /cody/clients/enable-cody-enterprise | 40 | | yes | +| 4489 | /pricing/free | https://sourcegraph.com/pricing | 40 | | yes | +| 4505 | /pricing/plan-comparison | https://sourcegraph.com/pricing | 40 | | yes | +| 4535 | /cody/embedded-repos | /cody | 40 | | yes | +| 4728 | /code-search/code-navigation/how-to/index_other_languages | /code-navigation/how-to/index_other_languages | 40 | 1 more β†’ /code-navigation/how-to/index-other-languages | no | +| 4753 | /code-search/code-navigation/rockskip | /code-navigation/rockskip | 40 | | yes | +| 4785 | /admin/config/webhooks/incoming | /admin/webhooks/incoming | 40 | | yes | +| 4929 | /admin/deploy/migrate-backup | /self-hosted/deploy/migrate-backup | 40 | | yes | +| 4957 | /admin/deployment_best_practices | /self-hosted/deployment_best_practices | 40 | 1 more β†’ /self-hosted/deployment-best-practices | no | +| 4965 | /admin/config/encryption | /self-hosted/encryption | 40 | | yes | +| 5090 | /admin/how-to/unfinished_migration | /self-hosted/how-to/unfinished_migration | 40 | 1 more β†’ /self-hosted/how-to/unfinished-migration | no | +| 5261 | /admin/audit_log | /admin/audit-log | 40 | | yes | +| 5345 | /admin/config/authorization_and_authentication | /admin/config/authorization-and-authentication | 40 | | yes | +| 5534 | /code_insights/references/search_aggregations_use_cases | /code-insights/references/search-aggregations-use-cases | 40 | | yes | +| 21 | /dev/roadmap | https://sourcegraph.com/direction | 30 | | no | +| 583 | /dev/documentation | /dev/how-to/documentation_implementation | 30 | | no | +| 689 | /user/code_intelligence/how-to/index_a_go_repository | /code_intelligence/how-to/index_a_go_repository | 30 | 4 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 1075 | /admin/install/managed | /admin/deploy/managed | 30 | 1 more β†’ /cloud | no | +| 1270 | /code_intelligence/references/indexers | /code_navigation/references/indexers | 30 | 3 more β†’ /code-navigation/writing-an-indexer | no | +| 1820 | /cody/explanations/code_graph_context | /cody/core-concepts/code-graph | 30 | | yes | +| 1902 | /code_search/how-to/search_contexts | /code-search/working/search_contexts | 30 | 1 more β†’ /code-search/working/search-contexts | no | +| 1907 | /code_search/how-to/exhaustive | /code-search/types/exhaustive | 30 | | no | +| 1932 | /code_search/explanations/search_details | /code-search/features | 30 | | yes | +| 2183 | /code_navigation/explanations/introduction_to_code_navigation | /code-search/code-navigation | 30 | 1 more β†’ /code-navigation | no | +| 2508 | /batch_changes/explanations/introduction_to_batch_changes | /batch-changes/ | 30 | | yes | +| 2543 | /batch_changes/tutorials | /batch-changes/examples | 30 | | yes | +| 2837 | /batch_changes/references/batch_spec_cheat_sheet | /batch-changes/batch-spec-cheat-sheet | 30 | | yes | +| 4515 | /admin/pricing | https://sourcegraph.com/pricing | 30 | | yes | +| 4670 | /how-to-videos | /tutorials | 30 | | yes | +| 4674 | /how-to-videos/code-search | /tutorials#code-search-how-to-videos | 30 | | yes | +| 4715 | /code-search/code-navigation/how-to | /code-navigation/how-to | 30 | | yes | +| 4805 | /admin/deploy/docker-compose/azure | /self-hosted/deploy/docker-compose/azure | 30 | | yes | +| 4893 | /admin/deploy/kubernetes/kustomize/migrate | /self-hosted/deploy/kubernetes/kustomize/migrate | 30 | | yes | +| 4905 | /admin/deploy/kubernetes/troubleshoot | /self-hosted/deploy/kubernetes/troubleshoot | 30 | | yes | +| 4953 | /admin/deploy/without_service_discovery | /self-hosted/deploy/without_service_discovery | 30 | 1 more β†’ /self-hosted/deploy/without-service-discovery | no | +| 4961 | /admin/config/email | /self-hosted/email | 30 | | yes | +| 5001 | /admin/executors/executors_troubleshooting | /self-hosted/executors/executors_troubleshooting | 30 | 1 more β†’ /self-hosted/executors/executors-troubleshooting | no | +| 5110 | /admin/observability/alerting | /self-hosted/observability/alerting | 30 | | yes | +| 5257 | /admin/access_control/batch_changes | /admin/access-control/batch-changes | 30 | | yes | +| 5475 | /code_insights/explanations/code_insights_filters | /code-insights/explanations/code-insights-filters | 30 | | yes | +| 5554 | /code-navigation/how-to/adding_scip_to_workflows | /code-navigation/how-to/adding-scip-to-workflows | 30 | | yes | +| 5581 | /code-navigation/inference_configuration | /code-navigation/inference-configuration | 30 | | yes | +| 5605 | /code-search/working/saved_searches | /code-search/working/saved-searches | 30 | | yes | +| 5646 | /integration/browser_extension/how-tos/google_workspace | /integration/browser-extension/how-tos/google-workspace | 30 | | yes | +| 5816 | /self-hosted/updates/pure-docker | /self-hosted/deploy/docker-compose/upgrade | 30 | | yes | +| 5843 | /self-hosted/updates/docker-compose | https://sourcegraph.com/changelog/self-hosted/docker-compose | 30 | | yes | +| 5861 | /own/assigned-ownership | /code-ownership | 30 | | yes | +| 12 | /admin/http_https_configuration | /self-hosted/http-https-configuration | 20 | | yes | +| 153 | /dev/rfcs | https://sourcegraph.com/handbook/communication/rfcs | 20 | | no | +| 333 | /admin/auth/saml_with_microsoft_adfs | /admin/auth/saml/microsoft_adfs | 20 | 1 more β†’ /admin/auth/saml/microsoft-adfs | no | +| 380 | /integration/google_gsuite | /integration/google_workspace | 20 | | no | +| 611 | /user/search/saved_searches | /code_search/how-to/saved_searches | 20 | 2 more β†’ /code-search/working/saved-searches | no | +| 955 | /cli/references/campaigns/validate | /cli/references/batch/validate | 20 | | yes | +| 1019 | /admin/install/kubernetes/update | /admin/deploy/kubernetes/update | 20 | | no | +| 1027 | /admin/install/docker-compose/aws | /admin/deploy/docker-compose/aws | 20 | 1 more β†’ /self-hosted/deploy/docker-compose/aws | no | +| 1043 | /admin/install/docker-compose/migrate | /admin/deploy/docker-compose/migrate | 20 | 1 more β†’ /self-hosted/deploy/docker-compose/migrate | no | +| 1099 | /admin/observability/alert_solutions | /admin/observability/alerts | 20 | 1 more β†’ /self-hosted/observability/alerts | no | +| 1119 | /code_intelligence/explanations/features | /code_navigation/explanations/features | 20 | 2 more β†’ /code-navigation/features | no | +| 1145 | /code_intelligence/explanations | /code_navigation/explanations | 20 | | no | +| 1209 | /code_intelligence/how-to/index_other_languages | /code_navigation/how-to/index_other_languages | 20 | | no | +| 1554 | /cody/core-concepts/embeddings/configure-embeddings | /cody/embeddings/configure-embeddings | 20 | | no | +| 1873 | /code_search/tutorials | /code-search/working/saved_searches | 20 | 1 more β†’ /code-search/working/saved-searches | no | +| 1963 | /code_navigation/how-to/configure_data_retention | /code-search/code-navigation/auto_indexing#configure-auto-indexing-policies | 20 | 2 more β†’ /code-navigation/auto-indexing | no | +| 1975 | /code_navigation/how-to/index_a_go_repository | /code-search/code-navigation/how-to/index_a_go_repository | 20 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 2046 | /code_navigation/how-to/adding_lsif_to_workflows | /code-search/code-navigation/how-to/adding_lsif_to_workflows | 20 | | no | +| 2204 | /code_navigation/explanations/uploads | /code-search/code-navigation/explanations/uploads | 20 | 1 more β†’ /code-navigation/explanations/uploads | no | +| 2442 | /code_navigation/references/precise_examples | /code-search/code-navigation/precise_code_navigation#precise-navigation-examples | 20 | 2 more β†’ /code-navigation/precise-code-navigation | no | +| 2500 | /batch_changes/quickstart | /batch-changes/quickstart | 20 | | yes | +| 2567 | /batch_changes/how-tos/publishing_changesets | /batch-changes/publishing-changesets | 20 | | yes | +| 2846 | /batch_changes/references/troubleshooting | /batch-changes/troubleshooting | 20 | | yes | +| 4493 | /pricing/plans/free | https://sourcegraph.com/pricing | 20 | | yes | +| 4497 | /pricing/enterprise-starter | /pricing/plans/enterprise-starter | 20 | | yes | +| 4605 | /analytics/cloud | /analytics | 20 | | yes | +| 4622 | /code_monitoring/explanations/best_practices | /code_monitoring | 20 | 1 more β†’ /code-monitoring | no | +| 4732 | /code-search/code-navigation/how-to/policies_resource_usage_best_practices | /code-navigation/how-to/policies_resource_usage_best_practices | 20 | 1 more β†’ /code-navigation/how-to/policies-resource-usage-best-practices | no | +| 4801 | /admin/deploy/docker-compose/aws | /self-hosted/deploy/docker-compose/aws | 20 | | yes | +| 5013 | /admin/external_services/object_storage | /self-hosted/external_services/object_storage | 20 | 1 more β†’ /self-hosted/external-services/object-storage | no | +| 5041 | /admin/how-to/dirty_database_pre_3_37 | /self-hosted/how-to/dirty_database_pre_3_37 | 20 | 1 more β†’ /self-hosted/how-to/dirty-database-pre-3-37 | no | +| 5070 | /admin/how-to/redis_configmap | /self-hosted/how-to/redis_configmap | 20 | 1 more β†’ /self-hosted/how-to/redis-configmap | no | +| 5114 | /admin/observability/alerting_custom_consumption | /self-hosted/observability/alerting_custom_consumption | 20 | 1 more β†’ /self-hosted/observability/alerting-custom-consumption | no | +| 5224 | /admin/updates/migrator/troubleshooting-upgrades | /self-hosted/updates/migrator/troubleshooting-upgrades | 20 | | yes | +| 5248 | /admin/workers | /self-hosted/workers | 20 | | yes | +| 5253 | /admin/access_control | /admin/access-control | 20 | | yes | +| 5265 | /admin/auth/login_form | /admin/auth/login-form | 20 | | yes | +| 5337 | /admin/code_hosts/rate_limits | /admin/code-hosts/rate-limits | 20 | | yes | +| 5373 | /admin/how-to/update_repo_failure | /admin/how-to/update-repo-failure | 20 | | yes | +| 5445 | /cloud/private_connectivity_public_lb | /cloud/private-connectivity-public-lb | 20 | | yes | +| 5500 | /code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | /code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 20 | | yes | +| 5617 | /code-search/working/search_subexpressions | /code-search/working/search-subexpressions | 20 | | yes | +| 5726 | /self-hosted/executors/deploy_executors_terraform | /self-hosted/executors/deploy-executors-terraform | 20 | | yes | +| 5838 | /technical-changelog.rss | TECHNICAL_CHANGELOG_RSS_URL | 20 | | | +| 111 | /dev/retrospectives/3_3 | https://sourcegraph.com/retrospectives/3_3 | 10 | | no | +| 337 | /admin/config/critical_config | /admin/migration/3_11 | 10 | | no | +| 710 | /user/usage_statistics | /analytics | 10 | | yes | +| 746 | /user/automation | /batch_changes | 10 | 1 more β†’ /batch-changes | no | +| 987 | /admin/install/kubernetes/configure | /admin/deploy/kubernetes/configure | 10 | 1 more β†’ /self-hosted/deploy/kubernetes/configure | no | +| 1015 | /admin/install/kubernetes/troubleshoot | /admin/deploy/kubernetes/troubleshoot | 10 | 1 more β†’ /self-hosted/deploy/kubernetes/troubleshoot | no | +| 1059 | /admin/install/docker/aws | /self-hosted/deploy | 10 | | yes | +| 1067 | /admin/install/docker/google_cloud | /self-hosted/deploy | 10 | | yes | +| 1132 | /code_intelligence/explanations/rockskip | /code_navigation/explanations/rockskip | 10 | 2 more β†’ /code-navigation/rockskip | no | +| 1400 | /app | /cody/clients/app | 10 | | no | +| 1412 | /cody/overview/cody-with-sourcegraph | /cody/clients/cody-with-sourcegraph | 10 | | yes | +| 1682 | /cody/explanations/indexing | /cody/embeddings/embedding-index | 10 | | no | +| 1752 | /cody/explanations/policies | /cody/embeddings/configure-embeddings#policies | 10 | | no | +| 1840 | /cody/core-concepts/cody_gateway | /cody/core-concepts/cody-gateway | 10 | 1 more β†’ /model-provider | no | +| 1882 | /code_search/tutorials/search_subexpressions | /code-search/working/search_subexpressions | 10 | 1 more β†’ /code-search/working/search-subexpressions | no | +| 1927 | /code_search/explanations/features | /code-search/features | 10 | | yes | +| 2547 | /batch_changes/tutorials/refactor_go_comby | /batch-changes/refactor-go-comby | 10 | | yes | +| 2639 | /batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | /batch-changes/creating-multiple-changesets-in-large-repositories | 10 | | yes | +| 4646 | /code_monitoring/how-tos/webhook | /code_monitoring | 10 | 1 more β†’ /code-monitoring | no | +| 4666 | /cody/core-concepts/enterprise-architecture | /admin/architecture#cody | 10 | | yes | +| 4741 | /code-search/code-navigation/inference_configuration | /code-navigation/inference_configuration | 10 | 1 more β†’ /code-navigation/inference-configuration | no | +| 4757 | /code-search/code-navigation/search_based_code_navigation | /code-navigation/search_based_code_navigation | 10 | 1 more β†’ /code-navigation/search-based-code-navigation | no | +| 4901 | /admin/deploy/kubernetes/scale | /self-hosted/deploy/kubernetes/scale | 10 | | yes | +| 4925 | /admin/deploy/machine-images | /self-hosted/deploy/machine-images | 10 | | yes | +| 4933 | /admin/deploy/repositories | /self-hosted/deploy/repositories | 10 | | yes | +| 4981 | /admin/executors/deploy_executors_dind | /self-hosted/executors/deploy_executors_dind | 10 | 1 more β†’ /self-hosted/executors/deploy-executors-dind | no | +| 4989 | /admin/executors/deploy_executors_kubernetes | /self-hosted/executors/deploy_executors_kubernetes | 10 | 1 more β†’ /self-hosted/executors/deploy-executors-kubernetes | no | +| 5005 | /admin/executors/firecracker | /self-hosted/executors/firecracker | 10 | | yes | +| 5102 | /admin/config/network-filtering | /self-hosted/network-filtering | 10 | | yes | +| 5465 | /code_insights/explanations/administration_and_security_of_code_insights | /code-insights/explanations/administration-and-security-of-code-insights | 10 | | yes | +| 5654 | /integration/open_in_editor | /integration/open-in-editor | 10 | | yes | +| 5690 | /self-hosted/deploy/without_service_discovery | /self-hosted/deploy/without-service-discovery | 10 | | yes | +| 5698 | /self-hosted/executors/deploy_executors | /self-hosted/executors | 10 | | yes | +| 5889 | /api/graphql/managing-search-contexts-with-api | /api/graphql | 10 | | yes | +| 4 | /integration/img/disable_extension.png | /integration/img/disable-extension.png | 0 | | no | +| 8 | /admin/tls_ssl | /self-hosted/http-https-configuration | 0 | | yes | +| 16 | /docs/admin/deploy_executors | https://sourcegraph.com/docs/admin/executors/deploy_executors | 0 | 1 more β†’ /self-hosted/executors | no | +| 30 | /dev/conduct | https://sourcegraph.com/community/code_of_conduct | 0 | | no | +| 34 | /dev/devrel_release_issue_template | https://sourcegraph.com/handbook/marketing/developer-relations/release_issue_template | 0 | | no | +| 39 | /dev/documentation/separate_website | https://sourcegraph.com/handbook/engineering/distribution/separate_website | 0 | | no | +| 44 | /dev/documentation/site | https://sourcegraph.com/handbook/engineering/distribution/update_sourcegraph_website | 0 | | no | +| 49 | /dev/documentation/structure | https://sourcegraph.com/handbook/engineering/product_documentation | 0 | | no | +| 54 | /dev/documentation/style_guide | https://sourcegraph.com/handbook/engineering/product_documentation | 0 | | no | +| 59 | /dev/faq | https://sourcegraph.com/community/faq | 0 | | no | +| 63 | /dev/go_style_guide | https://docs.sourcegraph.com/dev/background-information/languages/go | 0 | | | +| 68 | /dev/incidents | https://sourcegraph.com/handbook/engineering/incidents | 0 | | no | +| 72 | /dev/open_source_open_company | https://sourcegraph.com/company#sourcegraph-open-product-open-company-open-source | 0 | | no | +| 77 | /dev/patch_release_issue_template | https://sourcegraph.com/handbook/engineering/releases/patch_release_issue_template | 0 | | no | +| 82 | /dev/product | https://sourcegraph.com/handbook/product | 0 | | no | +| 86 | /dev/product/personas | https://sourcegraph.com/handbook/marketing/personas | 0 | | no | +| 90 | /dev/release_issue_template | https://sourcegraph.com/handbook/engineering/releases/release_issue_template | 0 | | no | +| 95 | /dev/releases | https://sourcegraph.com/handbook/engineering/releases | 0 | | no | +| 99 | /dev/retrospectives/3_0 | https://sourcegraph.com/handbook/retrospectives/3_0 | 0 | | no | +| 103 | /dev/retrospectives/3_0_beta | https://sourcegraph.com/handbook/retrospectives/3_0_beta | 0 | | no | +| 107 | /dev/retrospectives/3_2 | https://sourcegraph.com/retrospectives/3_2 | 0 | | no | +| 115 | /dev/retrospectives/3_4 | https://sourcegraph.com/retrospectives/3_4 | 0 | | no | +| 119 | /dev/retrospectives/3_5 | https://sourcegraph.com/retrospectives/3_5 | 0 | | no | +| 123 | /dev/retrospectives/3_6 | https://sourcegraph.com/retrospectives/3_6 | 0 | | no | +| 127 | /dev/retrospectives/3_7 | https://sourcegraph.com/retrospectives/3_7 | 0 | | no | +| 131 | /dev/retrospectives/3_8 | https://sourcegraph.com/retrospectives/3_8 | 0 | | no | +| 135 | /dev/retrospectives/3_9 | https://sourcegraph.com/retrospectives/3_9 | 0 | | no | +| 139 | /dev/retrospectives/customer_license_expiration | https://sourcegraph.com/retrospectives/customer_license_expiration | 0 | | no | +| 144 | /dev/retrospectives | https://sourcegraph.com/retrospectives | 0 | | no | +| 148 | /dev/retrospectives/postgresql_upgrade | https://sourcegraph.com/retrospectives/postgresql_upgrade | 0 | | no | +| 157 | /dev/style_guide | https://sourcegraph.com/handbook/communication/style_guide | 0 | | no | +| 162 | /direction | https://sourcegraph.com/direction | 0 | | no | +| 166 | /direction/secure | https://sourcegraph.com/direction | 0 | | no | +| 170 | /graphbook/communication | https://sourcegraph.com/handbook | 0 | | no | +| 174 | /graphbook | https://sourcegraph.com/handbook | 0 | | no | +| 178 | /team/graphbook | https://sourcegraph.com/handbook | 0 | | no | +| 182 | /team/graphbook/team_meeting | https://sourcegraph.com/handbook/communication/company_meeting | 0 | | no | +| 187 | /team/graphbook/travel | https://sourcegraph.com/handbook/people-ops/travel | 0 | | no | +| 191 | /team/gtm/devrel | https://sourcegraph.com/handbook/marketing/developer-relations | 0 | | no | +| 196 | /team/gtm | https://sourcegraph.com/handbook/sales | 0 | | no | +| 200 | /team/gtm/support/diagnostics | https://sourcegraph.com/handbook/support/diagnostics | 0 | | no | +| 204 | /team/gtm/support | https://sourcegraph.com/handbook/support | 0 | | no | +| 208 | /team | https://sourcegraph.com/handbook | 0 | | no | +| 212 | /team/product-dev/documentation | https://sourcegraph.com/handbook/engineering/product_documentation | 0 | | no | +| 217 | /team/product-dev/documentation/separate_website | https://sourcegraph.com/handbook/engineering/distribution/separate_website | 0 | | no | +| 222 | /team/product-dev/documentation/site | https://sourcegraph.com/handbook/engineering/distribution/update_sourcegraph_website | 0 | | no | +| 227 | /team/product-dev/documentation/structure | https://sourcegraph.com/handbook/engineering/product_documentation | 0 | | no | +| 232 | /team/product-dev/documentation/style_guide | https://sourcegraph.com/handbook/communication/style_guide | 0 | | no | +| 237 | /team/product-dev/incidents | https://sourcegraph.com/handbook/engineering/incidents | 0 | | no | +| 241 | /team/product-dev | https://sourcegraph.com/handbook/engineering | 0 | | no | +| 245 | /team/product-dev/open_source_open_company | https://sourcegraph.com/company#sourcegraph-open-product-open-company-open-source | 0 | | no | +| 250 | /team/product-dev/product | https://sourcegraph.com/handbook/product | 0 | | no | +| 254 | /team/product-dev/product/personas | https://sourcegraph.com/handbook/marketing/personas | 0 | | no | +| 258 | /team/product-dev/releases | https://sourcegraph.com/handbook/engineering/releases | 0 | | no | +| 262 | /team/product-dev/retrospectives/3_0 | https://sourcegraph.com/retrospectives/3_0 | 0 | | no | +| 266 | /team/product-dev/retrospectives/3_0_beta | https://sourcegraph.com/retrospectives/3_0_beta | 0 | | no | +| 270 | /team/product-dev/retrospectives/3_2 | https://sourcegraph.com/retrospectives/3_2 | 0 | | no | +| 274 | /team/product-dev/retrospectives/3_3 | https://sourcegraph.com/retrospectives/3_3 | 0 | | no | +| 278 | /team/product-dev/retrospectives/3_4 | https://sourcegraph.com/retrospectives/3_4 | 0 | | no | +| 282 | /team/product-dev/retrospectives/3_5 | https://sourcegraph.com/retrospectives/3_5 | 0 | | no | +| 286 | /team/product-dev/retrospectives/3_6 | https://sourcegraph.com/retrospectives/3_6 | 0 | | no | +| 290 | /team/product-dev/retrospectives/3_7 | https://sourcegraph.com/retrospectives/3_7 | 0 | | no | +| 294 | /team/product-dev/retrospectives/3_8 | https://sourcegraph.com/retrospectives/3_8 | 0 | | no | +| 298 | /team/product-dev/retrospectives/3_9 | https://sourcegraph.com/retrospectives/3_9 | 0 | | no | +| 302 | /team/product-dev/retrospectives/customer_license_expiration | https://sourcegraph.com/retrospectives/customer_license_expiration | 0 | | no | +| 307 | /team/product-dev/retrospectives | https://sourcegraph.com/retrospectives | 0 | | no | +| 311 | /team/product-dev/retrospectives/postgresql_upgrade | https://sourcegraph.com/retrospectives/postgresql_upgrade | 0 | | no | +| 316 | /team/product-dev/rfcs | https://sourcegraph.com/handbook/communication/rfcs | 0 | | no | +| 320 | /team/roadmap | https://sourcegraph.com/direction | 0 | | no | +| 324 | /team/style_guide | https://sourcegraph.com/handbook/communication/style_guide | 0 | | no | +| 329 | /adopt/comp | https://sourcegraph.com/workflow | 0 | | no | +| 341 | /admin/external_service/bitbucketserver | /integration/bitbucket_server | 0 | 1 more β†’ /integration/bitbucket-server | no | +| 345 | /admin/install/cluster.md | /admin/deploy/index.md | 0 | | no | +| 349 | /admin/monitoring | /admin/observability | 0 | 1 more β†’ /self-hosted/observability | no | +| 353 | /admin/monitoring/reporting_search_timeouts | /admin/observability/troubleshooting#scenario-search-timeouts | 0 | 1 more β†’ /self-hosted/observability/troubleshooting | no | +| 358 | /admin/monitoring/metrics_reference | /admin/observability/metrics_guide | 0 | | no | +| 362 | /admin/monitoring/slack_alert_channel | /admin/observability/alerting#set-up-alerts-in-grafana | 0 | 1 more β†’ /self-hosted/observability/alerting | no | +| 366 | /@v5.3.0/admin/observability/alerts | https://docs.sourcegraph.com/@v5.3.0/admin/observability/alerts | 0 | | | +| 371 | /@v5.3.0/admin/observability/dashboards | https://docs.sourcegraph.com/@v5.3.0/admin/observability/dashboards | 0 | | | +| 376 | /admin/monitoring_and_tracing | /admin/observability | 0 | 1 more β†’ /self-hosted/observability | no | +| 384 | /dev/architecture/life-of-a-search-query | /dev/background-information/architecture/life-of-a-search-query | 0 | | no | +| 389 | /dev/architecture/architecture.dot | /dev/background-information/architecture/architecture.dot | 0 | | no | +| 394 | /dev/architecture/life-of-a-ping | /dev/background-information/architecture/life-of-a-ping | 0 | | no | +| 398 | /dev/architecture/life-of-a-repository | /dev/background-information/architecture/life-of-a-repository | 0 | | no | +| 403 | /dev/architecture/search-pagination | /dev/background-information/architecture/search-pagination | 0 | | no | +| 413 | /dev/architecture/architecture.svg | /dev/background-information/architecture/architecture.svg | 0 | | no | +| 418 | /dev/codeintel/architecture | /dev/background-information/codeintel/architecture | 0 | | no | +| 422 | /dev/codeintel/deployment | /dev/background-information/codeintel/deployment | 0 | | no | +| 426 | /dev/codeintel/diagrams/architecture.dot | /dev/background-information/codeintel/diagrams/architecture.dot | 0 | | no | +| 431 | /dev/codeintel/diagrams/architecture.svg | /dev/background-information/codeintel/diagrams/architecture.svg | 0 | | no | +| 436 | /dev/codeintel/diagrams/definitions.mermaid | /dev/background-information/codeintel/diagrams/definitions.mermaid | 0 | | no | +| 441 | /dev/codeintel/diagrams/definitions.svg | /dev/background-information/codeintel/diagrams/definitions.svg | 0 | | no | +| 446 | /dev/codeintel/diagrams/extension-definitions.mermaid | /dev/background-information/codeintel/diagrams/extension-definitions.mermaid | 0 | | no | +| 451 | /dev/codeintel/diagrams/extension-definitions.svg | /dev/background-information/codeintel/diagrams/extension-definitions.svg | 0 | | no | +| 456 | /dev/codeintel/diagrams/extension-hover.mermaid | /dev/background-information/codeintel/diagrams/extension-hover.mermaid | 0 | | no | +| 461 | /dev/codeintel/diagrams/extension-hover.svg | /dev/background-information/codeintel/diagrams/extension-hover.svg | 0 | | no | +| 466 | /dev/codeintel/diagrams/extension-references.mermaid | /dev/background-information/codeintel/diagrams/extension-references.mermaid | 0 | | no | +| 471 | /dev/codeintel/diagrams/extension-references.svg | /dev/background-information/codeintel/diagrams/extension-references.svg | 0 | | no | +| 476 | /dev/codeintel/diagrams/hover.mermaid | /dev/background-information/codeintel/diagrams/hover.mermaid | 0 | | no | +| 481 | /dev/codeintel/diagrams/hover.svg | /dev/background-information/codeintel/diagrams/hover.svg | 0 | | no | +| 485 | /dev/codeintel/diagrams/references.mermaid | /dev/background-information/codeintel/diagrams/references.mermaid | 0 | | no | +| 490 | /dev/codeintel/diagrams/references.svg | /dev/background-information/codeintel/diagrams/references.svg | 0 | | no | +| 495 | /dev/codeintel/diagrams/resolve-page.mermaid | /dev/background-information/codeintel/diagrams/resolve-page.mermaid | 0 | | no | +| 500 | /dev/codeintel/diagrams/resolve-page.svg | /dev/background-information/codeintel/diagrams/resolve-page.svg | 0 | | no | +| 505 | /dev/codeintel/diagrams/upload.mermaid | /dev/background-information/codeintel/diagrams/upload.mermaid | 0 | | no | +| 510 | /dev/codeintel/diagrams/upload.svg | /dev/background-information/codeintel/diagrams/upload.svg | 0 | | no | +| 515 | /dev/codeintel/extensions | /dev/background-information/codeintel/extensions | 0 | | no | +| 519 | /dev/codeintel/index | /dev/background-information/codeintel/index | 0 | | no | +| 523 | /dev/codeintel/queries | /dev/background-information/codeintel/queries | 0 | | no | +| 527 | /dev/codeintel/uploads | /dev/background-information/codeintel/uploads | 0 | | no | +| 531 | /dev/graphql_api | /dev/background-information/graphql_api | 0 | | no | +| 535 | /dev/observability | /dev/background-information/observability | 0 | | no | +| 539 | /dev/postgresql | /dev/background-information/postgresql | 0 | | no | +| 543 | /dev/renovate | /dev/background-information/renovate | 0 | | no | +| 547 | /dev/tech_stack | /dev/background-information/tech_stack | 0 | | no | +| 551 | /dev/telemetry | /dev/background-information/telemetry | 0 | | no | +| 555 | /dev/testing | /dev/background-information/testing | 0 | | no | +| 559 | /dev/web/build | /dev/background-information/web/build | 0 | | no | +| 563 | /dev/code_host_integrations | /dev/background-information/web/code_host_integrations | 0 | | no | +| 567 | /dev/web/graphql | /dev/background-information/web/graphql | 0 | | no | +| 571 | /dev/web/index | /dev/background-information/web/index | 0 | | no | +| 575 | /dev/web/web_app | /dev/background-information/web/web_app | 0 | | no | +| 579 | /dev/phabricator_gitolite | /dev/how-to/configure_phabricator_gitolite | 0 | | no | +| 587 | /dev/zoekt | /dev/how-to/zoekt_local_dev | 0 | | no | +| 591 | /user/search/examples | /code_search/tutorials/examples | 0 | 1 more β†’ /code-search/queries/examples | no | +| 595 | /user/search/queries | /code_search/reference/queries | 0 | 1 more β†’ /code-search/queries | no | +| 599 | /user/search/language | /code_search/reference/language | 0 | 1 more β†’ /code-search/queries/language | no | +| 603 | /user/search/structural | /code_search/reference/structural | 0 | | no | +| 607 | /user/search/opengrok | /code_search/how-to/opengrok | 0 | | no | +| 615 | /user/search/scopes | /code_search/how-to/scopes | 0 | | no | +| 619 | /user/code_intelligence/lsif_quickstart | /user/code_intelligence/how-to/index_other_languages | 0 | | no | +| 623 | /user/code_intelligence/basic_code_intelligence | /user/code_intelligence/explanations/search_based_code_intelligence | 0 | | no | +| 632 | /user/code_intelligence/lsif | /user/code_intelligence/explanations/precise_code_intelligence | 0 | 5 more β†’ /code-navigation/precise-code-navigation | no | +| 637 | /user/code_intelligence/precise_code_intelligence | /user/code_intelligence/explanations/precise_code_intelligence | 0 | 5 more β†’ /code-navigation/precise-code-navigation | no | +| 642 | /user/code_intelligence/writing_an_indexer | /user/code_intelligence/explanations/writing_an_indexer | 0 | 5 more β†’ /code-navigation/writing-an-indexer | no | +| 646 | /user/code_intelligence/adding_lsif_to_many_repos | /user/code_intelligence/how-to/adding_lsif_to_many_repos | 0 | 5 more β†’ /code-navigation/precise-code-navigation | no | +| 650 | /user/code_intelligence/adding_lsif_to_workflows | /user/code_intelligence/how-to/adding_lsif_to_workflows | 0 | 3 more β†’ /code-search/code-navigation/how-to/adding_lsif_to_workflows | no | +| 654 | /user/code_intelligence/languages/go | /user/code_intelligence/how-to/index_a_go_repository | 0 | 5 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 658 | /user/code_intelligence/languages/typescript_and_javascript | /user/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 5 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 663 | /user/code_intelligence/explanations/basic_code_intelligence | /code_intelligence/explanations/search_based_code_intelligence | 0 | 4 more β†’ /code-navigation/search-based-code-navigation | no | +| 668 | /user/code_intelligence/explanations/features | /code_intelligence/explanations/features | 0 | 3 more β†’ /code-navigation/features | no | +| 677 | /user/code_intelligence/explanations/writing_an_indexer | /code_intelligence/explanations/writing_an_indexer | 0 | 4 more β†’ /code-navigation/writing-an-indexer | no | +| 681 | /user/code_intelligence/how-to/adding_lsif_to_many_repos | /code_intelligence/how-to/adding_lsif_to_many_repos | 0 | 4 more β†’ /code-navigation/precise-code-navigation | no | +| 685 | /user/code_intelligence/how-to/adding_lsif_to_workflows | /code_intelligence/how-to/adding_lsif_to_workflows | 0 | 2 more β†’ /code-search/code-navigation/how-to/adding_lsif_to_workflows | no | +| 693 | /user/code_intelligence/how-to/index_a_typescript_and_javascript_repository | /code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 4 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 698 | /user/markdown | /admin/markdown | 0 | | yes | +| 702 | /user/organizations | /admin/organizations | 0 | | yes | +| 706 | /user/organizations/index | /admin/organizations | 0 | | yes | +| 718 | /user/user_surveys | /admin/user_surveys | 0 | 1 more β†’ /admin/user-surveys | no | +| 722 | /user/repository/badges | /user/personalization/badges | 0 | | no | +| 726 | /user/quick_links | /user/personalization/quick_links | 0 | | no | +| 730 | /user/themes | /user/personalization/themes | 0 | | no | +| 734 | /user/search | /code_search | 0 | 1 more β†’ /code-search | no | +| 750 | /user/campaigns | /batch_changes | 0 | 1 more β†’ /batch-changes | no | +| 754 | /user/campaigns/examples | /batch_changes/tutorials | 0 | 1 more β†’ /batch-changes/examples | no | +| 758 | /user/campaigns/managing_access | /batch_changes/explanations/permissions_in_batch_changes | 0 | | no | +| 762 | /dev/campaigns_database_layout.dot | /dev/background-information/batch_changes/batch_changes_database_layout.dot | 0 | | no | +| 767 | /dev/campaigns_database_layout.svg | /dev/background-information/batch_changes/batch_changes_database_layout.svg | 0 | | no | +| 772 | /dev/campaigns_design | /dev/background-information/batch_changes/batch_changes_design | 0 | | no | +| 777 | /dev/campaigns_development | /dev/background-information/batch_changes/index | 0 | | no | +| 781 | /dev/automation_development | /dev/background-information/batch_changes/index | 0 | | no | +| 785 | /campaigns/campaign_spec_yaml_reference | /batch-changes/batch-spec-yaml-reference | 0 | | yes | +| 789 | /dev/background-information/campaigns/campaigns_database_layout.svg | /dev/background-information/batch_changes/batch_changes_database_layout.svg | 0 | | no | +| 794 | /dev/background-information/campaigns/campaigns_database_layout.dot | /dev/background-information/batch_changes/batch_changes_database_layout.dot | 0 | | no | +| 799 | /campaigns/explanations/how_src_executes_a_campaign_spec | /batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 1 more β†’ /batch-changes/how-src-executes-a-batch-spec | no | +| 804 | /campaigns/explanations/reexecuting_campaign_specs_multiple_times | /batch_changes/explanations/reexecuting_batch_specs_multiple_times | 0 | 1 more β†’ /batch-changes/reexecuting-batch-specs-multiple-times | no | +| 809 | /campaigns/explanations/permissions_in_batch_changes | /batch_changes/explanations/permissions_in_batch_changes | 0 | | no | +| 813 | /campaigns/explanations/introduction_to_batch_changes | /batch_changes/explanations/introduction_to_batch_changes | 0 | 1 more β†’ /batch-changes/ | no | +| 818 | /campaigns/explanations/batch_changes_design | /batch_changes/explanations/batch_changes_design | 0 | 1 more β†’ /batch-changes/design | no | +| 822 | /campaigns/explanations | /batch_changes/explanations | 0 | 1 more β†’ /batch-changes/ | no | +| 826 | /campaigns/references/requirements | /batch_changes/references/requirements | 0 | 1 more β†’ /batch-changes/requirements | no | +| 830 | /campaigns/references/troubleshooting | /batch_changes/references/troubleshooting | 0 | 1 more β†’ /batch-changes/troubleshooting | no | +| 834 | /campaigns/references/name-change | /batch_changes/references/name-change | 0 | | no | +| 842 | /campaigns/references/faq | /batch_changes/references/faq | 0 | 1 more β†’ /batch-changes/faq | no | +| 846 | /campaigns/references/campaign_spec_templating | /batch_changes/references/batch_spec_templating | 0 | 1 more β†’ /batch-changes/batch-spec-templating | no | +| 850 | /campaigns/references | /batch_changes/references | 0 | | no | +| 854 | /campaigns/tutorials/update_base_images_in_dockerfiles | /batch_changes/tutorials/update_base_images_in_dockerfiles | 0 | 1 more β†’ /batch-changes/update-base-images-in-dockerfiles | no | +| 859 | /campaigns/tutorials/updating_go_import_statements | /batch_changes/tutorials/updating_go_import_statements | 0 | 1 more β†’ /batch-changes/updating-go-import-statements | no | +| 863 | /campaigns/tutorials/refactor_go_comby | /batch_changes/tutorials/refactor_go_comby | 0 | 1 more β†’ /batch-changes/refactor-go-comby | no | +| 867 | /campaigns/tutorials/search_and_replace_specific_terms | /batch_changes/tutorials/search_and_replace_specific_terms | 0 | 1 more β†’ /batch-changes/search-and-replace-specific-terms | no | +| 872 | /campaigns/tutorials | /batch_changes/tutorials | 0 | 1 more β†’ /batch-changes/examples | no | +| 876 | /campaigns/how-tos/creating_changesets_per_project_in_monorepos | /batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 0 | 1 more β†’ /batch-changes/creating-changesets-per-project-in-monorepos | no | +| 881 | /campaigns/how-tos/handling_errored_changesets | /batch_changes/how-tos/handling_errored_changesets | 0 | 1 more β†’ /batch-changes/handling-errored-changesets | no | +| 885 | /campaigns/how-tos/creating_multiple_changesets_in_large_repositories | /batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 1 more β†’ /batch-changes/creating-multiple-changesets-in-large-repositories | no | +| 890 | /campaigns/how-tos/site_admin_configuration | /batch_changes/how-tos/site_admin_configuration | 0 | 1 more β†’ /batch-changes/site-admin-configuration | no | +| 894 | /campaigns/how-tos/publishing_changesets | /batch_changes/how-tos/publishing_changesets | 0 | 1 more β†’ /batch-changes/publishing-changesets | no | +| 898 | /campaigns/how-tos/viewing_batch_changes | /batch_changes/how-tos/viewing_batch_changes | 0 | 1 more β†’ /batch-changes/create-a-batch-change#viewing-batch-changes | no | +| 902 | /campaigns/how-tos/updating_a_batch_change | /batch_changes/how-tos/updating_a_batch_change | 0 | 1 more β†’ /batch-changes/update-a-batch-change | no | +| 906 | /campaigns/how-tos/configuring_user_credentials | /batch_changes/how-tos/configuring_user_credentials | 0 | 2 more β†’ /batch-changes/configuring-credentials | no | +| 910 | /campaigns/how-tos/closing_or_deleting_a_batch_change | /batch_changes/how-tos/closing_or_deleting_a_batch_change | 0 | 1 more β†’ /batch-changes/delete-a-batch-change | no | +| 915 | /campaigns/how-tos/creating_a_batch_change | /batch_changes/how-tos/creating_a_batch_change | 0 | 1 more β†’ /batch-changes/create-a-batch-change | no | +| 919 | /campaigns/how-tos/tracking_existing_changesets | /batch_changes/how-tos/tracking_existing_changesets | 0 | 1 more β†’ /batch-changes/tracking-existing-changesets | no | +| 923 | /campaigns/how-tos | /batch_changes/how-tos | 0 | | no | +| 927 | /campaigns/quickstart | /batch_changes/quickstart | 0 | 1 more β†’ /batch-changes/quickstart | no | +| 935 | /cli/references/campaigns/apply | /cli/references/batch/apply | 0 | | yes | +| 939 | /cli/references/campaigns/index | /cli/references/batch/index | 0 | | no | +| 943 | /cli/references/campaigns/new | /cli/references/batch/new | 0 | | yes | +| 947 | /cli/references/campaigns/preview | /cli/references/batch/preview | 0 | | yes | +| 951 | /cli/references/campaigns/repositories | /cli/references/batch/repositories | 0 | | yes | +| 959 | /cli/references/campaigns | /cli/references/batch | 0 | | yes | +| 963 | /batch_changes/how-tos/configuring_user_credentials | /batch_changes/how-tos/configuring_credentials | 0 | 1 more β†’ /batch-changes/configuring-credentials | no | +| 967 | /batch-changes/references/troubleshooting | /batch_changes/references/troubleshooting | 0 | 1 more β†’ /batch-changes/troubleshooting | no | +| 971 | /dev/background-information/continuous_integration | /dev/background-information/ci | 0 | | no | +| 975 | /dev/how-to/add_and_use_logging | /dev/how-to/add_logging | 0 | | no | +| 983 | /admin/install/kubernetes/azure | /admin/deploy/kubernetes | 0 | 1 more β†’ /self-hosted/deploy/kubernetes | no | +| 991 | /admin/install/kubernetes/eks | /admin/deploy/kubernetes/eks | 0 | 1 more β†’ /self-hosted/deploy/kubernetes/eks | no | +| 995 | /admin/install/kubernetes/helm | /admin/deploy/kubernetes/helm | 0 | | no | +| 1003 | /admin/install/kubernetes/kustomize | /admin/deploy/kubernetes/kustomize | 0 | 1 more β†’ /self-hosted/deploy/kubernetes/kustomize | no | +| 1011 | /admin/install/kubernetes/scale | /admin/deploy/kubernetes/scale | 0 | 1 more β†’ /self-hosted/deploy/kubernetes/scale | no | +| 1023 | /admin/install/kubernetes/overlays | /admin/deploy/kubernetes/configure | 0 | 1 more β†’ /self-hosted/deploy/kubernetes/configure | no | +| 1031 | /admin/install/docker-compose/digitalocean | /admin/deploy/docker-compose/digitalocean | 0 | 1 more β†’ /self-hosted/deploy/docker-compose/digitalocean | no | +| 1035 | /admin/install/docker-compose/google_cloud | /admin/deploy/docker-compose/google_cloud | 0 | 2 more β†’ /self-hosted/deploy/docker-compose/google-cloud | no | +| 1047 | /admin/install/docker-compose/operations | /admin/deploy/docker-compose#operations | 0 | 1 more β†’ /self-hosted/deploy/docker-compose | no | +| 1051 | /admin/install/docker-compose/update | /admin/deploy/docker-compose#upgrade | 0 | 1 more β†’ /self-hosted/deploy/docker-compose | no | +| 1055 | /admin/install/docker-compose/configure | /admin/deploy/docker-compose#configure | 0 | 1 more β†’ /self-hosted/deploy/docker-compose | no | +| 1079 | /admin/install/migrate-backup | /admin/deploy/migrate-backup | 0 | 1 more β†’ /self-hosted/deploy/migrate-backup | no | +| 1083 | /admin/install/resource_estimator | /admin/deploy/resource_estimator | 0 | 2 more β†’ /self-hosted/deploy/resource-estimator | no | +| 1091 | /admin/deploy/cluster | /admin/deploy | 0 | 1 more β†’ /self-hosted/deploy | no | +| 1095 | /admin/deploy/docker | /self-hosted/deploy | 0 | | yes | +| 1103 | /admin/deploy/managed | /cloud | 0 | | yes | +| 1111 | /code_intelligence/explanations/auto_indexing_inference | /code_navigation/explanations/auto_indexing_inference | 0 | 3 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 1123 | /code_intelligence/explanations/introduction_to_code_intelligence | /code_navigation/explanations/introduction_to_code_navigation | 0 | 2 more β†’ /code-navigation | no | +| 1136 | /code_intelligence/explanations/search_based_code_intelligence | /code_navigation/explanations/search_based_code_navigation | 0 | 3 more β†’ /code-navigation/search-based-code-navigation | no | +| 1141 | /code_intelligence/explanations/uploads | /code_navigation/explanations/uploads | 0 | 2 more β†’ /code-navigation/explanations/uploads | no | +| 1149 | /code_intelligence/explanations/diagrams | /code_navigation/explanations/diagrams | 0 | | no | +| 1153 | /code_intelligence/explanations/diagrams/index-states.mermaid | /code_navigation/explanations/diagrams/index-states.mermaid | 0 | | no | +| 1158 | /code_intelligence/explanations/diagrams/index-states.svg | /code_navigation/explanations/diagrams/index-states.svg | 0 | | no | +| 1162 | /code_intelligence/explanations/diagrams/upload-states.mermaid | /code_navigation/explanations/diagrams/upload-states.mermaid | 0 | | no | +| 1167 | /code_intelligence/explanations/diagrams/upload-states.svg | /code_navigation/explanations/diagrams/upload-states.svg | 0 | | no | +| 1171 | /code_intelligence/apidocs | /code_navigation/apidocs | 0 | | no | +| 1175 | /code_intelligence/how-to/adding_lsif_to_many_repos | /code_navigation/how-to/adding_lsif_to_many_repos | 0 | 3 more β†’ /code-navigation/precise-code-navigation | no | +| 1179 | /code_intelligence/how-to/adding_lsif_to_workflows | /code_navigation/how-to/adding_lsif_to_workflows | 0 | 1 more β†’ /code-search/code-navigation/how-to/adding_lsif_to_workflows | no | +| 1183 | /code_intelligence/how-to/configure_auto_indexing | /code_navigation/how-to/configure_auto_indexing | 0 | 3 more β†’ /code-navigation/auto-indexing | no | +| 1187 | /code_intelligence/how-to/configure_data_retention | /code_navigation/how-to/configure_data_retention | 0 | 3 more β†’ /code-navigation/auto-indexing | no | +| 1191 | /code_intelligence/how-to/enable_auto_indexing | /code_navigation/how-to/enable_auto_indexing | 0 | 3 more β†’ /code-navigation/auto-indexing | no | +| 1213 | /code_intelligence/how-to | /code_navigation/how-to | 0 | | no | +| 1217 | /code_intelligence/how-to/img/CodeReview.gif | /code_navigation/how-to/img/CodeReview.gif | 0 | | no | +| 1221 | /code_intelligence/how-to/img/experimental-language-server-enable.png | /code_navigation/how-to/img/experimental-language-server-enable.png | 0 | | no | +| 1226 | /code_intelligence/how-to/img/extension-example.gif | /code_navigation/how-to/img/extension-example.gif | 0 | | no | +| 1230 | /code_intelligence/how-to/img/network-description.png | /code_navigation/how-to/img/network-description.png | 0 | | no | +| 1234 | /code_intelligence/how-to/img/network-waterfall.png | /code_navigation/how-to/img/network-waterfall.png | 0 | | no | +| 1238 | /code_intelligence/how-to/img/popover.png | /code_navigation/how-to/img/popover.png | 0 | | no | +| 1242 | /code_intelligence/how-to/img/Symbols.png | /code_navigation/how-to/img/Symbols.png | 0 | | no | +| 1246 | /code_intelligence/how-to/img/SymbolSidebar.png | /code_navigation/how-to/imgSymbolSidebar.png | 0 | | no | +| 1250 | /code_intelligence/how-to/img/workflow.png | /code_navigation/how-to/img/workflow.png | 0 | | no | +| 1254 | /code_intelligence/how-to/img | /code_navigation/how-to/img | 0 | | no | +| 1258 | /code_intelligence/references/auto_indexing_configuration | /code_navigation/references/auto_indexing_configuration | 0 | 3 more β†’ /code-navigation/auto-indexing-configuration | no | +| 1262 | /code_intelligence/references/envvars | /code_navigation/references/envvars | 0 | 2 more β†’ /code-navigation/envvars | no | +| 1266 | /code_intelligence/references/faq | /code_navigation/references/faq | 0 | | no | +| 1274 | /code_intelligence/references/precise_examples | /code_navigation/references/precise_examples | 0 | 3 more β†’ /code-navigation/precise-code-navigation | no | +| 1278 | /code_intelligence/references/requirements | /code_navigation/references/requirements | 0 | | no | +| 1282 | /code_intelligence/references/troubleshooting | /code_navigation/references/troubleshooting | 0 | 2 more β†’ /code-navigation/troubleshooting | no | +| 1286 | /code_intelligence/references | /code_navigation/references | 0 | | no | +| 1294 | /cody/autocomplete | /cody/capabilities/autocomplete | 0 | | yes | +| 1298 | /cody/autocomplete#code-autocomplete | /cody/capabilities/autocomplete | 0 | | yes | +| 1302 | /cody/autocomplete#what-is-cody-code-autocomplete | /cody/capabilities/autocomplete | 0 | | yes | +| 1306 | /cody/capabilities#code-autocomplete | /cody/capabilities/autocomplete | 0 | | yes | +| 1310 | /cody/autocomplete#enabling-autocomplete | /cody/capabilities/autocomplete | 0 | | yes | +| 1318 | /cody/autocomplete#configuring-on-sourcegraph-enterprise | /cody/capabilities/autocomplete#configure-autocomplete-on-an-enterprise-sourcegraph-instance | 0 | | yes | +| 1323 | /cody/capabilities#configure-autocomplete-on-sourcegraph-enterprise | /cody/capabilities/autocomplete#configure-autocomplete-on-an-enterprise-sourcegraph-instance | 0 | | yes | +| 1328 | /cody/autocomplete#accessing-autocomplete-logs | /cody/capabilities/autocomplete#access-autocomplete-logs | 0 | | yes | +| 1332 | /cody/capabilities#access-autocomplete-logs | /cody/capabilities/autocomplete#access-autocomplete-logs | 0 | | yes | +| 1336 | /cody#get-cody | /cody | 0 | | yes | +| 1340 | /cody#getting-started | /cody | 0 | | yes | +| 1344 | /cody#features | /cody#main-features | 0 | | yes | +| 1348 | /cody#chatbot-that-knows-your-code | /cody | 0 | | yes | +| 1352 | /cody#fix-code-inline | /cody/capabilities | 0 | | yes | +| 1356 | /cody/capabilities#fix-code-inline | /cody/capabilities | 0 | | yes | +| 1360 | /cody#recipes | /cody/capabilities/commands | 0 | 1 more β†’ /cody/capabilities/prompts | no | +| 1364 | /cody/capabilities#cody-recipes | /cody/capabilities/commands | 0 | 1 more β†’ /cody/capabilities/prompts | no | +| 1368 | /cody#autocomplete | /cody/capabilities/autocomplete | 0 | | yes | +| 1380 | /cody/explanations/installing_vs_code | /cody/clients/install-vscode | 0 | | yes | +| 1384 | /cody/overview/install-vscode | /cody/clients/install-vscode | 0 | | yes | +| 1392 | /cody/explanations/installing_jetbrains | /cody/clients/install-jetbrains | 0 | | yes | +| 1396 | /cody/overview/install-jetbrains | /cody/clients/install-jetbrains | 0 | | yes | +| 1404 | /cody/overview/app | /cody/clients/app | 0 | | no | +| 1408 | /cody/explanations/enabling_cody | /cody/clients/cody-with-sourcegraph | 0 | | yes | +| 1420 | /cody/overview/enable-cody-enterprise | /cody/clients/enable-cody-enterprise | 0 | | yes | +| 1424 | /cody/quickstart#quickstart-for-cody-in-vs-code | /cody/quickstart | 0 | | yes | +| 1428 | /cody/quickstart#introduction | /cody/quickstart#cody-quickstart | 0 | | yes | +| 1432 | /cody/quickstart#getting-started-with-the-cody-extension-and-recipes | /cody/quickstart#getting-started-with-cody-extension-and-commands | 0 | | yes | +| 1437 | /cody/quickstart#generate-a-unit-test | /cody/quickstart#1-generate-a-unit-test | 0 | | yes | +| 1441 | /cody/quickstart#ask-cody-to-pull-reference-documentation | /cody/quickstart#3-ask-cody-to-pull-reference-documentation | 0 | | yes | +| 1446 | /cody/quickstart#ask-cody-to-write-context-aware-code | /cody/quickstart#working-with-the-cody-extension | 0 | | yes | +| 1450 | /cody/overview/install-jetbrains#introduction | /cody/clients/install-jetbrains | 0 | | yes | +| 1458 | /cody/overview/install-jetbrains#requirements | /cody/clients/install-jetbrains#prerequisites | 0 | | yes | +| 1462 | /cody/overview/install-jetbrains#prerequisites | /cody/clients/install-jetbrains#prerequisites | 0 | | yes | +| 1466 | /cody/overview/install-jetbrains#optional-enable-code-graph-context-for-context-aware-answers | /cody/clients/install-jetbrains#optional-enable-code-graph-context-for-context-aware-answers | 0 | | yes | +| 1471 | /cody/overview/install-jetbrains#enable-code-graph-context-for-context-aware-answers-optional | /cody/clients/install-jetbrains#optional-enable-code-graph-context-for-context-aware-answers | 0 | | yes | +| 1476 | /cody/overview/install-jetbrains#get-started-with-cody | /cody/clients/install-jetbrains | 0 | | yes | +| 1484 | /cody/overview/install-vscode#introduction | /cody/clients/install-vscode | 0 | | yes | +| 1492 | /cody/overview/install-vscode#requirements | /cody/clients/install-vscode#prerequisites | 0 | | yes | +| 1496 | /cody/overview/install-vscode#prerequisites | /cody/clients/install-vscode#prerequisites | 0 | | yes | +| 1500 | /cody/overview/install-vscode#optional-enable-code-graph-context-for-context-aware-answers | /cody/clients/install-vscode#enable-code-graph-context-for-context-aware-answers-optional | 0 | | yes | +| 1505 | /cody/overview/install-vscode#enable-code-graph-context-for-context-aware-answers-optional | /cody/clients/install-vscode#enable-code-graph-context-for-context-aware-answers-optional | 0 | | yes | +| 1510 | /cody/overview/enable-cody-enterprise#using-a-third-party-llm-provider-directly | /cody/clients/enable-cody-enterprise#using-a-third-party-llm-provider | 0 | | yes | +| 1515 | /cody/overview/enable-cody-enterprise#using-a-third-party-llm-provider | /cody/clients/enable-cody-enterprise#using-a-third-party-llm-provider | 0 | | yes | +| 1520 | /cody/overview/enable-cody-enterprise#turning-cody-on-only-for-some-users | /cody/clients/enable-cody-enterprise#enable-cody-only-for-some-users | 0 | | yes | +| 1525 | /cody/overview/enable-cody-enterprise#enable-cody-only-for-some-users | /cody/clients/enable-cody-enterprise#enable-cody-only-for-some-users | 0 | | yes | +| 1530 | /cody/overview/enable-cody-enterprise#turning-cody-off | /cody/clients/enable-cody-enterprise#disable-cody | 0 | | yes | +| 1534 | /cody/overview/enable-cody-enterprise#disable-cody | /cody/clients/enable-cody-enterprise#disable-cody | 0 | | yes | +| 1538 | /cody/explanations | /cody/core-concepts | 0 | | yes | +| 1542 | /cody/explanations/code_graph_context#embeddings | /cody/embeddings | 0 | | no | +| 1546 | /cody/core-concepts/embeddings#embeddings | /cody/embeddings | 0 | | no | +| 1550 | /cody/explanations/code_graph_context#configuring-embeddings | /cody/embeddings/configure-embeddings | 0 | | no | +| 1558 | /cody/explanations/code_graph_context#filtering-files-from-embeddings | /cody/embeddings/manage-embeddings#filter-files-from-embeddings | 0 | | no | +| 1563 | /cody/core-concepts/embeddings/manage-embeddings#filter-files-from-embeddings | /cody/embeddings/manage-embeddings#filter-files-from-embeddings | 0 | | no | +| 1568 | /cody/explanations/code_graph_context#storing-embedding-indexes | /cody/embeddings/manage-embeddings#store-embedding-indexes | 0 | | no | +| 1573 | /cody/core-concepts/embeddings/manage-embeddings#store-embedding-indexes | /cody/embeddings/manage-embeddings#store-embedding-indexes | 0 | | no | +| 1578 | /cody/explanations/code_graph_context#using-s3 | /cody/embeddings/manage-embeddings#using-s3 | 0 | | no | +| 1582 | /cody/core-concepts/embeddings/manage-embeddings#using-s3 | /cody/embeddings/manage-embeddings#using-s3 | 0 | | no | +| 1586 | /cody/explanations/code_graph_context#using-gcs | /cody/embeddings/manage-embeddings#using-gcs | 0 | | no | +| 1590 | /cody/core-concepts/embeddings/manage-embeddings#using-gcs | /cody/embeddings/manage-embeddings#using-gcs | 0 | | no | +| 1594 | /cody/explanations/code_graph_context#provisioning-buckets | /cody/embeddings/manage-embeddings#provisioning-buckets | 0 | | no | +| 1598 | /cody/core-concepts/embeddings/manage-embeddings#provisioning-buckets | /cody/embeddings/manage-embeddings#provisioning-buckets | 0 | | no | +| 1602 | /cody/explanations/code_graph_context#environment-variables-for-the-embeddings-service | /cody/embeddings/manage-embeddings#environment-variables-for-the-embeddings-service | 0 | | no | +| 1607 | /cody/core-concepts/embeddings/manage-embeddings#environment-variables-for-the-embeddings-service | /cody/embeddings/manage-embeddings#environment-variables-for-the-embeddings-service | 0 | | no | +| 1612 | /cody/explanations/code_graph_context#incremental-embeddings | /cody/embeddings#incremental-embeddings | 0 | | no | +| 1616 | /cody/core-concepts/embeddings#incremental-embeddings | /cody/embeddings#incremental-embeddings | 0 | | no | +| 1620 | /cody/explanations/code_graph_context#adjust-the-minimum-time-interval-between-automatically-scheduled-embeddings | /cody/embeddings#minimum-time-interval-between-automatically-scheduled-embeddings | 0 | | no | +| 1625 | /cody/core-concepts/embeddings#minimum-time-interval-between-automatically-scheduled-embeddings | /cody/embeddings#minimum-time-interval-between-automatically-scheduled-embeddings | 0 | | no | +| 1630 | /cody/explanations/code_graph_context#using-a-third-party-embeddings-provider-directly | /cody/embeddings#third-party-embeddings-provider | 0 | | no | +| 1634 | /cody/core-concepts/embeddings#third-party-embeddings-provider | /cody/embeddings#third-party-embeddings-provider | 0 | | no | +| 1638 | /cody/explanations/code_graph_context#openai | /cody/embeddings#openai | 0 | | no | +| 1642 | /cody/core-concepts/embeddings#openai | /cody/embeddings#openai | 0 | | no | +| 1646 | /cody/explanations/code_graph_context#azure-openai-span-class-badge-badge-experimental-experimental-span | /cody/embeddings#azure-openai | 0 | | no | +| 1650 | /cody/core-concepts/embeddings#azure-openai | /cody/embeddings#azure-openai | 0 | | no | +| 1654 | /cody/explanations/code_graph_context#disabling-embeddings | /cody/embeddings#disable-embeddings | 0 | | no | +| 1658 | /cody/core-concepts/embeddings#disable-embeddings | /cody/embeddings#disable-embeddings | 0 | | no | +| 1662 | /cody/explanations/code_graph_context#configuring-the-global-policy-match-limit | /cody/embeddings/usage-and-limits#configure-global-policy-match-limit | 0 | | no | +| 1667 | /cody/core-concepts/embeddings/usage-and-limits#configure-global-policy-match-limit | /cody/embeddings/usage-and-limits#configure-global-policy-match-limit | 0 | | no | +| 1672 | /cody/explanations/code_graph_context#limitting-the-number-of-embeddings-that-can-be-generated | /cody/embeddings/usage-and-limits#limit-the-number-of-embeddings-that-can-be-generated | 0 | | no | +| 1677 | /cody/core-concepts/embeddings/usage-and-limits#limit-the-number-of-embeddings-that-can-be-generated | /cody/embeddings/usage-and-limits#limit-the-number-of-embeddings-that-can-be-generated | 0 | | no | +| 1686 | /cody/core-concepts/embeddings/embedding-index | /cody/embeddings/embedding-index | 0 | | no | +| 1690 | /cody/explanations/indexing#generate-embeddings-index | /cody/embeddings/embedding-index#generate-embeddings-index | 0 | | no | +| 1695 | /cody/core-concepts/embeddings/embedding-index#generate-embeddings-index | /cody/embeddings/embedding-index#generate-embeddings-index | 0 | | no | +| 1700 | /cody/explanations/indexing#sourcegraph-enterprise | /cody/embeddings/embedding-index#sourcegraph-enterprise | 0 | | no | +| 1704 | /cody/core-concepts/embeddings/embedding-index#sourcegraph-enterprise | /cody/embeddings/embedding-index#sourcegraph-enterprise | 0 | | no | +| 1708 | /cody/explanations/indexing#sourcegraph-com | /cody/embeddings/embedding-index#sourcegraphcom | 0 | | no | +| 1712 | /cody/core-concepts/embeddings/embedding-index#sourcegraph-com | /cody/embeddings/embedding-index#sourcegraphcom | 0 | | no | +| 1716 | /cody/explanations/indexing#enable-codebase-aware-answers | /cody/embeddings/embedding-index#enable-codebase-aware-answers | 0 | | no | +| 1721 | /cody/core-concepts/embeddings/embedding-index#enable-codebase-aware-answers | /cody/embeddings/embedding-index#enable-codebase-aware-answers | 0 | | no | +| 1726 | /cody/explanations/indexing#extension-settings | /cody/embeddings/embedding-index#cody-vs-code-extension-settings | 0 | | no | +| 1731 | /cody/core-concepts/embeddings/embedding-index#cody-vs-code-extension-settings | /cody/embeddings/embedding-index#cody-vs-code-extension-settings | 0 | | no | +| 1736 | /cody/explanations/indexing#manual-configuration | /cody/embeddings/embedding-index#manual-configuration | 0 | | no | +| 1740 | /cody/core-concepts/embeddings/embedding-index#manual-configuration | /cody/embeddings/embedding-index#manual-configuration | 0 | | no | +| 1744 | /cody/explanations/indexing#settings-json | /cody/embeddings/embedding-index#settingsjson | 0 | | no | +| 1748 | /cody/core-concepts/embeddings/embedding-index#settings-json | /cody/embeddings/embedding-index#settingsjson | 0 | | no | +| 1756 | /cody/core-concepts/embeddings/configure-embeddings#policies | /cody/embeddings/configure-embeddings#policies | 0 | | no | +| 1760 | /cody/explanations/policies#how-to-create-an-embeddings-policy | /cody/embeddings/configure-embeddings#create-an-embeddings-policy | 0 | | no | +| 1765 | /cody/core-concepts/embeddings/configure-embeddings#create-an-embeddings-policy | /cody/embeddings/configure-embeddings#create-an-embeddings-policy | 0 | | no | +| 1770 | /cody/explanations/policies#example-1 | /cody/embeddings/configure-embeddings#how-pattern-matching-works | 0 | | no | +| 1775 | /cody/core-concepts/embeddings/configure-embeddings#how-pattern-matching-works | /cody/embeddings/configure-embeddings#how-pattern-matching-works | 0 | | no | +| 1780 | /cody/explanations/policies#example-2 | /cody/embeddings/configure-embeddings#how-pattern-matching-works | 0 | | no | +| 1790 | /cody/explanations/policies#example-3 | /cody/embeddings/configure-embeddings#how-pattern-matching-works | 0 | | no | +| 1800 | /cody/explanations/policies#lifecycle-of-an-embeddings-policy | /cody/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | 0 | | no | +| 1805 | /cody/core-concepts/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | /cody/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | 0 | | no | +| 1810 | /cody/explanations/schedule_one_off_embeddings_jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | 0 | | no | +| 1815 | /cody/core-concepts/embeddings/configure-embeddings#schedule-embeddings-jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | 0 | | no | +| 1824 | /cody/explanations/cody_gateway | /cody/core-concepts/cody_gateway | 0 | 2 more β†’ /model-provider | no | +| 1832 | /cody/core-concepts/cody_clients | /cody/clients | 0 | | yes | +| 1836 | /cody/overview#getting-started | /cody/clients | 0 | | yes | +| 1844 | /cody/core-concepts/cody_gateway#using-cody-gateway-in-sourcegraph-enterprise | /cody/core-concepts/cody-gateway#using-cody-gateway-in-sourcegraph-enterprise | 0 | 1 more β†’ /model-provider | no | +| 1849 | /cody/core-concepts/cody_gateway#configuring-custom-models | /cody/core-concepts/cody-gateway#configuring-custom-models | 0 | 1 more β†’ /model-provider | no | +| 1854 | /cody/core-concepts/cody_gateway#rate-limits-and-quotas | /cody/core-concepts/cody-gateway#rate-limits-and-quotas | 0 | 1 more β†’ /model-provider | no | +| 1858 | /cody/core-concepts/cody_gateway#privacy-and-security | /cody/core-concepts/cody-gateway#privacy-and-security | 0 | 1 more β†’ /model-provider | no | +| 1877 | /code_search/tutorials/examples | /code-search/queries/examples | 0 | | yes | +| 1887 | /code_search/how-to | /code-search/working/saved_searches | 0 | 1 more β†’ /code-search/working/saved-searches | no | +| 1897 | /code_search/how-to/snippets | /code-search/working/snippets | 0 | | yes | +| 1912 | /code_search/how-to/search-jobs | /code-search/types/search-jobs | 0 | | yes | +| 1917 | /code_search/examples | /code-search/queries/examples | 0 | | yes | +| 1922 | /code_search/explanations | /code-search/working/saved_searches | 0 | 1 more β†’ /code-search/working/saved-searches | no | +| 1937 | /code_search/explanations/tips | /code-search/features | 0 | | yes | +| 1947 | /code_search/reference/queries#search-pattern-syntax | /code-search/queries#search-pattern-syntax | 0 | | yes | +| 1969 | /code_navigation/how-to/configure_data_retention#applying-data-retention-policies-globally | /code-search/code-navigation/auto_indexing#applying-indexing-policies-globally | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 1981 | /code_navigation/how-to/index_a_go_repository#automated-indexing | /code-search/code-navigation/how-to/index_a_go_repository#automated-indexing | 0 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 1987 | /code_navigation/how-to/index_a_go_repository#github-actions | /code-search/code-navigation/how-to/index_a_go_repository#github-actions | 0 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 1993 | /code_navigation/how-to/index_a_go_repository#circleci | /code-search/code-navigation/how-to/index_a_go_repository#circleci | 0 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 1999 | /code_navigation/how-to/index_a_go_repository#travis-ci | /code-search/code-navigation/how-to/index_a_go_repository#travis-ci | 0 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 2005 | /code_navigation/how-to/index_a_go_repository#manual-indexing | /code-search/code-navigation/how-to/index_a_go_repository#manual-indexing | 0 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 2017 | /code_navigation/how-to/index_a_typescript_and_javascript_repository#indexing-in-ci-using-scip-typescript-directly | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository#indexing-in-ci-using-scip-typescript-directly | 0 | 2 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 2023 | /code_navigation/how-to/index_a_typescript_and_javascript_repository#optional-scip-typescript-flags | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository#optional-scip-typescript-flags | 0 | 2 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 2029 | /code_navigation/how-to/index_a_typescript_and_javascript_repository#indexing-in-ci-using-the-scip-typescript-docker-image | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository#indexing-in-ci-using-the-scip-typescript-docker-image | 0 | 2 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 2035 | /code_navigation/how-to/index_a_typescript_and_javascript_repository#one-off-indexing-using-scip-typescript-locally | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository#one-off-indexing-using-scip-typescript-locally | 0 | 2 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | +| 2041 | /code_navigation/how-to/adding_lsif_to_many_repos | /code-search/code-navigation/precise_code_navigation | 0 | 2 more β†’ /code-navigation/precise-code-navigation | no | +| 2052 | /code_navigation/how-to/adding_lsif_to_workflows#language-specific-guides | /code-search/code-navigation/how-to/adding_lsif_to_workflows#language-specific-guides | 0 | | no | +| 2058 | /code_navigation/how-to/adding_lsif_to_workflows#benefits-of-ci-integration | /code-search/code-navigation/how-to/adding_lsif_to_workflows#benefits-of-ci-integration | 0 | | no | +| 2064 | /code_navigation/how-to/adding_lsif_to_workflows#using-indexer-containers | /code-search/code-navigation/how-to/adding_lsif_to_workflows#using-indexer-containers | 0 | | no | +| 2070 | /code_navigation/how-to/adding_lsif_to_workflows#github-action-examples | /code-search/code-navigation/how-to/adding_lsif_to_workflows#github-action-examples | 0 | | no | +| 2076 | /code_navigation/how-to/adding_lsif_to_workflows#circle-ci-examples | /code-search/code-navigation/how-to/adding_lsif_to_workflows#circle-ci-examples | 0 | | no | +| 2082 | /code_navigation/how-to/adding_lsif_to_workflows#travis-ci-examples | /code-search/code-navigation/how-to/adding_lsif_to_workflows#travis-ci-examples | 0 | | no | +| 2088 | /code_navigation/how-to/adding_lsif_to_workflows#ci-from-scratch | /code-search/code-navigation/how-to/adding_lsif_to_workflows#ci-from-scratch | 0 | | no | +| 2094 | /code_navigation/how-to/adding_lsif_to_workflows#uploading-indexes-to-sourcegraphcom | /code-search/code-navigation/how-to/adding_lsif_to_workflows#uploading-indexes-to-sourcegraphcom | 0 | | no | +| 2100 | /code_navigation/how-to/enable_auto_indexing | /code-search/code-navigation/auto_indexing#enable-auto-indexing | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2106 | /code_navigation/how-to/enable_auto_indexing#deploy-executors | /code-search/code-navigation/auto_indexing#enable-auto-indexing#deploy-executors | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2112 | /code_navigation/how-to/enable_auto_indexing#enable-index-job-scheduling | /code-search/code-navigation/auto_indexing#enable-auto-indexing#enable-index-job-scheduling | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2118 | /code_navigation/how-to/enable_auto_indexing#tune-the-index-scheduler | /code-search/code-navigation/auto_indexing#enable-auto-indexing#tune-the-index-scheduler | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2124 | /code_navigation/how-to/configure_auto_indexing | /code-search/code-navigation/auto_indexing#configure-auto-indexing | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2130 | /code_navigation/how-to/configure_auto_indexing#configure-auto-indexing-policies | /code-search/code-navigation/auto_indexing#configure-auto-indexing-policies | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2136 | /code_navigation/how-to/configure_auto_indexing#applying-indexing-policies-globally | /code-search/code-navigation/auto_indexing#applying-indexing-policies-globally | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2142 | /code_navigation/how-to/configure_auto_indexing#applying-indexing-policies-to-a-specific-repository | /code-search/code-navigation/auto_indexing#applying-indexing-policies-to-a-specific-repository | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2148 | /code_navigation/how-to/configure_auto_indexing#explicit-index-job-configuration | /code-search/code-navigation/auto_indexing#explicit-index-job-configuration | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2154 | /code_navigation/how-to/configure_auto_indexing#private-repositories-and-packages-configuration | /code-search/code-navigation/auto_indexing#private-repositories-and-packages-configuration | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2160 | /code_navigation/how-to/configure_auto_indexing#go | /code-search/code-navigation/auto_indexing#go | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2165 | /code_navigation/how-to/configure_auto_indexing#typescriptjavascript | /code-search/code-navigation/auto_indexing#typescriptjavascript | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2171 | /code_navigation/how-to/policies_resource_usage_best_practices | /code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 2 more β†’ /code-navigation/how-to/policies-resource-usage-best-practices | no | +| 2177 | /code_navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | /code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 2 more β†’ /code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | no | +| 2188 | /code_navigation/explanations/introduction_to_code_navigation#search-based-vs-precise | /code-search/code-navigation#code-navigation-types | 0 | 1 more β†’ /code-navigation | no | +| 2198 | /code_navigation/explanations/precise_code_navigation#why-are-my-results-sometimes-incorrect | /code-search/code-navigation/troubleshooting#why-are-my-results-sometimes-incorrect | 0 | 1 more β†’ /code-navigation/troubleshooting | no | +| 2209 | /code_navigation/explanations/uploads#lifecycle-of-an-upload | /code-search/code-navigation/explanations/uploads#lifecycle-of-an-upload | 0 | 1 more β†’ /code-navigation/explanations/uploads | no | +| 2215 | /code_navigation/explanations/uploads#lifecycle-of-an-upload-via-ui | /code-search/code-navigation/explanations/uploads#lifecycle-of-an-upload-via-ui | 0 | 1 more β†’ /code-navigation/explanations/uploads | no | +| 2221 | /code_navigation/explanations/uploads#repository-commit-graph | /code-search/code-navigation/explanations/uploads#repository-commit-graph | 0 | 1 more β†’ /code-navigation/explanations/uploads | no | +| 2227 | /code_navigation/explanations/search_based_code_navigation | /code-search/code-navigation/search_based_code_navigation | 0 | 2 more β†’ /code-navigation/search-based-code-navigation | no | +| 2233 | /code_navigation/explanations/search_based_code_navigation#how-does-it-work | /code-search/code-navigation/search_based_code_navigation#how-does-it-work | 0 | 2 more β†’ /code-navigation/search-based-code-navigation | no | +| 2239 | /code_navigation/explanations/search_based_code_navigation#what-configuration-settings-can-i-apply | /code-search/code-navigation/search_based_code_navigation#what-configuration-settings-can-i-apply | 0 | 2 more β†’ /code-navigation/search-based-code-navigation | no | +| 2250 | /code_navigation/explanations/features#popover | /code-search/code-navigation/features#popover | 0 | 1 more β†’ /code-navigation/features | no | +| 2254 | /code_navigation/explanations/features#go-to-definition | /code-search/code-navigation/features#go-to-definition | 0 | 1 more β†’ /code-navigation/features | no | +| 2258 | /code_navigation/explanations/features#find-references | /code-search/code-navigation/features#find-references | 0 | 1 more β†’ /code-navigation/features | no | +| 2262 | /code_navigation/explanations/features#dependency-navigation | /code-search/code-navigation/features#dependency-navigation | 0 | 1 more β†’ /code-navigation/features | no | +| 2267 | /code_navigation/explanations/features#find-implementations | /code-search/code-navigation/features#find-implementations | 0 | 1 more β†’ /code-navigation/features | no | +| 2273 | /code_navigation/explanations/features#perform-an-action | /code-search/code-navigation/features#perform-an-action | 0 | 1 more β†’ /code-navigation/features | no | +| 2278 | /code_navigation/explanations/features#symbol-search | /code-search/types/symbol | 0 | | yes | +| 2283 | /code_navigation/explanations/rockskip | /code-search/code-navigation/rockskip | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2288 | /code_navigation/explanations/rockskip#when-should-i-use-rockskip | /code-search/code-navigation/rockskip#when-should-i-use-rockskip | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2294 | /code_navigation/explanations/rockskip#how-do-i-enable-rockskip | /code-search/code-navigation/rockskip#how-do-i-enable-rockskip | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2300 | /code_navigation/explanations/rockskip#how-long-does-indexing-take | /code-search/code-navigation/rockskip#how-long-does-indexing-take | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2306 | /code_navigation/explanations/rockskip#what-resources-does-rockskip-use | /code-search/code-navigation/rockskip#what-resources-does-rockskip-use | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2312 | /code_navigation/explanations/rockskip#how-do-i-check-the-indexing-status | /code-search/code-navigation/rockskip#how-do-i-check-the-indexing-status | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2318 | /code_navigation/explanations/rockskip#when-is-indexing-triggered | /code-search/code-navigation/rockskip#when-is-indexing-triggered | 0 | 1 more β†’ /code-navigation/rockskip | no | +| 2330 | /code_navigation/explanations/writing_an_indexer#understanding-the-scip-protobuf-schema | /code-search/code-navigation/writing_an_indexer#understanding-the-scip-protobuf-schema | 0 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2336 | /code_navigation/explanations/writing_an_indexer#importing-or-generating-scip-bindings | /code-search/code-navigation/writing_an_indexer#importing-or-generating-scip-bindings | 0 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2342 | /code_navigation/explanations/writing_an_indexer#generating-minimal-index-with-occurrence-information | /code-search/code-navigation/writing_an_indexer#generating-minimal-index-with-occurrence-information | 0 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2348 | /code_navigation/explanations/writing_an_indexer#snapshot-testing-with-scip-cli | /code-search/code-navigation/writing_an_indexer#snapshot-testing-with-scip-cli | 0 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2354 | /code_navigation/explanations/writing_an_indexer#progressively-adding-support-for-language-features | /code-search/code-navigation/writing_an_indexer#progressively-adding-support-for-language-features | 0 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2365 | /code_navigation/explanations/auto_indexing#lifecycle-of-an-indexing-job | /code-search/code-navigation/auto_indexing#lifecycle-of-an-indexing-job | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2371 | /code_navigation/how-to/configure_auto_indexing#lifecycle-of-an-indexing-job | /code-search/code-navigation/auto_indexing#lifecycle-of-an-indexing-job | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2377 | /code_navigation/how-to/configure_auto_indexing#lifecycle-of-an-indexing-job-via-ui | /code-search/code-navigation/auto_indexing#lifecycle-of-an-indexing-job-via-ui | 0 | 2 more β†’ /code-navigation/auto-indexing | no | +| 2383 | /code_navigation/explanations/auto_indexing_inference | /code-search/code-navigation/explanations/auto_indexing_inference | 0 | 2 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 2389 | /code_navigation/explanations/auto_indexing_inference#go | /code-search/code-navigation/explanations/auto_indexing_inference#go | 0 | 2 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 2395 | /code_navigation/explanations/auto_indexing_inference#typescript | /code-search/code-navigation/explanations/auto_indexing_inference#typescript | 0 | 2 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 2401 | /code_navigation/explanations/auto_indexing_inference#java | /code-search/code-navigation/explanations/auto_indexing_inference#java | 0 | 2 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 2407 | /code_navigation/explanations/auto_indexing_inference#rust | /code-search/code-navigation/explanations/auto_indexing_inference#rust | 0 | 2 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 2413 | /code_navigation/references/troubleshooting | /code-search/code-navigation/troubleshooting | 0 | 1 more β†’ /code-navigation/troubleshooting | no | +| 2418 | /code_navigation/references/troubleshooting#when-are-issues-related-to-code-intelligence | /code-search/code-navigation/troubleshooting#when-are-issues-related-to-code-intelligence | 0 | 1 more β†’ /code-navigation/troubleshooting | no | +| 2424 | /code_navigation/references/troubleshooting#gathering-evidence | /code-search/code-navigation/troubleshooting#gathering-evidence | 0 | 1 more β†’ /code-navigation/troubleshooting | no | +| 2436 | /code_navigation/references/indexers#quick-reference | /code-search/code-navigation/writing_an_indexer#quick-reference | 0 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 2448 | /code_navigation/references/envvars | /code-search/code-navigation/envvars | 0 | 1 more β†’ /code-navigation/envvars | no | +| 2453 | /code_navigation/references/envvars#frontend | /code-search/code-navigation/envvars#frontend | 0 | 1 more β†’ /code-navigation/envvars | no | +| 2458 | /code_navigation/references/envvars#worker | /code-search/code-navigation/envvars#worker | 0 | 1 more β†’ /code-navigation/envvars | no | +| 2463 | /code_navigation/references/envvars#precise-code-intel-worker | /code-search/code-navigation/envvars#precise-code-intel-worker | 0 | 1 more β†’ /code-navigation/envvars | no | +| 2469 | /code_navigation/references/auto_indexing_configuration | /code-search/code-navigation/auto_indexing_configuration | 0 | 2 more β†’ /code-navigation/auto-indexing-configuration | no | +| 2474 | /code_navigation/references/auto_indexing_configuration#keys | /code-search/code-navigation/auto_indexing_configuration#keys | 0 | 2 more β†’ /code-navigation/auto-indexing-configuration | no | +| 2480 | /code_navigation/references/auto_indexing_configuration#index-job-object | /code-search/code-navigation/auto_indexing_configuration#index-job-object | 0 | 2 more β†’ /code-navigation/auto-indexing-configuration | no | +| 2486 | /code_navigation/references/auto_indexing_configuration#docker-step-object | /code-search/code-navigation/auto_indexing_configuration#docker-step-object | 0 | 2 more β†’ /code-navigation/auto-indexing-configuration | no | +| 2492 | /code_navigation/references/inference_configuration | /code-search/code-navigation/inference_configuration | 0 | 2 more β†’ /code-navigation/inference-configuration | no | +| 2504 | /batch_changes/explanations | /batch-changes/ | 0 | | yes | +| 2512 | /batch_changes/explanations/permissions_in_batch_changes#code-host-interactions-in-batch-changes | /batch-changes/permissions-in-batch-changes#code-host-interactions-in-batch-changes | 0 | | yes | +| 2517 | /batch_changes/explanations/permissions_in_batch_changes#repository-permissions-for-batch-changes | /batch-changes/permissions-in-batch-changes#repository-permissions-for-batch-changes | 0 | | yes | +| 2522 | /batch_changes/explanations/permissions_in_batch_changes#disabling-batch-changes-for-non-site-admin-users | /batch-changes/permissions-in-batch-changes#disabling-batch-changes-for-non-site-admin-users | 0 | | yes | +| 2527 | /batch_changes/explanations/batch_changes_design | /batch-changes/design | 0 | | yes | +| 2535 | /batch_changes/explanations/reexecuting_batch_specs_multiple_times | /batch-changes/reexecuting-batch-specs-multiple-times | 0 | | yes | +| 2551 | /batch_changes/tutorials/updating_go_import_statements | /batch-changes/updating-go-import-statements | 0 | | yes | +| 2555 | /batch_changes/tutorials/update_base_images_in_dockerfiles | /batch-changes/update-base-images-in-dockerfiles | 0 | | yes | +| 2559 | /batch_changes/tutorials/search_and_replace_specific_terms | /batch-changes/search-and-replace-specific-terms | 0 | | yes | +| 2571 | /batch_changes/how-tos/publishing_changesets#publishing-changesets | /batch-changes/publishing-changesets#publishing-changesets | 0 | | yes | +| 2576 | /batch_changes/how-tos/updating_a_batch_change | /batch-changes/update-a-batch-change | 0 | | yes | +| 2580 | /batch_changes/how-tos/updating_a_batch_change#removing-changesets | /batch-changes/update-a-batch-change#removing-changesets | 0 | | yes | +| 2584 | /batch_changes/how-tos/viewing_batch_changes | /batch-changes/create-a-batch-change#viewing-batch-changes | 0 | | yes | +| 2589 | /batch_changes/how-tos/viewing_batch_changes#filtering-batch-changes | /batch-changes/create-a-batch-change#filtering-batch-changes | 0 | | yes | +| 2594 | /batch_changes/how-tos/viewing_batch_changes#filtering-changesets | /batch-changes/create-a-batch-change#filtering-changesets | 0 | | yes | +| 2599 | /batch_changes/how-tos/tracking_existing_changesets | /batch-changes/tracking-existing-changesets | 0 | | yes | +| 2603 | /batch_changes/how-tos/closing_or_deleting_a_batch_change | /batch-changes/delete-a-batch-change | 0 | | yes | +| 2611 | /batch_changes/how-tos/configuring_credentials#personal-access-tokens | /batch-changes/configuring-credentials#personal-access-tokens | 0 | | yes | +| 2616 | /batch_changes/how-tos/configuring_credentials#global-service-account-tokens | /batch-changes/configuring-credentials#global-service-account-tokens | 0 | | yes | +| 2621 | /batch_changes/how-tos/handling_errored_changesets | /batch-changes/handling-errored-changesets | 0 | | yes | +| 2625 | /batch_changes/how-tos/bulk_operations_on_changesets | /batch-changes/bulk-operations-on-changesets | 0 | | yes | +| 2629 | /batch_changes/how-tos/server_side_file_mounts | /batch-changes/server-side#using-file-mounts-with-server-side-execution | 0 | | yes | +| 2634 | /batch_changes/how-tos/creating_changesets_per_project_in_monorepos | /batch-changes/creating-changesets-per-project-in-monorepos | 0 | | yes | +| 2644 | /batch_changes/how-tos/site_admin_configuration | /batch-changes/site-admin-configuration | 0 | | yes | +| 2652 | /batch_changes/references/requirements#batch-changes-effect-on-code-host-rate-limits | /batch-changes/requirements#batch-changes-effect-on-code-host-rate-limits | 0 | | yes | +| 2661 | /batch_changes/references/batch_spec_yaml_reference#name | /batch-changes/batch-spec-yaml-reference#name | 0 | | yes | +| 2665 | /batch_changes/references/batch_spec_yaml_reference#description | /batch-changes/batch-spec-yaml-reference#description | 0 | | yes | +| 2669 | /batch_changes/references/batch_spec_yaml_reference#on | /batch-changes/batch-spec-yaml-reference#on | 0 | | yes | +| 2673 | /batch_changes/references/batch_spec_yaml_reference#onrepositoriesmatchingquery | /batch-changes/batch-spec-yaml-reference#onrepositoriesmatchingquery | 0 | | yes | +| 2678 | /batch_changes/references/batch_spec_yaml_reference#onrepository | /batch-changes/batch-spec-yaml-reference#onrepository | 0 | | yes | +| 2682 | /batch_changes/references/batch_spec_yaml_reference#steps | /batch-changes/batch-spec-yaml-reference#steps | 0 | | yes | +| 2686 | /batch_changes/references/batch_spec_yaml_reference#stepsrun | /batch-changes/batch-spec-yaml-reference#stepsrun | 0 | | yes | +| 2690 | /batch_changes/references/batch_spec_yaml_reference#stepscontainer | /batch-changes/batch-spec-yaml-reference#stepscontainer | 0 | | yes | +| 2694 | /batch_changes/references/batch_spec_yaml_reference#stepsenv | /batch-changes/batch-spec-yaml-reference#stepsenv | 0 | | yes | +| 2698 | /batch_changes/references/batch_spec_yaml_reference#stepsfiles | /batch-changes/batch-spec-yaml-reference#stepsfiles | 0 | | yes | +| 2702 | /batch_changes/references/batch_spec_yaml_reference#stepsoutputs | /batch-changes/batch-spec-yaml-reference#stepsoutputs | 0 | | yes | +| 2706 | /batch_changes/references/batch_spec_yaml_reference#stepsoutputsnamevalue | /batch-changes/batch-spec-yaml-reference#stepsoutputsnamevalue | 0 | | yes | +| 2711 | /batch_changes/references/batch_spec_yaml_reference#stepsoutputsnameformat | /batch-changes/batch-spec-yaml-reference#stepsoutputsnameformat | 0 | | yes | +| 2716 | /batch_changes/references/batch_spec_yaml_reference#stepsif | /batch-changes/batch-spec-yaml-reference#stepsif | 0 | | yes | +| 2720 | /batch_changes/references/batch_spec_yaml_reference#stepsmount | /batch-changes/batch-spec-yaml-reference#stepsmount | 0 | | yes | +| 2724 | /batch_changes/references/batch_spec_yaml_reference#importchangesets | /batch-changes/batch-spec-yaml-reference#importchangesets | 0 | | yes | +| 2729 | /batch_changes/references/batch_spec_yaml_reference#importchangesetsrepository | /batch-changes/batch-spec-yaml-reference#importchangesetsrepository | 0 | | yes | +| 2734 | /batch_changes/references/batch_spec_yaml_reference#importchangesetsexternalids | /batch-changes/batch-spec-yaml-reference#importchangesetsexternalids | 0 | | yes | +| 2739 | /batch_changes/references/batch_spec_yaml_reference#changesettemplate | /batch-changes/batch-spec-yaml-reference#changesettemplate | 0 | | yes | +| 2744 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatetitle | /batch-changes/batch-spec-yaml-reference#changesettemplatetitle | 0 | | yes | +| 2749 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatebody | /batch-changes/batch-spec-yaml-reference#changesettemplatebody | 0 | | yes | +| 2754 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatebranch | /batch-changes/batch-spec-yaml-reference#changesettemplatebranch | 0 | | yes | +| 2759 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatecommit | /batch-changes/batch-spec-yaml-reference#changesettemplatecommit | 0 | | yes | +| 2764 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatecommitmessage | /batch-changes/batch-spec-yaml-reference#changesettemplatecommitmessage | 0 | | yes | +| 2769 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatecommitauthor | /batch-changes/batch-spec-yaml-reference#changesettemplatecommitauthor | 0 | | yes | +| 2774 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatepublished | /batch-changes/batch-spec-yaml-reference#changesettemplatepublished | 0 | | yes | +| 2780 | /batch_changes/references/batch_spec_yaml_reference#changesettemplatefork | /batch-changes/batch-spec-yaml-reference#changesettemplatefork | 0 | | yes | +| 2785 | /batch_changes/references/batch_spec_yaml_reference#transformchanges | /batch-changes/batch-spec-yaml-reference#transformchanges | 0 | | yes | +| 2790 | /batch_changes/references/batch_spec_yaml_reference#transformchangesgroup | /batch-changes/batch-spec-yaml-reference#transformchangesgroup | 0 | | yes | +| 2795 | /batch_changes/references/batch_spec_yaml_reference#transformchangesgroupdirectory | /batch-changes/batch-spec-yaml-reference#transformchangesgroupdirectory | 0 | | yes | +| 2800 | /batch_changes/references/batch_spec_yaml_reference#transformchangesgroupbranch | /batch-changes/batch-spec-yaml-reference#transformchangesgroupbranch | 0 | | yes | +| 2805 | /batch_changes/references/batch_spec_yaml_reference#transformchangesgrouprepository | /batch-changes/batch-spec-yaml-reference#transformchangesgrouprepository | 0 | | yes | +| 2810 | /batch_changes/references/batch_spec_yaml_reference#workspaces | /batch-changes/batch-spec-yaml-reference#workspaces | 0 | | yes | +| 2814 | /batch_changes/references/batch_spec_yaml_reference#workspacesrootatlocationof | /batch-changes/batch-spec-yaml-reference#workspacesrootatlocationof | 0 | | yes | +| 2819 | /batch_changes/references/batch_spec_yaml_reference#workspacesin | /batch-changes/batch-spec-yaml-reference#workspacesin | 0 | | yes | +| 2823 | /batch_changes/references/batch_spec_yaml_reference#workspacesonlyfetchworkspace | /batch-changes/batch-spec-yaml-reference#workspacesonlyfetchworkspace | 0 | | yes | +| 2832 | /batch_changes/references/batch_spec_templating#fields-with-template-support | /batch-changes/batch-spec-templating#fields-with-template-support | 0 | | yes | +| 2841 | /batch_changes/references/batch_spec_cheat_sheet#write-a-github-actions-workflow-that-includes-github-expression-syntax | /batch-changes/batch-spec-cheat-sheet#write-a-github-actions-workflow-that-includes-github-expression-syntax | 0 | | yes | +| 2862 | /admin/code_hosts/bitbucketserver | /integration/bitbucket_server | 0 | 1 more β†’ /integration/bitbucket-server | no | +| 3606 | /cody/clients/enable-cody-enterprise#using-a-third-party-llm-provider | /cody/clients/enable-cody-enterprise#supported-models-and-model-providers | 0 | | yes | +| 4479 | /cody/clients/install-eclipse | /cody/clients | 0 | | yes | +| 4501 | /pricing/enterprise | /pricing/plans/enterprise | 0 | | yes | +| 4509 | /pricing/billing-faqs | /pricing/faqs | 0 | | yes | +| 4524 | /admin/pricing#how-are-active-users-calculated-for-sourcegraph-cody | /cody/usage-and-pricing#billing-faqs-for-cody-enterprise | 0 | 1 more β†’ https://sourcegraph.com/pricing | no | +| 4529 | /admin/pricing#how-are-active-users-calculated-for-sourcegraph-code-search-and-code-intelligence-platform | /pricing/faqs#how-are-active-users-calculated-for-sourcegraph-code-search-and-code-intelligence-platform | 0 | | yes | +| 4542 | /analytics/self-hosted | /analytics | 0 | | yes | +| 4546 | /analytics/air-gapped | /analytics | 0 | | yes | +| 4564 | /cody/capabilities/query-types | /cody/capabilities/chat | 0 | | yes | +| 4569 | /analytics/cloud#access-tokens | /analytics/api#access-tokens | 0 | | yes | +| 4573 | /analytics/cloud#token-management-apis | /analytics/api#token-management-apis | 0 | | yes | +| 4577 | /analytics/cloud#enablement-instructions | /analytics#enablement-instructions | 0 | | yes | +| 4581 | /analytics/cloud#data-export | /analytics#data-export-and-api | 0 | | yes | +| 4585 | /analytics/cloud#token-creation | /analytics/api#token-creation | 0 | | yes | +| 4589 | /analytics/cloud#token-listing | /analytics/api#token-listing | 0 | | yes | +| 4593 | /analytics/cloud#token-revocation | /analytics/api#token-revocation | 0 | | yes | +| 4597 | /analytics/cloud#api-reference | /analytics/api#api-reference | 0 | | yes | +| 4601 | /analytics/cloud#csv-export | /analytics/api#csv-export | 0 | | yes | +| 4626 | /code_monitoring/explanations/core_concepts | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | +| 4630 | /code_monitoring/explanations | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | +| 4638 | /code_monitoring/how-tos/slack | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | +| 4650 | /code_monitoring/quickstart | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | +| 4654 | /admin/nginx | /admin/http_https_configuration | 0 | 1 more β†’ /self-hosted/http-https-configuration | no | +| 4678 | /how-to-videos/cody | /tutorials#cody | 0 | | yes | +| 4686 | /code-search/code-navigation/auto_indexing_configuration | /code-navigation/auto_indexing_configuration | 0 | 1 more β†’ /code-navigation/auto-indexing-configuration | no | +| 4694 | /code-search/code-navigation/explanations/auto_indexing_inference | /code-navigation/explanations/auto_indexing_inference | 0 | 1 more β†’ /code-navigation/explanations/auto-indexing-inference | no | +| 4698 | /code-search/code-navigation/explanations/uploads | /code-navigation/explanations/uploads | 0 | | yes | +| 4706 | /code-search/code-navigation/how-to/adding_scip_to_workflows | /code-navigation/how-to/adding_scip_to_workflows | 0 | 1 more β†’ /code-navigation/how-to/adding-scip-to-workflows | no | +| 4749 | /code-search/code-navigation/private-maven-repository-configuration | /code-navigation/private-maven-repository-configuration | 0 | | yes | +| 4761 | /code-search/code-navigation/syntactic_code_navigation | /code-navigation/syntactic_code_navigation | 0 | 1 more β†’ /code-navigation/syntactic-code-navigation | no | +| 4765 | /code-search/code-navigation/troubleshooting | /code-navigation/troubleshooting | 0 | | yes | +| 4773 | /admin/self-hosted | /self-hosted | 0 | | yes | +| 4777 | /enterprise-portal | /admin/enterprise-portal | 0 | | yes | +| 4781 | /admin/observability/outbound-request-log | /admin/outbound-request-log | 0 | | yes | +| 4789 | /admin/config/webhooks | /admin/webhooks | 0 | | yes | +| 4793 | /admin/config/webhooks/outgoing | /admin/webhooks/outgoing | 0 | | yes | +| 4809 | /admin/deploy/docker-compose/configuration | /self-hosted/deploy/docker-compose/configuration | 0 | | yes | +| 4817 | /admin/deploy/docker-compose/google_cloud | /self-hosted/deploy/docker-compose/google_cloud | 0 | 1 more β†’ /self-hosted/deploy/docker-compose/google-cloud | no | +| 4829 | /admin/deploy/docker-compose/operations | /self-hosted/deploy/docker-compose/operations | 0 | | yes | +| 4833 | /admin/deploy/docker-compose/upgrade | /self-hosted/deploy/docker-compose/upgrade | 0 | | yes | +| 4837 | /admin/deploy/docker-single-container/aws | /self-hosted/deploy | 0 | | yes | +| 4841 | /admin/deploy/docker-single-container/digitalocean | /self-hosted/deploy | 0 | | yes | +| 4845 | /admin/deploy/docker-single-container/google_cloud | /self-hosted/deploy | 0 | | yes | +| 4857 | /admin/deploy/instance-size | /self-hosted/deploy/instance-size | 0 | | yes | +| 4861 | /admin/deploy/kubernetes/azure | /self-hosted/deploy/kubernetes/azure | 0 | | yes | +| 4869 | /admin/deploy/kubernetes/eks | /self-hosted/deploy/kubernetes/eks | 0 | | yes | +| 4877 | /admin/deploy/kubernetes/kustomize | /self-hosted/deploy/kubernetes/kustomize | 0 | | yes | +| 4881 | /admin/deploy/kubernetes/kustomize/eks | /self-hosted/deploy/kubernetes/kustomize/eks | 0 | | yes | +| 4885 | /admin/deploy/kubernetes/kustomize/gke | /self-hosted/deploy/kubernetes/kustomize/gke | 0 | | yes | +| 4909 | /admin/deploy/kubernetes/upgrade | /self-hosted/deploy/kubernetes/upgrade | 0 | | yes | +| 4913 | /admin/deploy/machine-images/aws-ami | /self-hosted/deploy/machine-images/aws-ami | 0 | | yes | +| 4921 | /admin/deploy/machine-images/gce | /self-hosted/deploy/machine-images/gce | 0 | | yes | +| 4945 | /admin/deploy/single-node | /self-hosted/deploy/single-node | 0 | | yes | +| 4949 | /admin/deploy/single-node/script | /self-hosted/deploy/single-node/script | 0 | | yes | +| 4969 | /admin/executors/deploy_executors | /self-hosted/executors | 0 | | yes | +| 4977 | /admin/executors/deploy_executors_binary_offline | /self-hosted/executors/deploy_executors_binary_offline | 0 | 1 more β†’ /self-hosted/executors/deploy-executors-binary-offline | no | +| 4985 | /admin/executors/deploy_executors_docker | /self-hosted/executors/deploy_executors_docker | 0 | 1 more β†’ /self-hosted/executors/deploy-executors-docker | no | +| 4993 | /admin/executors/deploy_executors_terraform | /self-hosted/executors/deploy_executors_terraform | 0 | 1 more β†’ /self-hosted/executors/deploy-executors-terraform | no | +| 4997 | /admin/executors/executors_config | /self-hosted/executors/executors_config | 0 | 1 more β†’ /self-hosted/executors/executors-config | no | +| 5009 | /admin/external_services | /self-hosted/external_services | 0 | 1 more β†’ /self-hosted/external-services | no | +| 5021 | /admin/external_services/redis | /self-hosted/external_services/redis | 0 | | no | +| 5025 | /admin/how-to/blobstore_debugging | /self-hosted/how-to/blobstore_debugging | 0 | 1 more β†’ /self-hosted/how-to/blobstore-debugging | no | +| 5029 | /admin/how-to/blobstore_update_notes | /self-hosted/how-to/blobstore_update_notes | 0 | 1 more β†’ /self-hosted/how-to/blobstore-update-notes | no | +| 5033 | /admin/how-to/clear_codeintel_data | /self-hosted/how-to/clear_codeintel_data | 0 | 1 more β†’ /self-hosted/how-to/clear-codeintel-data | no | +| 5045 | /admin/how-to/monitoring-guide | /self-hosted/how-to/monitoring-guide | 0 | | yes | +| 5049 | /admin/how-to/postgres14-index-corruption | /self-hosted/how-to/postgres14-index-corruption | 0 | | yes | +| 5053 | /admin/how-to/postgres_12_to_16_drift | /self-hosted/how-to/postgres_12_to_16_drift | 0 | 1 more β†’ /self-hosted/how-to/postgres-12-to-16-drift | no | +| 5057 | /admin/how-to/precise-code-intel-worker-crashloopbackoff | /self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 0 | | yes | +| 5062 | /admin/how-to/privileged_migrations | /self-hosted/how-to/privileged_migrations | 0 | 1 more β†’ /self-hosted/how-to/privileged-migrations | no | +| 5066 | /admin/how-to/rebuild-corrupt-postgres-indexes | /self-hosted/how-to/rebuild-corrupt-postgres-indexes | 0 | | yes | +| 5078 | /admin/how-to/run-psql | /self-hosted/how-to/run-psql | 0 | | yes | +| 5082 | /admin/how-to/setup-https | /self-hosted/how-to/setup-https | 0 | | yes | +| 5086 | /admin/how-to/troubleshoot-pod-eviction | /self-hosted/how-to/troubleshoot-pod-eviction | 0 | | yes | +| 5106 | /admin/observability/.gitattributes | /self-hosted/observability/.gitattributes | 0 | | no | +| 5126 | /admin/observability/health_checks | /self-hosted/observability/health_checks | 0 | 1 more β†’ /self-hosted/observability/health-checks | no | +| 5134 | /admin/observability/logs | /self-hosted/observability/logs | 0 | | yes | +| 5166 | /admin/postgresql_collation_version_mismatch_resolution | /self-hosted/postgresql_collation_version_mismatch_resolution | 0 | 1 more β†’ /self-hosted/postgresql-collation-version-mismatch-resolution | no | +| 5171 | /admin/pprof | /self-hosted/pprof | 0 | | yes | +| 5175 | /admin/config/private-network | /self-hosted/private-network | 0 | | yes | +| 5179 | /admin/config/restore | /self-hosted/restore | 0 | | yes | +| 5183 | /admin/sourcegraph-nginx-mermaid | /self-hosted/sourcegraph-nginx-mermaid | 0 | | yes | +| 5191 | /admin/updates/automatic | /self-hosted/updates/automatic | 0 | | yes | +| 5195 | /admin/updates/docker_compose | https://sourcegraph.com/changelog/self-hosted/docker-compose | 0 | | yes | +| 5212 | /admin/updates/migrator | /self-hosted/updates/migrator | 0 | | yes | +| 5220 | /admin/updates/migrator/schema-drift | /self-hosted/updates/migrator/schema-drift | 0 | | yes | +| 5228 | /admin/updates/migrator/upgrading-early-versions | /self-hosted/updates/migrator/upgrading-early-versions | 0 | | yes | +| 5232 | /admin/updates/pure_docker | /self-hosted/deploy/docker-compose/upgrade | 0 | | yes | +| 5236 | /admin/updates/server | /self-hosted/deploy | 0 | | yes | +| 5240 | /admin/url | /self-hosted/url | 0 | | yes | +| 5244 | /admin/validation | /self-hosted/validation | 0 | | yes | +| 5269 | /admin/auth/saml/azure_ad | /admin/auth/saml/azure-ad | 0 | | yes | +| 5273 | /admin/auth/saml/jump_cloud | /admin/auth/saml/jump-cloud | 0 | | yes | +| 5277 | /admin/auth/saml/microsoft_adfs | /admin/auth/saml/microsoft-adfs | 0 | | yes | +| 5281 | /admin/auth/saml/one_login | /admin/auth/saml/one-login | 0 | | yes | +| 5293 | /admin/code_hosts/aws_codecommit | /admin/code-hosts/aws-codecommit | 0 | | yes | +| 5297 | /admin/code_hosts/azuredevops | /admin/code-hosts/azuredevops | 0 | | yes | +| 5301 | /admin/code_hosts/bitbucket_cloud | /admin/code-hosts/bitbucket-cloud | 0 | | yes | +| 5309 | /admin/code_hosts/gerrit | /admin/code-hosts/gerrit | 0 | | yes | +| 5321 | /admin/code_hosts/gitolite | /admin/code-hosts/gitolite | 0 | | yes | +| 5325 | /admin/code_hosts/non-git | /admin/code-hosts/non-git | 0 | | yes | +| 5329 | /admin/code_hosts/other | /admin/code-hosts/other | 0 | | yes | +| 5333 | /admin/code_hosts/phabricator | /admin/code-hosts/phabricator | 0 | | yes | +| 5341 | /admin/code_hosts/src_serve_git | /admin/code-hosts/src-serve-git | 0 | | yes | +| 5357 | /admin/enterprise_getting_started_guide | /admin/enterprise-getting-started-guide | 0 | 1 more β†’ /admin | no | +| 5361 | /admin/executors/executor_secrets | /admin/executors/executor-secrets | 0 | | yes | +| 5365 | /admin/how-to/internal_github_repos | /admin/how-to/internal-github-repos | 0 | | yes | +| 5377 | /admin/oauth_apps | /admin/oauth-apps | 0 | | yes | +| 5381 | /admin/repo/git_config | /admin/repo/git-config | 0 | | yes | +| 5389 | /admin/security_event_logs | /admin/security-event-logs | 0 | | yes | +| 5401 | /admin/user_surveys | /admin/user-surveys | 0 | | yes | +| 5413 | /cli/how-tos/fetch_sboms | /cli/how-tos/fetch-sboms | 0 | | yes | +| 5417 | /cli/how-tos/managing_access_tokens | /cli/how-tos/managing-access-tokens | 0 | | yes | +| 5421 | /cli/how-tos/revoking_an_access_token | /cli/how-tos/revoking-an-access-token | 0 | | yes | +| 5425 | /cli/how-tos/verify_container_signatures | /cli/how-tos/verify-container-signatures | 0 | | yes | +| 5429 | /cloud/logpush_gcs | /cloud/logpush-gcs | 0 | | yes | +| 5433 | /cloud/logpush_s3 | /cloud/logpush-s3 | 0 | | yes | +| 5437 | /cloud/private_connectivity_aws | /cloud/private-connectivity-aws | 0 | | yes | +| 5441 | /cloud/private_connectivity_gcp | /cloud/private-connectivity-gcp | 0 | | yes | +| 5449 | /cloud/private_connectivity_sourcegraph_connect | /cloud/private-connectivity-sourcegraph-connect | 0 | | yes | +| 5461 | /code_insights/explanations | /code-insights/explanations | 0 | | yes | +| 5470 | /code_insights/explanations/automatically_generated_data_series | /code-insights/explanations/automatically-generated-data-series | 0 | | yes | +| 5488 | /code_insights/explanations/search_results_aggregations | /code-insights/explanations/search-results-aggregations | 0 | | yes | +| 5492 | /code_insights/explanations/viewing_code_insights | /code-insights/explanations/viewing-code-insights | 0 | | yes | +| 5496 | /code_insights/how-tos | /code-insights/how-tos | 0 | | yes | +| 5505 | /code_insights/how-tos/filtering_an_insight | /code-insights/how-tos/filtering-an-insight | 0 | | yes | +| 5509 | /code_insights/language_insight_quickstart | /code-insights/language-insight-quickstart | 0 | | yes | +| 5513 | /code_insights/references | /code-insights/references | 0 | | yes | +| 5517 | /code_insights/references/common_reasons_code_insights_may_not_match_search_results | /code-insights/references/common-reasons-code-insights-may-not-match-search-results | 0 | | yes | +| 5530 | /code_insights/references/repository_scope | /code-insights/references/repository-scope | 0 | | yes | +| 5550 | /code-navigation/explanations/auto_indexing_inference | /code-navigation/explanations/auto-indexing-inference | 0 | | yes | +| 5558 | /code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | /code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 0 | | yes | +| 5572 | /code-navigation/how-to/index_other_languages | /code-navigation/how-to/index-other-languages | 0 | | yes | +| 5576 | /code-navigation/how-to/policies_resource_usage_best_practices | /code-navigation/how-to/policies-resource-usage-best-practices | 0 | | yes | +| 5593 | /code-navigation/syntactic_code_navigation | /code-navigation/syntactic-code-navigation | 0 | | yes | +| 5601 | /code-search/how-to/create_search_context_graphql | /code-search/how-to/create-search-context-graphql | 0 | 1 more β†’ /api | no | +| 5613 | /code-search/working/search_filters | /code-search/working/search-filters | 0 | | yes | +| 5621 | /dotcom/indexing_open_source_code | /dotcom/indexing-open-source-code | 0 | | yes | +| 5625 | /integration/aws_codecommit | /integration/aws-codecommit | 0 | | yes | +| 5629 | /integration/bitbucket_cloud | /integration/bitbucket-cloud | 0 | | yes | +| 5650 | /integration/migrating_firefox_extension | /integration/migrating-firefox-extension | 0 | | yes | +| 5658 | /own/assigned_ownership | /own/assigned-ownership | 0 | 1 more β†’ /code-ownership | no | +| 5670 | /own/configuration_reference | /own/configuration-reference | 0 | 1 more β†’ /code-ownership | no | +| 5678 | /self-hosted/deploy/docker-compose/google_cloud | /self-hosted/deploy/docker-compose/google-cloud | 0 | | yes | +| 5682 | /self-hosted/deploy/docker-single-container/google_cloud | /self-hosted/deploy | 0 | | yes | +| 5694 | /self-hosted/deployment_best_practices | /self-hosted/deployment-best-practices | 0 | | yes | +| 5702 | /self-hosted/executors/deploy-executors | /self-hosted/executors | 0 | | yes | +| 5710 | /self-hosted/executors/deploy_executors_binary_offline | /self-hosted/executors/deploy-executors-binary-offline | 0 | | yes | +| 5714 | /self-hosted/executors/deploy_executors_dind | /self-hosted/executors/deploy-executors-dind | 0 | | yes | +| 5718 | /self-hosted/executors/deploy_executors_docker | /self-hosted/executors/deploy-executors-docker | 0 | | yes | +| 5730 | /self-hosted/executors/executors_config | /self-hosted/executors/executors-config | 0 | | yes | +| 5746 | /self-hosted/how-to/blobstore_debugging | /self-hosted/how-to/blobstore-debugging | 0 | | yes | +| 5754 | /self-hosted/how-to/clear_codeintel_data | /self-hosted/how-to/clear-codeintel-data | 0 | | yes | +| 5766 | /self-hosted/how-to/postgres_12_to_16_drift | /self-hosted/how-to/postgres-12-to-16-drift | 0 | | yes | +| 5770 | /self-hosted/how-to/privileged_migrations | /self-hosted/how-to/privileged-migrations | 0 | | yes | +| 5774 | /self-hosted/how-to/redis_configmap | /self-hosted/how-to/redis-configmap | 0 | | yes | +| 5778 | /self-hosted/how-to/rollback_database | /self-hosted/how-to/rollback-database | 0 | | yes | +| 5782 | /self-hosted/how-to/unfinished_migration | /self-hosted/how-to/unfinished-migration | 0 | | yes | +| 5786 | /self-hosted/http_https_configuration | /self-hosted/http-https-configuration | 0 | | yes | +| 5790 | /self-hosted/observability/alerting_custom_consumption | /self-hosted/observability/alerting-custom-consumption | 0 | | yes | +| 5794 | /self-hosted/observability/health_checks | /self-hosted/observability/health-checks | 0 | | yes | +| 5802 | /self-hosted/postgresql_collation_version_mismatch_resolution | /self-hosted/postgresql-collation-version-mismatch-resolution | 0 | | yes | +| 5807 | /self-hosted/ssl_https_self_signed_cert_nginx | /self-hosted/ssl-https-self-signed-cert-nginx | 0 | | yes | +| 5811 | /self-hosted/updates/docker_compose | https://sourcegraph.com/changelog/self-hosted/docker-compose | 0 | | yes | +| 5820 | /admin/enterprise-getting-started-guide | /admin | 0 | | yes | +| 5832 | /admin/beta-and-experimental-features | /beta-and-experimental | 0 | | yes | +| 5848 | /self-hosted/updates/kubernetes | https://sourcegraph.com/changelog/self-hosted/kubernetes | 0 | | yes | +| 5852 | /self-hosted/updates/server | /self-hosted/deploy | 0 | | yes | +| 5865 | /own/configuration-reference | /code-ownership | 0 | | yes | +| 5885 | /api/graphql/managing-code-insights-with-api | /api/graphql | 0 | | yes | +| 5893 | /code-search/how-to/create-search-context-graphql | /api | 0 | | yes | +| 4164 | /code_navigation/explanations/precise_code_navigation | /code-search/code-navigation/precise_code_navigation | shadowed by line 2193 | | no | +| 4048 | /code_search/reference/language | /code-search/queries/language | shadowed by line 1952 | | yes | +| 4038 | /code_search/reference/queries | /code-search/queries | shadowed by line 1942 | | yes | +| 3396 | /code_intelligence | /code_navigation | shadowed by line 1290 | | no | +| 4054 | /code_navigation | /code-search/code-navigation | shadowed by line 1958 | | no | +| 4400 | /code_navigation/references/indexers | /code-search/code-navigation/writing_an_indexer#sourcegraph-recommended-indexers | shadowed by line 2430 | | no | +| 3970 | /code_search | /code-search | shadowed by line 1869 | | yes | +| 3234 | /code_intelligence/explanations/precise_code_intelligence | /code_navigation/explanations/precise_code_navigation | shadowed by line 1128 | | no | +| 3482 | /cody/overview | /cody/ | shadowed by line 1376 | | yes | +| 3105 | /admin/install/kubernetes | /admin/deploy/kubernetes | shadowed by line 999 | | no | +| 3221 | /code_intelligence/explanations/auto_indexing | /code_navigation/explanations/auto_indexing | shadowed by line 1115 | | no | +| 3213 | /code_intelligence/explanations/writing_an_indexer | /code_navigation/explanations/writing_an_indexer | shadowed by line 1107 | | no | +| 3177 | /admin/install/docker | /self-hosted/deploy | shadowed by line 1071 | | yes | +| 3963 | /cody/custom-commands | /cody/capabilities/commands#custom-commands | shadowed by line 1862 | | no | +| 4330 | /code_navigation/explanations/auto_indexing | /code-search/code-navigation/auto_indexing | shadowed by line 2360 | | no | +| 3085 | /admin/install | /admin/deploy | shadowed by line 979 | | no | +| 4107 | /code_navigation/how-to/index_a_typescript_and_javascript_repository | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | shadowed by line 2011 | | no | +| 4294 | /code_navigation/explanations/writing_an_indexer | /code-search/code-navigation/writing_an_indexer#writing-an-indexer | shadowed by line 2324 | | no | +| 2944 | /campaigns/references/campaign_spec_yaml_reference | /batch_changes/references/batch_spec_yaml_reference | shadowed by line 838 | | no | +| 3037 | /campaigns | /batch_changes | shadowed by line 931 | | no | +| 3301 | /code_intelligence/how-to/index_a_cpp_repository | https://sourcegraph.com/github.com/sourcegraph/scip-clang/-/blob/README.md#usage | shadowed by line 1195 | | no | +| 3494 | /cody/overview/install-neovim | /cody/clients/install-neovim | shadowed by line 1388 | | yes | +| 3306 | /code_intelligence/how-to/index_a_go_repository | /code_navigation/how-to/index_a_go_repository | shadowed by line 1200 | | no | +| 3113 | /admin/install/kubernetes/operations | /admin/deploy/kubernetes/operations | shadowed by line 1007 | | no | +| 4215 | /code_navigation/explanations/features | /code-search/code-navigation/features | shadowed by line 2245 | | no | +| 3310 | /code_intelligence/how-to/index_a_typescript_and_javascript_repository | /code_navigation/how-to/index_a_typescript_and_javascript_repository | shadowed by line 1204 | | no | +| 3993 | /code_search/how-to/saved_searches | /code-search/working/saved_searches | shadowed by line 1892 | | no | +| 3145 | /admin/install/docker-compose | /admin/deploy/docker-compose | shadowed by line 1039 | | no | +| 3169 | /admin/install/docker/digitalocean | /self-hosted/deploy | shadowed by line 1063 | | yes | +| 3522 | /cody/explanations/enabling_cody_enterprise | /cody/clients/enable-cody-enterprise | shadowed by line 1416 | | yes | +| 1828 | /cody/explanations/code_graph_context | /cody/core-concepts/code-graph | shadowed by line 1820 | | yes | +| 3181 | /admin/install/managed | /admin/deploy/managed | shadowed by line 1075 | | no | +| 3376 | /code_intelligence/references/indexers | /code_navigation/references/indexers | shadowed by line 1270 | | no | +| 3921 | /cody/explanations/code_graph_context | /cody/core-concepts/code-graph | shadowed by line 1820 | | yes | +| 3929 | /cody/explanations/code_graph_context | /cody/core-concepts/code-graph | shadowed by line 1820 | | yes | +| 4003 | /code_search/how-to/search_contexts | /code-search/working/search_contexts | shadowed by line 1902 | | no | +| 4008 | /code_search/how-to/exhaustive | /code-search/types/exhaustive | shadowed by line 1907 | | no | +| 4028 | /code_search/explanations/search_details | /code-search/features | shadowed by line 1932 | | yes | +| 4154 | /code_navigation/explanations/introduction_to_code_navigation | /code-search/code-navigation | shadowed by line 2183 | | no | +| 2854 | /admin/auth/saml_with_microsoft_adfs | /admin/auth/saml/microsoft_adfs | shadowed by line 333 | | no | +| 2901 | /integration/google_gsuite | /integration/google_workspace | shadowed by line 380 | | no | +| 3061 | /cli/references/campaigns/validate | /cli/references/batch/validate | shadowed by line 955 | | yes | +| 3125 | /admin/install/kubernetes/update | /admin/deploy/kubernetes/update | shadowed by line 1019 | | no | +| 3133 | /admin/install/docker-compose/aws | /admin/deploy/docker-compose/aws | shadowed by line 1027 | | no | +| 3149 | /admin/install/docker-compose/migrate | /admin/deploy/docker-compose/migrate | shadowed by line 1043 | | no | +| 3205 | /admin/observability/alert_solutions | /admin/observability/alerts | shadowed by line 1099 | | no | +| 3225 | /code_intelligence/explanations/features | /code_navigation/explanations/features | shadowed by line 1119 | | no | +| 3251 | /code_intelligence/explanations | /code_navigation/explanations | shadowed by line 1145 | | no | +| 3315 | /code_intelligence/how-to/index_other_languages | /code_navigation/how-to/index_other_languages | shadowed by line 1209 | | no | +| 3655 | /cody/core-concepts/embeddings/configure-embeddings | /cody/embeddings/configure-embeddings | shadowed by line 1554 | | no | +| 3974 | /code_search/tutorials | /code-search/working/saved_searches | shadowed by line 1873 | | no | +| 4059 | /code_navigation/how-to/configure_data_retention | /code-search/code-navigation/auto_indexing#configure-auto-indexing-policies | shadowed by line 1963 | | no | +| 4071 | /code_navigation/how-to/index_a_go_repository | /code-search/code-navigation/how-to/index_a_go_repository | shadowed by line 1975 | | no | +| 4130 | /code_navigation/how-to/adding_lsif_to_workflows | /code-search/code-navigation/how-to/adding_lsif_to_workflows | shadowed by line 2046 | | no | +| 4174 | /code_navigation/explanations/uploads | /code-search/code-navigation/explanations/uploads | shadowed by line 2204 | | no | +| 4412 | /code_navigation/references/precise_examples | /code-search/code-navigation/precise_code_navigation#precise-navigation-examples | shadowed by line 2442 | | no | +| 5098 | /admin/http_https_configuration | /self-hosted/http_https_configuration | shadowed by line 12 | | no | +| 2858 | /admin/config/critical_config | /admin/migration/3_11 | shadowed by line 337 | | no | +| 3093 | /admin/install/kubernetes/configure | /admin/deploy/kubernetes/configure | shadowed by line 987 | | no | +| 3121 | /admin/install/kubernetes/troubleshoot | /admin/deploy/kubernetes/troubleshoot | shadowed by line 1015 | | no | +| 3165 | /admin/install/docker/aws | /self-hosted/deploy | shadowed by line 1059 | | yes | +| 3173 | /admin/install/docker/google_cloud | /self-hosted/deploy | shadowed by line 1067 | | yes | +| 3238 | /code_intelligence/explanations/rockskip | /code_navigation/explanations/rockskip | shadowed by line 1132 | | no | +| 3506 | /app | /cody/clients/app | shadowed by line 1400 | | no | +| 3518 | /cody/overview/cody-with-sourcegraph | /cody/clients/cody-with-sourcegraph | shadowed by line 1412 | | yes | +| 3783 | /cody/explanations/indexing | /cody/embeddings/embedding-index | shadowed by line 1682 | | no | +| 3853 | /cody/explanations/policies | /cody/embeddings/configure-embeddings#policies | shadowed by line 1752 | | no | +| 3941 | /cody/core-concepts/cody_gateway | /cody/core-concepts/cody-gateway | shadowed by line 1840 | | no | +| 3983 | /code_search/tutorials/search_subexpressions | /code-search/working/search_subexpressions | shadowed by line 1882 | | no | +| 4023 | /code_search/explanations/features | /code-search/features | shadowed by line 1927 | | yes | +| 408 | /dev/architecture/architecture.dot | /dev/background-information/architecture/architecture.dot | shadowed by line 389 | | no | +| 1087 | /admin/install/cluster.md | /admin/deploy | shadowed by line 345 | | no | +| 1314 | /cody/capabilities#code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1306 | | yes | +| 1372 | /cody/capabilities#code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1306 | | yes | +| 1454 | /cody/overview/install-jetbrains | /cody/clients/install-jetbrains | shadowed by line 1396 | | yes | +| 1480 | /cody/overview/install-jetbrains | /cody/clients/install-jetbrains | shadowed by line 1396 | | yes | +| 1488 | /cody/overview/install-vscode | /cody/clients/install-vscode | shadowed by line 1384 | | yes | +| 1785 | /cody/core-concepts/embeddings/configure-embeddings#how-pattern-matching-works | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1775 | | no | +| 1795 | /cody/core-concepts/embeddings/configure-embeddings#how-pattern-matching-works | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1775 | | no | +| 2866 | /admin/install/cluster.md | /admin/deploy/index.md | shadowed by line 345 | | no | +| 2870 | /admin/monitoring | /admin/observability | shadowed by line 349 | | no | +| 2874 | /admin/monitoring/reporting_search_timeouts | /admin/observability/troubleshooting#scenario-search-timeouts | shadowed by line 353 | | no | +| 2879 | /admin/monitoring/metrics_reference | /admin/observability/metrics_guide | shadowed by line 358 | | no | +| 2883 | /admin/monitoring/slack_alert_channel | /admin/observability/alerting#set-up-alerts-in-grafana | shadowed by line 362 | | no | +| 2887 | /@v5.3.0/admin/observability/alerts | https://docs.sourcegraph.com/@v5.3.0/admin/observability/alerts | shadowed by line 366 | | | +| 2892 | /@v5.3.0/admin/observability/dashboards | https://docs.sourcegraph.com/@v5.3.0/admin/observability/dashboards | shadowed by line 371 | | | +| 2897 | /admin/monitoring_and_tracing | /admin/observability | shadowed by line 376 | | no | +| 2905 | /campaigns/explanations/how_src_executes_a_campaign_spec | /batch_changes/explanations/how_src_executes_a_batch_spec | shadowed by line 799 | | no | +| 2910 | /campaigns/explanations/reexecuting_campaign_specs_multiple_times | /batch_changes/explanations/reexecuting_batch_specs_multiple_times | shadowed by line 804 | | no | +| 2915 | /campaigns/explanations/permissions_in_batch_changes | /batch_changes/explanations/permissions_in_batch_changes | shadowed by line 809 | | no | +| 2919 | /campaigns/explanations/introduction_to_batch_changes | /batch_changes/explanations/introduction_to_batch_changes | shadowed by line 813 | | no | +| 2924 | /campaigns/explanations/batch_changes_design | /batch_changes/explanations/batch_changes_design | shadowed by line 818 | | no | +| 2928 | /campaigns/explanations | /batch_changes/explanations | shadowed by line 822 | | no | +| 2932 | /campaigns/references/requirements | /batch_changes/references/requirements | shadowed by line 826 | | no | +| 2936 | /campaigns/references/troubleshooting | /batch_changes/references/troubleshooting | shadowed by line 830 | | no | +| 2940 | /campaigns/references/name-change | /batch_changes/references/name-change | shadowed by line 834 | | no | +| 2948 | /campaigns/references/faq | /batch_changes/references/faq | shadowed by line 842 | | no | +| 2952 | /campaigns/references/campaign_spec_templating | /batch_changes/references/batch_spec_templating | shadowed by line 846 | | no | +| 2956 | /campaigns/references | /batch_changes/references | shadowed by line 850 | | no | +| 2960 | /campaigns/tutorials/update_base_images_in_dockerfiles | /batch_changes/tutorials/update_base_images_in_dockerfiles | shadowed by line 854 | | no | +| 2965 | /campaigns/tutorials/updating_go_import_statements | /batch_changes/tutorials/updating_go_import_statements | shadowed by line 859 | | no | +| 2969 | /campaigns/tutorials/refactor_go_comby | /batch_changes/tutorials/refactor_go_comby | shadowed by line 863 | | no | +| 2973 | /campaigns/tutorials/search_and_replace_specific_terms | /batch_changes/tutorials/search_and_replace_specific_terms | shadowed by line 867 | | no | +| 2978 | /campaigns/tutorials | /batch_changes/tutorials | shadowed by line 872 | | no | +| 2982 | /campaigns/how-tos/creating_changesets_per_project_in_monorepos | /batch_changes/how-tos/creating_changesets_per_project_in_monorepos | shadowed by line 876 | | no | +| 2987 | /campaigns/how-tos/handling_errored_changesets | /batch_changes/how-tos/handling_errored_changesets | shadowed by line 881 | | no | +| 2991 | /campaigns/how-tos/creating_multiple_changesets_in_large_repositories | /batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | shadowed by line 885 | | no | +| 2996 | /campaigns/how-tos/site_admin_configuration | /batch_changes/how-tos/site_admin_configuration | shadowed by line 890 | | no | +| 3000 | /campaigns/how-tos/publishing_changesets | /batch_changes/how-tos/publishing_changesets | shadowed by line 894 | | no | +| 3004 | /campaigns/how-tos/viewing_batch_changes | /batch_changes/how-tos/viewing_batch_changes | shadowed by line 898 | | no | +| 3008 | /campaigns/how-tos/updating_a_batch_change | /batch_changes/how-tos/updating_a_batch_change | shadowed by line 902 | | no | +| 3012 | /campaigns/how-tos/configuring_user_credentials | /batch_changes/how-tos/configuring_user_credentials | shadowed by line 906 | | no | +| 3016 | /campaigns/how-tos/closing_or_deleting_a_batch_change | /batch_changes/how-tos/closing_or_deleting_a_batch_change | shadowed by line 910 | | no | +| 3021 | /campaigns/how-tos/creating_a_batch_change | /batch_changes/how-tos/creating_a_batch_change | shadowed by line 915 | | no | +| 3025 | /campaigns/how-tos/tracking_existing_changesets | /batch_changes/how-tos/tracking_existing_changesets | shadowed by line 919 | | no | +| 3029 | /campaigns/how-tos | /batch_changes/how-tos | shadowed by line 923 | | no | +| 3033 | /campaigns/quickstart | /batch_changes/quickstart | shadowed by line 927 | | no | +| 3041 | /cli/references/campaigns/apply | /cli/references/batch/apply | shadowed by line 935 | | yes | +| 3045 | /cli/references/campaigns/index | /cli/references/batch/index | shadowed by line 939 | | no | +| 3049 | /cli/references/campaigns/new | /cli/references/batch/new | shadowed by line 943 | | yes | +| 3053 | /cli/references/campaigns/preview | /cli/references/batch/preview | shadowed by line 947 | | yes | +| 3057 | /cli/references/campaigns/repositories | /cli/references/batch/repositories | shadowed by line 951 | | yes | +| 3065 | /cli/references/campaigns | /cli/references/batch | shadowed by line 959 | | yes | +| 3069 | /batch_changes/how-tos/configuring_user_credentials | /batch_changes/how-tos/configuring_credentials | shadowed by line 963 | | no | +| 3073 | /batch-changes/references/troubleshooting | /batch_changes/references/troubleshooting | shadowed by line 967 | | no | +| 3077 | /dev/background-information/continuous_integration | /dev/background-information/ci | shadowed by line 971 | | no | +| 3081 | /dev/how-to/add_and_use_logging | /dev/how-to/add_logging | shadowed by line 975 | | no | +| 3089 | /admin/install/kubernetes/azure | /admin/deploy/kubernetes | shadowed by line 983 | | no | +| 3097 | /admin/install/kubernetes/eks | /admin/deploy/kubernetes/eks | shadowed by line 991 | | no | +| 3101 | /admin/install/kubernetes/helm | /admin/deploy/kubernetes/helm | shadowed by line 995 | | no | +| 3109 | /admin/install/kubernetes/kustomize | /admin/deploy/kubernetes/kustomize | shadowed by line 1003 | | no | +| 3117 | /admin/install/kubernetes/scale | /admin/deploy/kubernetes/scale | shadowed by line 1011 | | no | +| 3129 | /admin/install/kubernetes/overlays | /admin/deploy/kubernetes/configure | shadowed by line 1023 | | no | +| 3137 | /admin/install/docker-compose/digitalocean | /admin/deploy/docker-compose/digitalocean | shadowed by line 1031 | | no | +| 3141 | /admin/install/docker-compose/google_cloud | /admin/deploy/docker-compose/google_cloud | shadowed by line 1035 | | no | +| 3153 | /admin/install/docker-compose/operations | /admin/deploy/docker-compose#operations | shadowed by line 1047 | | no | +| 3157 | /admin/install/docker-compose/update | /admin/deploy/docker-compose#upgrade | shadowed by line 1051 | | no | +| 3161 | /admin/install/docker-compose/configure | /admin/deploy/docker-compose#configure | shadowed by line 1055 | | no | +| 3185 | /admin/install/migrate-backup | /admin/deploy/migrate-backup | shadowed by line 1079 | | no | +| 3189 | /admin/install/resource_estimator | /admin/deploy/resource_estimator | shadowed by line 1083 | | no | +| 3193 | /admin/install/cluster.md | /admin/deploy | shadowed by line 345 | | no | +| 3197 | /admin/deploy/cluster | /admin/deploy | shadowed by line 1091 | | no | +| 3201 | /admin/deploy/docker | /self-hosted/deploy | shadowed by line 1095 | | yes | +| 3209 | /admin/deploy/managed | /cloud | shadowed by line 1103 | | yes | +| 3217 | /code_intelligence/explanations/auto_indexing_inference | /code_navigation/explanations/auto_indexing_inference | shadowed by line 1111 | | no | +| 3229 | /code_intelligence/explanations/introduction_to_code_intelligence | /code_navigation/explanations/introduction_to_code_navigation | shadowed by line 1123 | | no | +| 3242 | /code_intelligence/explanations/search_based_code_intelligence | /code_navigation/explanations/search_based_code_navigation | shadowed by line 1136 | | no | +| 3247 | /code_intelligence/explanations/uploads | /code_navigation/explanations/uploads | shadowed by line 1141 | | no | +| 3255 | /code_intelligence/explanations/diagrams | /code_navigation/explanations/diagrams | shadowed by line 1149 | | no | +| 3259 | /code_intelligence/explanations/diagrams/index-states.mermaid | /code_navigation/explanations/diagrams/index-states.mermaid | shadowed by line 1153 | | no | +| 3264 | /code_intelligence/explanations/diagrams/index-states.svg | /code_navigation/explanations/diagrams/index-states.svg | shadowed by line 1158 | | no | +| 3268 | /code_intelligence/explanations/diagrams/upload-states.mermaid | /code_navigation/explanations/diagrams/upload-states.mermaid | shadowed by line 1162 | | no | +| 3273 | /code_intelligence/explanations/diagrams/upload-states.svg | /code_navigation/explanations/diagrams/upload-states.svg | shadowed by line 1167 | | no | +| 3277 | /code_intelligence/apidocs | /code_navigation/apidocs | shadowed by line 1171 | | no | +| 3281 | /code_intelligence/how-to/adding_lsif_to_many_repos | /code_navigation/how-to/adding_lsif_to_many_repos | shadowed by line 1175 | | no | +| 3285 | /code_intelligence/how-to/adding_lsif_to_workflows | /code_navigation/how-to/adding_lsif_to_workflows | shadowed by line 1179 | | no | +| 3289 | /code_intelligence/how-to/configure_auto_indexing | /code_navigation/how-to/configure_auto_indexing | shadowed by line 1183 | | no | +| 3293 | /code_intelligence/how-to/configure_data_retention | /code_navigation/how-to/configure_data_retention | shadowed by line 1187 | | no | +| 3297 | /code_intelligence/how-to/enable_auto_indexing | /code_navigation/how-to/enable_auto_indexing | shadowed by line 1191 | | no | +| 3319 | /code_intelligence/how-to | /code_navigation/how-to | shadowed by line 1213 | | no | +| 3323 | /code_intelligence/how-to/img/CodeReview.gif | /code_navigation/how-to/img/CodeReview.gif | shadowed by line 1217 | | no | +| 3327 | /code_intelligence/how-to/img/experimental-language-server-enable.png | /code_navigation/how-to/img/experimental-language-server-enable.png | shadowed by line 1221 | | no | +| 3332 | /code_intelligence/how-to/img/extension-example.gif | /code_navigation/how-to/img/extension-example.gif | shadowed by line 1226 | | no | +| 3336 | /code_intelligence/how-to/img/network-description.png | /code_navigation/how-to/img/network-description.png | shadowed by line 1230 | | no | +| 3340 | /code_intelligence/how-to/img/network-waterfall.png | /code_navigation/how-to/img/network-waterfall.png | shadowed by line 1234 | | no | +| 3344 | /code_intelligence/how-to/img/popover.png | /code_navigation/how-to/img/popover.png | shadowed by line 1238 | | no | +| 3348 | /code_intelligence/how-to/img/Symbols.png | /code_navigation/how-to/img/Symbols.png | shadowed by line 1242 | | no | +| 3352 | /code_intelligence/how-to/img/SymbolSidebar.png | /code_navigation/how-to/imgSymbolSidebar.png | shadowed by line 1246 | | no | +| 3356 | /code_intelligence/how-to/img/workflow.png | /code_navigation/how-to/img/workflow.png | shadowed by line 1250 | | no | +| 3360 | /code_intelligence/how-to/img | /code_navigation/how-to/img | shadowed by line 1254 | | no | +| 3364 | /code_intelligence/references/auto_indexing_configuration | /code_navigation/references/auto_indexing_configuration | shadowed by line 1258 | | no | +| 3368 | /code_intelligence/references/envvars | /code_navigation/references/envvars | shadowed by line 1262 | | no | +| 3372 | /code_intelligence/references/faq | /code_navigation/references/faq | shadowed by line 1266 | | no | +| 3380 | /code_intelligence/references/precise_examples | /code_navigation/references/precise_examples | shadowed by line 1274 | | no | +| 3384 | /code_intelligence/references/requirements | /code_navigation/references/requirements | shadowed by line 1278 | | no | +| 3388 | /code_intelligence/references/troubleshooting | /code_navigation/references/troubleshooting | shadowed by line 1282 | | no | +| 3392 | /code_intelligence/references | /code_navigation/references | shadowed by line 1286 | | no | +| 3400 | /cody/autocomplete | /cody/capabilities/autocomplete | shadowed by line 1294 | | yes | +| 3404 | /cody/autocomplete#code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1298 | | yes | +| 3408 | /cody/autocomplete#what-is-cody-code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1302 | | yes | +| 3412 | /cody/capabilities#code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1306 | | yes | +| 3416 | /cody/autocomplete#enabling-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1310 | | yes | +| 3420 | /cody/capabilities#code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1306 | | yes | +| 3424 | /cody/autocomplete#configuring-on-sourcegraph-enterprise | /cody/capabilities/autocomplete#configure-autocomplete-on-an-enterprise-sourcegraph-instance | shadowed by line 1318 | | yes | +| 3429 | /cody/capabilities#configure-autocomplete-on-sourcegraph-enterprise | /cody/capabilities/autocomplete#configure-autocomplete-on-an-enterprise-sourcegraph-instance | shadowed by line 1323 | | yes | +| 3434 | /cody/autocomplete#accessing-autocomplete-logs | /cody/capabilities/autocomplete#access-autocomplete-logs | shadowed by line 1328 | | yes | +| 3438 | /cody/capabilities#access-autocomplete-logs | /cody/capabilities/autocomplete#access-autocomplete-logs | shadowed by line 1332 | | yes | +| 3442 | /cody#get-cody | /cody | shadowed by line 1336 | | yes | +| 3446 | /cody#getting-started | /cody | shadowed by line 1340 | | yes | +| 3450 | /cody#features | /cody#main-features | shadowed by line 1344 | | yes | +| 3454 | /cody#chatbot-that-knows-your-code | /cody | shadowed by line 1348 | | yes | +| 3458 | /cody#fix-code-inline | /cody/capabilities | shadowed by line 1352 | | yes | +| 3462 | /cody/capabilities#fix-code-inline | /cody/capabilities | shadowed by line 1356 | | yes | +| 3466 | /cody#recipes | /cody/capabilities/commands | shadowed by line 1360 | | no | +| 3470 | /cody/capabilities#cody-recipes | /cody/capabilities/commands | shadowed by line 1364 | | no | +| 3474 | /cody#autocomplete | /cody/capabilities/autocomplete | shadowed by line 1368 | | yes | +| 3478 | /cody/capabilities#code-autocomplete | /cody/capabilities/autocomplete | shadowed by line 1306 | | yes | +| 3486 | /cody/explanations/installing_vs_code | /cody/clients/install-vscode | shadowed by line 1380 | | yes | +| 3490 | /cody/overview/install-vscode | /cody/clients/install-vscode | shadowed by line 1384 | | yes | +| 3498 | /cody/explanations/installing_jetbrains | /cody/clients/install-jetbrains | shadowed by line 1392 | | yes | +| 3502 | /cody/overview/install-jetbrains | /cody/clients/install-jetbrains | shadowed by line 1396 | | yes | +| 3510 | /cody/overview/app | /cody/clients/app | shadowed by line 1404 | | no | +| 3514 | /cody/explanations/enabling_cody | /cody/clients/cody-with-sourcegraph | shadowed by line 1408 | | yes | +| 3526 | /cody/overview/enable-cody-enterprise | /cody/clients/enable-cody-enterprise | shadowed by line 1420 | | yes | +| 3530 | /cody/quickstart#quickstart-for-cody-in-vs-code | /cody/quickstart | shadowed by line 1424 | | yes | +| 3534 | /cody/quickstart#introduction | /cody/quickstart#cody-quickstart | shadowed by line 1428 | | yes | +| 3538 | /cody/quickstart#getting-started-with-the-cody-extension-and-recipes | /cody/quickstart#getting-started-with-cody-extension-and-commands | shadowed by line 1432 | | yes | +| 3543 | /cody/quickstart#generate-a-unit-test | /cody/quickstart#1-generate-a-unit-test | shadowed by line 1437 | | yes | +| 3547 | /cody/quickstart#ask-cody-to-pull-reference-documentation | /cody/quickstart#3-ask-cody-to-pull-reference-documentation | shadowed by line 1441 | | yes | +| 3552 | /cody/quickstart#ask-cody-to-write-context-aware-code | /cody/quickstart#working-with-the-cody-extension | shadowed by line 1446 | | yes | +| 3556 | /cody/overview/install-jetbrains#introduction | /cody/clients/install-jetbrains | shadowed by line 1450 | | yes | +| 3560 | /cody/overview/install-jetbrains | /cody/clients/install-jetbrains | shadowed by line 1396 | | yes | +| 3564 | /cody/overview/install-jetbrains#requirements | /cody/clients/install-jetbrains#prerequisites | shadowed by line 1458 | | yes | +| 3568 | /cody/overview/install-jetbrains#prerequisites | /cody/clients/install-jetbrains#prerequisites | shadowed by line 1462 | | yes | +| 3572 | /cody/overview/install-jetbrains#optional-enable-code-graph-context-for-context-aware-answers | /cody/clients/install-jetbrains#optional-enable-code-graph-context-for-context-aware-answers | shadowed by line 1466 | | yes | +| 3577 | /cody/overview/install-jetbrains#enable-code-graph-context-for-context-aware-answers-optional | /cody/clients/install-jetbrains#optional-enable-code-graph-context-for-context-aware-answers | shadowed by line 1471 | | yes | +| 3582 | /cody/overview/install-jetbrains#get-started-with-cody | /cody/clients/install-jetbrains | shadowed by line 1476 | | yes | +| 3586 | /cody/overview/install-jetbrains | /cody/clients/install-jetbrains | shadowed by line 1396 | | yes | +| 3590 | /cody/overview/install-vscode#introduction | /cody/clients/install-vscode | shadowed by line 1484 | | yes | +| 3594 | /cody/overview/install-vscode | /cody/clients/install-vscode | shadowed by line 1384 | | yes | +| 3598 | /cody/overview/install-vscode#requirements | /cody/clients/install-vscode#prerequisites | shadowed by line 1492 | | yes | +| 3602 | /cody/overview/install-vscode#prerequisites | /cody/clients/install-vscode#prerequisites | shadowed by line 1496 | | yes | +| 3611 | /cody/overview/enable-cody-enterprise#using-a-third-party-llm-provider-directly | /cody/clients/enable-cody-enterprise#supported-models-and-model-providers | shadowed by line 1510 | | yes | +| 3616 | /cody/overview/enable-cody-enterprise#using-a-third-party-llm-provider | /cody/clients/enable-cody-enterprise#supported-models-and-model-providers | shadowed by line 1515 | | yes | +| 3621 | /cody/overview/enable-cody-enterprise#turning-cody-on-only-for-some-users | /cody/clients/enable-cody-enterprise#enable-cody-only-for-some-users | shadowed by line 1520 | | yes | +| 3626 | /cody/overview/enable-cody-enterprise#enable-cody-only-for-some-users | /cody/clients/enable-cody-enterprise#enable-cody-only-for-some-users | shadowed by line 1525 | | yes | +| 3631 | /cody/overview/enable-cody-enterprise#turning-cody-off | /cody/clients/enable-cody-enterprise#disable-cody | shadowed by line 1530 | | yes | +| 3635 | /cody/overview/enable-cody-enterprise#disable-cody | /cody/clients/enable-cody-enterprise#disable-cody | shadowed by line 1534 | | yes | +| 3639 | /cody/explanations | /cody/core-concepts | shadowed by line 1538 | | yes | +| 3643 | /cody/explanations/code_graph_context#embeddings | /cody/embeddings | shadowed by line 1542 | | no | +| 3647 | /cody/core-concepts/embeddings#embeddings | /cody/embeddings | shadowed by line 1546 | | no | +| 3651 | /cody/explanations/code_graph_context#configuring-embeddings | /cody/embeddings/configure-embeddings | shadowed by line 1550 | | no | +| 3659 | /cody/explanations/code_graph_context#filtering-files-from-embeddings | /cody/embeddings/manage-embeddings#filter-files-from-embeddings | shadowed by line 1558 | | no | +| 3664 | /cody/core-concepts/embeddings/manage-embeddings#filter-files-from-embeddings | /cody/embeddings/manage-embeddings#filter-files-from-embeddings | shadowed by line 1563 | | no | +| 3669 | /cody/explanations/code_graph_context#storing-embedding-indexes | /cody/embeddings/manage-embeddings#store-embedding-indexes | shadowed by line 1568 | | no | +| 3674 | /cody/core-concepts/embeddings/manage-embeddings#store-embedding-indexes | /cody/embeddings/manage-embeddings#store-embedding-indexes | shadowed by line 1573 | | no | +| 3679 | /cody/explanations/code_graph_context#using-s3 | /cody/embeddings/manage-embeddings#using-s3 | shadowed by line 1578 | | no | +| 3683 | /cody/core-concepts/embeddings/manage-embeddings#using-s3 | /cody/embeddings/manage-embeddings#using-s3 | shadowed by line 1582 | | no | +| 3687 | /cody/explanations/code_graph_context#using-gcs | /cody/embeddings/manage-embeddings#using-gcs | shadowed by line 1586 | | no | +| 3691 | /cody/core-concepts/embeddings/manage-embeddings#using-gcs | /cody/embeddings/manage-embeddings#using-gcs | shadowed by line 1590 | | no | +| 3695 | /cody/explanations/code_graph_context#provisioning-buckets | /cody/embeddings/manage-embeddings#provisioning-buckets | shadowed by line 1594 | | no | +| 3699 | /cody/core-concepts/embeddings/manage-embeddings#provisioning-buckets | /cody/embeddings/manage-embeddings#provisioning-buckets | shadowed by line 1598 | | no | +| 3703 | /cody/explanations/code_graph_context#environment-variables-for-the-embeddings-service | /cody/embeddings/manage-embeddings#environment-variables-for-the-embeddings-service | shadowed by line 1602 | | no | +| 3708 | /cody/core-concepts/embeddings/manage-embeddings#environment-variables-for-the-embeddings-service | /cody/embeddings/manage-embeddings#environment-variables-for-the-embeddings-service | shadowed by line 1607 | | no | +| 3713 | /cody/explanations/code_graph_context#incremental-embeddings | /cody/embeddings#incremental-embeddings | shadowed by line 1612 | | no | +| 3717 | /cody/core-concepts/embeddings#incremental-embeddings | /cody/embeddings#incremental-embeddings | shadowed by line 1616 | | no | +| 3721 | /cody/explanations/code_graph_context#adjust-the-minimum-time-interval-between-automatically-scheduled-embeddings | /cody/embeddings#minimum-time-interval-between-automatically-scheduled-embeddings | shadowed by line 1620 | | no | +| 3726 | /cody/core-concepts/embeddings#minimum-time-interval-between-automatically-scheduled-embeddings | /cody/embeddings#minimum-time-interval-between-automatically-scheduled-embeddings | shadowed by line 1625 | | no | +| 3731 | /cody/explanations/code_graph_context#using-a-third-party-embeddings-provider-directly | /cody/embeddings#third-party-embeddings-provider | shadowed by line 1630 | | no | +| 3735 | /cody/core-concepts/embeddings#third-party-embeddings-provider | /cody/embeddings#third-party-embeddings-provider | shadowed by line 1634 | | no | +| 3739 | /cody/explanations/code_graph_context#openai | /cody/embeddings#openai | shadowed by line 1638 | | no | +| 3743 | /cody/core-concepts/embeddings#openai | /cody/embeddings#openai | shadowed by line 1642 | | no | +| 3747 | /cody/explanations/code_graph_context#azure-openai-span-class-badge-badge-experimental-experimental-span | /cody/embeddings#azure-openai | shadowed by line 1646 | | no | +| 3751 | /cody/core-concepts/embeddings#azure-openai | /cody/embeddings#azure-openai | shadowed by line 1650 | | no | +| 3755 | /cody/explanations/code_graph_context#disabling-embeddings | /cody/embeddings#disable-embeddings | shadowed by line 1654 | | no | +| 3759 | /cody/core-concepts/embeddings#disable-embeddings | /cody/embeddings#disable-embeddings | shadowed by line 1658 | | no | +| 3763 | /cody/explanations/code_graph_context#configuring-the-global-policy-match-limit | /cody/embeddings/usage-and-limits#configure-global-policy-match-limit | shadowed by line 1662 | | no | +| 3768 | /cody/core-concepts/embeddings/usage-and-limits#configure-global-policy-match-limit | /cody/embeddings/usage-and-limits#configure-global-policy-match-limit | shadowed by line 1667 | | no | +| 3773 | /cody/explanations/code_graph_context#limitting-the-number-of-embeddings-that-can-be-generated | /cody/embeddings/usage-and-limits#limit-the-number-of-embeddings-that-can-be-generated | shadowed by line 1672 | | no | +| 3778 | /cody/core-concepts/embeddings/usage-and-limits#limit-the-number-of-embeddings-that-can-be-generated | /cody/embeddings/usage-and-limits#limit-the-number-of-embeddings-that-can-be-generated | shadowed by line 1677 | | no | +| 3787 | /cody/core-concepts/embeddings/embedding-index | /cody/embeddings/embedding-index | shadowed by line 1686 | | no | +| 3791 | /cody/explanations/indexing#generate-embeddings-index | /cody/embeddings/embedding-index#generate-embeddings-index | shadowed by line 1690 | | no | +| 3796 | /cody/core-concepts/embeddings/embedding-index#generate-embeddings-index | /cody/embeddings/embedding-index#generate-embeddings-index | shadowed by line 1695 | | no | +| 3801 | /cody/explanations/indexing#sourcegraph-enterprise | /cody/embeddings/embedding-index#sourcegraph-enterprise | shadowed by line 1700 | | no | +| 3805 | /cody/core-concepts/embeddings/embedding-index#sourcegraph-enterprise | /cody/embeddings/embedding-index#sourcegraph-enterprise | shadowed by line 1704 | | no | +| 3809 | /cody/explanations/indexing#sourcegraph-com | /cody/embeddings/embedding-index#sourcegraphcom | shadowed by line 1708 | | no | +| 3813 | /cody/core-concepts/embeddings/embedding-index#sourcegraph-com | /cody/embeddings/embedding-index#sourcegraphcom | shadowed by line 1712 | | no | +| 3817 | /cody/explanations/indexing#enable-codebase-aware-answers | /cody/embeddings/embedding-index#enable-codebase-aware-answers | shadowed by line 1716 | | no | +| 3822 | /cody/core-concepts/embeddings/embedding-index#enable-codebase-aware-answers | /cody/embeddings/embedding-index#enable-codebase-aware-answers | shadowed by line 1721 | | no | +| 3827 | /cody/explanations/indexing#extension-settings | /cody/embeddings/embedding-index#cody-vs-code-extension-settings | shadowed by line 1726 | | no | +| 3832 | /cody/core-concepts/embeddings/embedding-index#cody-vs-code-extension-settings | /cody/embeddings/embedding-index#cody-vs-code-extension-settings | shadowed by line 1731 | | no | +| 3837 | /cody/explanations/indexing#manual-configuration | /cody/embeddings/embedding-index#manual-configuration | shadowed by line 1736 | | no | +| 3841 | /cody/core-concepts/embeddings/embedding-index#manual-configuration | /cody/embeddings/embedding-index#manual-configuration | shadowed by line 1740 | | no | +| 3845 | /cody/explanations/indexing#settings-json | /cody/embeddings/embedding-index#settingsjson | shadowed by line 1744 | | no | +| 3849 | /cody/core-concepts/embeddings/embedding-index#settings-json | /cody/embeddings/embedding-index#settingsjson | shadowed by line 1748 | | no | +| 3857 | /cody/core-concepts/embeddings/configure-embeddings#policies | /cody/embeddings/configure-embeddings#policies | shadowed by line 1756 | | no | +| 3861 | /cody/explanations/policies#how-to-create-an-embeddings-policy | /cody/embeddings/configure-embeddings#create-an-embeddings-policy | shadowed by line 1760 | | no | +| 3866 | /cody/core-concepts/embeddings/configure-embeddings#create-an-embeddings-policy | /cody/embeddings/configure-embeddings#create-an-embeddings-policy | shadowed by line 1765 | | no | +| 3871 | /cody/explanations/policies#example-1 | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1770 | | no | +| 3876 | /cody/core-concepts/embeddings/configure-embeddings#how-pattern-matching-works | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1775 | | no | +| 3881 | /cody/explanations/policies#example-2 | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1780 | | no | +| 3886 | /cody/core-concepts/embeddings/configure-embeddings#how-pattern-matching-works | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1775 | | no | +| 3891 | /cody/explanations/policies#example-3 | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1790 | | no | +| 3896 | /cody/core-concepts/embeddings/configure-embeddings#how-pattern-matching-works | /cody/embeddings/configure-embeddings#how-pattern-matching-works | shadowed by line 1775 | | no | +| 3901 | /cody/explanations/policies#lifecycle-of-an-embeddings-policy | /cody/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | shadowed by line 1800 | | no | +| 3906 | /cody/core-concepts/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | /cody/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | shadowed by line 1805 | | no | +| 3911 | /cody/explanations/schedule_one_off_embeddings_jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | shadowed by line 1810 | | no | +| 3916 | /cody/core-concepts/embeddings/configure-embeddings#schedule-embeddings-jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | shadowed by line 1815 | | no | +| 3925 | /cody/explanations/cody_gateway | /cody/core-concepts/cody_gateway | shadowed by line 1824 | | no | +| 3933 | /cody/core-concepts/cody_clients | /cody/clients | shadowed by line 1832 | | yes | +| 3937 | /cody/overview#getting-started | /cody/clients | shadowed by line 1836 | | yes | +| 3945 | /cody/core-concepts/cody_gateway#using-cody-gateway-in-sourcegraph-enterprise | /cody/core-concepts/cody-gateway#using-cody-gateway-in-sourcegraph-enterprise | shadowed by line 1844 | | no | +| 3950 | /cody/core-concepts/cody_gateway#configuring-custom-models | /cody/core-concepts/cody-gateway#configuring-custom-models | shadowed by line 1849 | | no | +| 3955 | /cody/core-concepts/cody_gateway#rate-limits-and-quotas | /cody/core-concepts/cody-gateway#rate-limits-and-quotas | shadowed by line 1854 | | no | +| 3959 | /cody/core-concepts/cody_gateway#privacy-and-security | /cody/core-concepts/cody-gateway#privacy-and-security | shadowed by line 1858 | | no | +| 3978 | /code_search/tutorials/examples | /code-search/queries/examples | shadowed by line 1877 | | yes | +| 3988 | /code_search/how-to | /code-search/working/saved_searches | shadowed by line 1887 | | no | +| 3998 | /code_search/how-to/snippets | /code-search/working/snippets | shadowed by line 1897 | | yes | +| 4013 | /code_search/how-to/search-jobs | /code-search/types/search-jobs | shadowed by line 1912 | | yes | +| 4018 | /code_search/explanations | /code-search/working/saved_searches | shadowed by line 1922 | | no | +| 4033 | /code_search/explanations/tips | /code-search/features | shadowed by line 1937 | | yes | +| 4043 | /code_search/reference/queries#search-pattern-syntax | /code-search/queries#search-pattern-syntax | shadowed by line 1947 | | yes | +| 4065 | /code_navigation/how-to/configure_data_retention#applying-data-retention-policies-globally | /code-search/code-navigation/auto_indexing#applying-indexing-policies-globally | shadowed by line 1969 | | no | +| 4077 | /code_navigation/how-to/index_a_go_repository#automated-indexing | /code-search/code-navigation/how-to/index_a_go_repository#automated-indexing | shadowed by line 1981 | | no | +| 4083 | /code_navigation/how-to/index_a_go_repository#github-actions | /code-search/code-navigation/how-to/index_a_go_repository#github-actions | shadowed by line 1987 | | no | +| 4089 | /code_navigation/how-to/index_a_go_repository#circleci | /code-search/code-navigation/how-to/index_a_go_repository#circleci | shadowed by line 1993 | | no | +| 4095 | /code_navigation/how-to/index_a_go_repository#travis-ci | /code-search/code-navigation/how-to/index_a_go_repository#travis-ci | shadowed by line 1999 | | no | +| 4101 | /code_navigation/how-to/index_a_go_repository#manual-indexing | /code-search/code-navigation/how-to/index_a_go_repository#manual-indexing | shadowed by line 2005 | | no | +| 4113 | /code_navigation/how-to/index_a_typescript_and_javascript_repository#indexing-in-ci-using-scip-typescript-directly | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository#indexing-in-ci-using-scip-typescript-directly | shadowed by line 2017 | | no | +| 4119 | /code_navigation/how-to/index_a_typescript_and_javascript_repository#optional-scip-typescript-flags | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository#optional-scip-typescript-flags | shadowed by line 2023 | | no | +| 4125 | /code_navigation/how-to/adding_lsif_to_many_repos | /code-search/code-navigation/precise_code_navigation | shadowed by line 2041 | | no | +| 4136 | /code_navigation/how-to/enable_auto_indexing#deploy-executors | /code-search/code-navigation/auto_indexing#enable-auto-indexing#deploy-executors | shadowed by line 2106 | | no | +| 4142 | /code_navigation/how-to/policies_resource_usage_best_practices | /code-search/code-navigation/how-to/policies_resource_usage_best_practices | shadowed by line 2171 | | no | +| 4148 | /code_navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | /code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | shadowed by line 2177 | | no | +| 4159 | /code_navigation/explanations/introduction_to_code_navigation#search-based-vs-precise | /code-search/code-navigation#code-navigation-types | shadowed by line 2188 | | no | +| 4179 | /code_navigation/explanations/uploads#lifecycle-of-an-upload | /code-search/code-navigation/explanations/uploads#lifecycle-of-an-upload | shadowed by line 2209 | | no | +| 4185 | /code_navigation/explanations/uploads#lifecycle-of-an-upload-via-ui | /code-search/code-navigation/explanations/uploads#lifecycle-of-an-upload-via-ui | shadowed by line 2215 | | no | +| 4191 | /code_navigation/explanations/uploads#repository-commit-graph | /code-search/code-navigation/explanations/uploads#repository-commit-graph | shadowed by line 2221 | | no | +| 4197 | /code_navigation/explanations/search_based_code_navigation | /code-search/code-navigation/search_based_code_navigation | shadowed by line 2227 | | no | +| 4203 | /code_navigation/explanations/search_based_code_navigation#how-does-it-work | /code-search/code-navigation/search_based_code_navigation#how-does-it-work | shadowed by line 2233 | | no | +| 4209 | /code_navigation/explanations/search_based_code_navigation#what-configuration-settings-can-i-apply | /code-search/code-navigation/search_based_code_navigation#what-configuration-settings-can-i-apply | shadowed by line 2239 | | no | +| 4220 | /code_navigation/explanations/features#popover | /code-search/code-navigation/features#popover | shadowed by line 2250 | | no | +| 4224 | /code_navigation/explanations/features#go-to-definition | /code-search/code-navigation/features#go-to-definition | shadowed by line 2254 | | no | +| 4228 | /code_navigation/explanations/features#find-references | /code-search/code-navigation/features#find-references | shadowed by line 2258 | | no | +| 4232 | /code_navigation/explanations/features#dependency-navigation | /code-search/code-navigation/features#dependency-navigation | shadowed by line 2262 | | no | +| 4237 | /code_navigation/explanations/features#find-implementations | /code-search/code-navigation/features#find-implementations | shadowed by line 2267 | | no | +| 4243 | /code_navigation/explanations/features#perform-an-action | /code-search/code-navigation/features#perform-an-action | shadowed by line 2273 | | no | +| 4248 | /code_navigation/explanations/features#symbol-search | /code-search/types/symbol | shadowed by line 2278 | | yes | +| 4253 | /code_navigation/explanations/rockskip | /code-search/code-navigation/rockskip | shadowed by line 2283 | | no | +| 4258 | /code_navigation/explanations/rockskip#when-should-i-use-rockskip | /code-search/code-navigation/rockskip#when-should-i-use-rockskip | shadowed by line 2288 | | no | +| 4264 | /code_navigation/explanations/rockskip#how-do-i-enable-rockskip | /code-search/code-navigation/rockskip#how-do-i-enable-rockskip | shadowed by line 2294 | | no | +| 4270 | /code_navigation/explanations/rockskip#how-long-does-indexing-take | /code-search/code-navigation/rockskip#how-long-does-indexing-take | shadowed by line 2300 | | no | +| 4276 | /code_navigation/explanations/rockskip#what-resources-does-rockskip-use | /code-search/code-navigation/rockskip#what-resources-does-rockskip-use | shadowed by line 2306 | | no | +| 4282 | /code_navigation/explanations/rockskip#how-do-i-check-the-indexing-status | /code-search/code-navigation/rockskip#how-do-i-check-the-indexing-status | shadowed by line 2312 | | no | +| 4288 | /code_navigation/explanations/rockskip#when-is-indexing-triggered | /code-search/code-navigation/rockskip#when-is-indexing-triggered | shadowed by line 2318 | | no | +| 4300 | /code_navigation/explanations/writing_an_indexer#understanding-the-scip-protobuf-schema | /code-search/code-navigation/writing_an_indexer#understanding-the-scip-protobuf-schema | shadowed by line 2330 | | no | +| 4306 | /code_navigation/explanations/writing_an_indexer#importing-or-generating-scip-bindings | /code-search/code-navigation/writing_an_indexer#importing-or-generating-scip-bindings | shadowed by line 2336 | | no | +| 4312 | /code_navigation/explanations/writing_an_indexer#generating-minimal-index-with-occurrence-information | /code-search/code-navigation/writing_an_indexer#generating-minimal-index-with-occurrence-information | shadowed by line 2342 | | no | +| 4318 | /code_navigation/explanations/writing_an_indexer#snapshot-testing-with-scip-cli | /code-search/code-navigation/writing_an_indexer#snapshot-testing-with-scip-cli | shadowed by line 2348 | | no | +| 4324 | /code_navigation/explanations/writing_an_indexer#progressively-adding-support-for-language-features | /code-search/code-navigation/writing_an_indexer#progressively-adding-support-for-language-features | shadowed by line 2354 | | no | +| 4335 | /code_navigation/explanations/auto_indexing#lifecycle-of-an-indexing-job | /code-search/code-navigation/auto_indexing#lifecycle-of-an-indexing-job | shadowed by line 2365 | | no | +| 4341 | /code_navigation/how-to/configure_auto_indexing#lifecycle-of-an-indexing-job | /code-search/code-navigation/auto_indexing#lifecycle-of-an-indexing-job | shadowed by line 2371 | | no | +| 4347 | /code_navigation/how-to/configure_auto_indexing#lifecycle-of-an-indexing-job-via-ui | /code-search/code-navigation/auto_indexing#lifecycle-of-an-indexing-job-via-ui | shadowed by line 2377 | | no | +| 4353 | /code_navigation/explanations/auto_indexing_inference | /code-search/code-navigation/explanations/auto_indexing_inference | shadowed by line 2383 | | no | +| 4359 | /code_navigation/explanations/auto_indexing_inference#go | /code-search/code-navigation/explanations/auto_indexing_inference#go | shadowed by line 2389 | | no | +| 4365 | /code_navigation/explanations/auto_indexing_inference#typescript | /code-search/code-navigation/explanations/auto_indexing_inference#typescript | shadowed by line 2395 | | no | +| 4371 | /code_navigation/explanations/auto_indexing_inference#java | /code-search/code-navigation/explanations/auto_indexing_inference#java | shadowed by line 2401 | | no | +| 4377 | /code_navigation/explanations/auto_indexing_inference#rust | /code-search/code-navigation/explanations/auto_indexing_inference#rust | shadowed by line 2407 | | no | +| 4383 | /code_navigation/references/troubleshooting | /code-search/code-navigation/troubleshooting | shadowed by line 2413 | | no | +| 4388 | /code_navigation/references/troubleshooting#when-are-issues-related-to-code-intelligence | /code-search/code-navigation/troubleshooting#when-are-issues-related-to-code-intelligence | shadowed by line 2418 | | no | +| 4394 | /code_navigation/references/troubleshooting#gathering-evidence | /code-search/code-navigation/troubleshooting#gathering-evidence | shadowed by line 2424 | | no | +| 4406 | /code_navigation/references/indexers#quick-reference | /code-search/code-navigation/writing_an_indexer#quick-reference | shadowed by line 2436 | | no | +| 4418 | /code_navigation/references/envvars | /code-search/code-navigation/envvars | shadowed by line 2448 | | no | +| 4423 | /code_navigation/references/envvars#frontend | /code-search/code-navigation/envvars#frontend | shadowed by line 2453 | | no | +| 4428 | /code_navigation/references/envvars#worker | /code-search/code-navigation/envvars#worker | shadowed by line 2458 | | no | +| 4433 | /code_navigation/references/envvars#precise-code-intel-worker | /code-search/code-navigation/envvars#precise-code-intel-worker | shadowed by line 2463 | | no | +| 4439 | /code_navigation/references/auto_indexing_configuration | /code-search/code-navigation/auto_indexing_configuration | shadowed by line 2469 | | no | +| 4444 | /code_navigation/references/auto_indexing_configuration#keys | /code-search/code-navigation/auto_indexing_configuration#keys | shadowed by line 2474 | | no | +| 4450 | /code_navigation/references/auto_indexing_configuration#index-job-object | /code-search/code-navigation/auto_indexing_configuration#index-job-object | shadowed by line 2480 | | no | +| 4456 | /code_navigation/references/auto_indexing_configuration#docker-step-object | /code-search/code-navigation/auto_indexing_configuration#docker-step-object | shadowed by line 2486 | | no | +| 4462 | /code_navigation/references/inference_configuration | /code-search/code-navigation/inference_configuration | shadowed by line 2492 | | no | +| 4889 | /admin/deploy/kubernetes/kustomize | /self-hosted/deploy/kubernetes/kustomize | shadowed by line 4877 | | yes | From ccdebdd00390086a3c183ddd52a4716264f87d84 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 23:08:42 -0600 Subject: [PATCH 14/16] Count page views only when Cloudflare JS detection passed Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- viewership-metrics/README.md | 11 ++++++++++- viewership-metrics/page-views-report.mjs | 17 ++++++++++++++--- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/viewership-metrics/README.md b/viewership-metrics/README.md index ac23d7e84..470d54383 100644 --- a/viewership-metrics/README.md +++ b/viewership-metrics/README.md @@ -47,9 +47,18 @@ people to a soft 404; a `no` with a Chain is an intermediate hop. ## Filters -- Bot Management decision `likely_human` +- Bot Management decision `likely_human`, GET requests only - Excluding ASN `Hetzner Online GmbH` (one hosting provider that dwarfs real German traffic) and country `CN` +- Page views (Requests, Visits) also require `jsDetectionPassed: Passed`: + the browser ran Cloudflare's JS detection. `likely_human` alone lets + through scrapers with spoofed browser user agents and ASNs (one fleet + labelled Cox Communications, all with referer google.com and a single + Linux Chrome user agent, was 30% of `/docs` page views). The first + response of a visit only sets the detection cookie, so this counts + visitors who load a second page and undercounts single-page visits. + Redirects and errors are mostly first requests from stale external + links, so they keep the looser filter and still include some scrapers. - Skipped as noise: `/_next` and static assets, paths with characters outside `[A-Za-z0-9/_.~@'-]` (scanner probes), and trailing-slash redirects. Trailing-slash variants of a page are merged. diff --git a/viewership-metrics/page-views-report.mjs b/viewership-metrics/page-views-report.mjs index 3c459b0e4..d724b269f 100644 --- a/viewership-metrics/page-views-report.mjs +++ b/viewership-metrics/page-views-report.mjs @@ -93,6 +93,7 @@ function buildFilter(start, end) { datetime_lt: end.toISOString(), clientRequestHTTPHost: HOST, botManagementDecision: 'likely_human', + clientRequestHTTPMethodName: 'GET', clientASNDescription_notin: EXCLUDED_ASN_DESCRIPTIONS, clientCountryName_notin: EXCLUDED_COUNTRIES, AND: [ @@ -106,7 +107,15 @@ function buildFilter(start, end) { OR: [ { edgeResponseStatus: 200, - edgeResponseContentTypeName: 'html' + edgeResponseContentTypeName: 'html', + // A browser that ran Cloudflare's JS detection. + // Scrapers with spoofed browser user agents and + // ASNs score `likely_human` but never pass it. + // The first response only sets the cookie, so this + // counts visitors who load a second page. Redirects + // and errors are mostly first requests from stale + // external links, so they are not filtered on it. + jsDetectionPassed: 'Passed' }, {edgeResponseStatus_in: REDIRECT_STATUSES}, {edgeResponseStatus: 404}, @@ -277,9 +286,11 @@ function reportHeader(title, start, end) { '', `- Window: ${start.toISOString()} to ${end.toISOString()} (UTC)`, `- Host: ${HOST}; paths: ${PATH_PREFIXES.join(', ')}`, - `- Filters: Bot Management likely_human; ` + + `- Filters: Bot Management likely_human; GET; ` + `excluding ASN ${EXCLUDED_ASN_DESCRIPTIONS.join(', ')}; ` + - `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}` + `excluding countries ${EXCLUDED_COUNTRIES.join(', ')}. ` + + 'Requests and Visits also require JS detection passed, ' + + 'which excludes the first page of each visit.' ]; } From 7105459b95e0f88084b8d68399c29da2615baeb5 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Wed, 9 Sep 2026 23:11:07 -0600 Subject: [PATCH 15/16] Skip __data.json fetches; regenerate reports with JS detection filter Amp-Thread-ID: https://ampcode.com/threads/T-01a08479-a4c8-72ad-8f31-fe7ecc43bf34 Co-authored-by: Amp --- viewership-metrics/README.md | 2 +- viewership-metrics/page-views-report.mjs | 7 +- .../reports/page-views-by-count.md | 2484 ++--------------- .../reports/page-views-by-errors.md | 2484 ++--------------- .../reports/page-views-by-path.md | 2484 ++--------------- .../reports/page-views-by-redirects.md | 2484 ++--------------- viewership-metrics/reports/redirect-rules.md | 76 +- 7 files changed, 1087 insertions(+), 8934 deletions(-) diff --git a/viewership-metrics/README.md b/viewership-metrics/README.md index 470d54383..6e1b10e6b 100644 --- a/viewership-metrics/README.md +++ b/viewership-metrics/README.md @@ -59,7 +59,7 @@ people to a soft 404; a `no` with a Chain is an intermediate hop. visitors who load a second page and undercounts single-page visits. Redirects and errors are mostly first requests from stale external links, so they keep the looser filter and still include some scrapers. -- Skipped as noise: `/_next` and static assets, paths with characters +- Skipped as noise: `/_next`, `__data.json` and static assets, paths with characters outside `[A-Za-z0-9/_.~@'-]` (scanner probes), and trailing-slash redirects. Trailing-slash variants of a page are merged. diff --git a/viewership-metrics/page-views-report.mjs b/viewership-metrics/page-views-report.mjs index d724b269f..0a6ace82c 100644 --- a/viewership-metrics/page-views-report.mjs +++ b/viewership-metrics/page-views-report.mjs @@ -28,10 +28,11 @@ const EXCLUDED_ASN_DESCRIPTIONS = ['Hetzner Online GmbH']; // Real redirects only; 304 Not Modified is a cache revalidation. const REDIRECT_STATUSES = [301, 302, 303, 307, 308]; -// Build output and static assets are not pages. Feeds (.xml, .rss, .atom) -// are kept because their 404s and redirects are worth knowing about. +// Build output, static assets and SvelteKit __data.json fetches are not +// pages. Feeds (.xml, .rss, .atom) are kept because their 404s and +// redirects are worth knowing about. const STATIC_ASSET_PATTERN = - /\/_next(\/|$)|\.(js|css|map|png|jpe?g|gif|svg|ico|webp|woff2?|ttf)$/i; + /\/(_next|__data\.json)(\/|$)|\.(js|css|map|png|jpe?g|gif|svg|ico|webp|woff2?|ttf)$/i; // Real page URLs only use these characters; anything else is a scanner // probe or injection payload, for example "(A(x))", "%3Cscript%3E", "..;/". diff --git a/viewership-metrics/reports/page-views-by-count.md b/viewership-metrics/reports/page-views-by-count.md index e4541f589..24ce4e785 100644 --- a/viewership-metrics/reports/page-views-by-count.md +++ b/viewership-metrics/reports/page-views-by-count.md @@ -1,2182 +1,140 @@ # Page views by request count (last 90 days) -- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Window: 2026-06-12T06:00:00.000Z to 2026-09-10T05:00:00.000Z (UTC) - Host: sourcegraph.com; paths: /docs, /changelog, /blog -- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN -- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Filters: Bot Management likely_human; GET; excluding ASN Hetzner Online GmbH; excluding countries CN. Requests and Visits also require JS detection passed, which excludes the first page of each visit. +- Totals: 1079 paths, 7420 requests, 3310 visits, 64680 3xx, 16240 404s, 760 5xx - Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). - 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. -- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. +- Sitemap: 160 of 1079 paths are in https://sourcegraph.com/sitemap.xml, with 6310 of 7420 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. | Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | | --- | ---: | ---: | ---: | ---: | ---: | --- | -| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | -| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | -| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | -| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | -| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | -| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | -| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | -| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | -| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | -| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | -| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | -| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | -| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | -| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | -| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | -| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | -| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | -| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | -| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | -| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | -| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | -| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | -| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | -| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | -| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | -| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | -| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | -| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | -| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | -| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | -| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | -| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | -| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | -| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | -| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | -| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | -| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | -| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | -| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | -| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | -| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | -| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | -| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | -| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | -| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | -| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | -| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | -| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | -| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | -| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | -| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | -| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | -| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | -| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | -| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | -| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | -| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | -| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | -| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | -| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | -| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | -| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | -| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | -| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | -| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | -| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | -| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | -| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | -| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | -| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | -| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | -| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | -| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | -| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | -| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | -| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | -| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | -| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | -| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | -| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | -| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | -| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | -| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | -| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | -| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | -| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | -| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | -| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | -| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | -| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | -| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | -| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | -| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | -| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | -| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | -| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | -| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | -| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | -| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | -| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | -| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | -| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | -| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | -| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | -| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | -| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | -| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | -| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | -| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | -| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | -| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | -| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | -| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | -| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | -| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | -| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | -| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | -| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | -| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | -| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | -| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | -| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | -| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | -| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | -| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | -| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | -| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | -| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | -| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | -| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | -| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | -| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | -| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | -| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | -| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | -| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | -| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | -| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | -| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | -| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | -| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | -| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | -| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | -| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | -| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | -| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | -| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | -| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | -| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | -| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | -| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | -| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | -| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | -| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | -| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | -| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | -| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | -| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | -| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | -| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | -| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | -| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | -| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | -| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | -| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | -| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | -| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | -| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | -| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | -| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | -| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | -| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | -| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | -| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | -| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | -| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | -| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | -| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | -| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | -| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | -| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | -| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | -| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | -| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | -| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | -| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | -| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | -| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | -| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | -| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | -| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | -| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | -| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | -| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | -| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | -| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | -| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | -| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | -| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | -| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | -| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | -| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | -| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | -| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | -| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | -| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | -| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | -| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | -| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | -| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | -| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | -| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | -| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | -| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | -| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | -| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | -| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | -| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | -| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | -| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | -| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | -| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | -| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | -| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | -| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | -| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | -| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | -| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | -| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | -| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | -| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | -| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | -| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | -| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | -| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | -| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | -| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | -| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | -| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | -| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | -| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | -| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | -| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | -| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | -| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/login | 320 | 320 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | -| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | -| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | -| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | -| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | -| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | -| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | -| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | -| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | -| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | -| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | -| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | -| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | -| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | -| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | -| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | -| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | -| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | -| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | -| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | -| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | -| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | -| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | -| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | -| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | -| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | -| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | -| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | -| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | -| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | -| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | -| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | -| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | -| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | -| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | -| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | -| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | -| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | -| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | -| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | -| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | -| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | -| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | -| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | -| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | -| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | -| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | -| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | -| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | -| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | -| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | -| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | -| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | -| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | -| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | -| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | -| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | -| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | -| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | -| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | -| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | -| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | -| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | -| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | -| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | -| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | -| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | -| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | -| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | -| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | -| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | -| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | -| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | -| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | -| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | -| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | -| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | -| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | -| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | -| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | -| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | -| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | -| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | -| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | -| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | -| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | -| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | -| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | -| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | -| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | -| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | -| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | -| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | -| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | -| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | -| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | -| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | -| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | -| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | -| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | -| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | -| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | -| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | -| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | -| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | -| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | -| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | -| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | -| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | -| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | -| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | -| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | -| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | -| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | -| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | -| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | -| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | -| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | -| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | -| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | -| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | -| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | -| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | -| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | -| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | -| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | -| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | -| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | -| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | -| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | -| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | -| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | -| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | -| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | -| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | -| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | -| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | -| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | -| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | -| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | -| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | -| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | -| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | -| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | -| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | -| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | -| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | -| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | -| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | -| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | -| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | -| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | -| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | -| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | -| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | -| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | -| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | -| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | -| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | -| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | -| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | -| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | -| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | -| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | -| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | -| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | -| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | -| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | -| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | -| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | -| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | -| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | -| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | -| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | -| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | -| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | -| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | -| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | -| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | -| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | -| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | -| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | -| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | -| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | -| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | -| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | -| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | -| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | -| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | -| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | -| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | -| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | -| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | -| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | -| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | -| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | -| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | -| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | -| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | -| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | -| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | -| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | -| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | -| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | -| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | -| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | -| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | -| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | -| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | -| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | -| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | -| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | -| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | -| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | -| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | -| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | -| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | -| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | -| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | -| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | -| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | -| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | -| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | -| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | -| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | -| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | -| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | -| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | -| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | -| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | -| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | -| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | -| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | -| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | -| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | -| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | -| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | -| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | -| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | -| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | -| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | -| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | -| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | -| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | -| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | -| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | -| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | -| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | -| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | -| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | -| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | -| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | -| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | -| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | -| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | -| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | -| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | -| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | -| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | -| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | -| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | -| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | -| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | -| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | -| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | -| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | -| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | -| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | -| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | -| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | -| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | -| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | -| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | -| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | -| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | -| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | -| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | -| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | -| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | -| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | -| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | -| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | -| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | -| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | -| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | -| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | -| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | -| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | -| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | -| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | -| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | -| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | -| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | -| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | -| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | -| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | -| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | -| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | -| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | -| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | -| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | -| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | -| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | -| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | -| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | -| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | -| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | -| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | -| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | -| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | -| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | -| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | -| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | -| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | -| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | -| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | -| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | -| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | -| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | -| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | -| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | -| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | -| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | -| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | -| /docs/account | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | -| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | -| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | -| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | -| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | -| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | -| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | -| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | -| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | -| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | -| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | -| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | -| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | -| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | -| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | -| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | -| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | -| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | -| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | -| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | -| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | -| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | -| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | -| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | -| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | -| /docs/about | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | -| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | -| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | -| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | -| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | -| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | -| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | -| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | -| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | -| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | -| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | -| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | -| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | -| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | -| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | -| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | -| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | -| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | -| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | -| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | -| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | -| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | -| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | -| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | -| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | -| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | -| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | -| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | -| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | +| /changelog | 1920 | 70 | 150 | 0 | 0 | yes | +| /docs | 440 | 160 | 50 | 0 | 260 | yes | +| /docs/code-search/queries | 200 | 80 | 0 | 0 | 0 | yes | +| /docs/cli | 150 | 20 | 0 | 0 | 0 | yes | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 120 | 0 | 0 | 10 | 0 | yes | +| /blog/ai-developer-tools | 120 | 80 | 0 | 0 | 0 | yes | +| /blog/revenge-of-the-junior-developer | 120 | 0 | 0 | 0 | 0 | yes | +| /docs/cody | 120 | 120 | 100 | 0 | 60 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 110 | 90 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 100 | 100 | 0 | 0 | 0 | yes | +| /docs/api/mcp | 100 | 90 | 0 | 0 | 0 | yes | +| /docs/code-search | 100 | 60 | 0 | 0 | 0 | yes | +| /blog/automated-code-review-tools | 90 | 80 | 0 | 0 | 0 | yes | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 90 | 70 | 50 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/releases | 90 | 90 | 230 | 0 | 0 | yes | +| /docs/dev | 90 | 90 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/docker-compose | 90 | 30 | 0 | 0 | 0 | yes | +| /blog/announcing-sourcegraphs-series-d-round | 80 | 80 | 0 | 0 | 0 | no | +| /blog/large-scale-code-changes | 80 | 40 | 0 | 0 | 0 | yes | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 70 | 70 | 0 | 0 | 0 | no | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 70 | 70 | 0 | 0 | 0 | yes | +| /docs/code-search/types/search-jobs | 70 | 0 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-contexts | 70 | 10 | 0 | 0 | 0 | yes | +| /blog | 60 | 40 | 90 | 0 | 0 | yes | +| /blog/code-refactoring-techniques | 60 | 20 | 0 | 0 | 0 | yes | +| /blog/how-to-search-cheat-sheet | 60 | 60 | 0 | 0 | 0 | no | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 60 | 0 | 0 | 0 | 0 | yes | +| /blog/series-c-with-sequoia | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/2026-09-07 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 60 | 60 | 0 | 0 | 0 | no | +| /docs/cli/how-tos/managing-access-tokens | 60 | 0 | 0 | 0 | 0 | yes | +| /docs/cody/clients/install-vscode | 60 | 0 | 0 | 0 | 0 | yes | +| /blog/ai-code-generation | 50 | 0 | 70 | 0 | 0 | yes | +| /blog/best-ai-coding-tools | 50 | 0 | 0 | 20 | 0 | yes | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 50 | 50 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 50 | 30 | 0 | 0 | 0 | yes | +| /docs/batch-changes | 50 | 50 | 0 | 0 | 0 | yes | +| /blog/a-note-from-dan | 40 | 0 | 20 | 0 | 0 | yes | +| /blog/announcing-code-insights | 40 | 40 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 40 | 20 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-app | 40 | 40 | 0 | 0 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 40 | 40 | 0 | 0 | 0 | no | +| /blog/how-cody-understands-your-codebase | 40 | 40 | 20 | 0 | 0 | no | +| /blog/monorepo-vs-polyrepo | 40 | 0 | 0 | 0 | 0 | yes | +| /blog/the-death-of-the-junior-developer | 40 | 20 | 60 | 0 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/mcp-dcr | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/releases/7.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/sourcegraph-api | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/admin/search | 40 | 40 | 0 | 0 | 30 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/integration/gitlab | 40 | 20 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-config | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 40 | 0 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 30 | 20 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-assistant | 30 | 10 | 0 | 0 | 0 | yes | +| /blog/claude-code-file-picker-symbol-ranking | 30 | 10 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/compliance-first-ai-proving-agent-provenance | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 30 | 20 | 0 | 0 | 0 | yes | +| /blog/dev-tool-time-seth-vargo | 30 | 30 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 30 | 30 | 10 | 0 | 0 | no | +| /blog/static-code-analysis-tools | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/why-coding-agents-fail-large-codebases | 30 | 0 | 0 | 0 | 0 | yes | +| /changelog/2026-08-10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 30 | 30 | 0 | 0 | 0 | no | +| /docs/self-hosted/email | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services | 30 | 0 | 20 | 0 | 0 | yes | +| /blog/ai-code-refactoring | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/announcing-our-partnership-with-dx | 20 | 20 | 0 | 0 | 0 | no | +| /blog/code-complexity | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/context-engineering | 20 | 20 | 10 | 0 | 0 | yes | +| /blog/dev-tool-time-theprimeagen | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 20 | 20 | 0 | 0 | 0 | no | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/nine-circles-of-dependency-hell | 20 | 20 | 0 | 0 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 20 | 20 | 0 | 0 | 0 | yes | +| /blog/why-your-migration-tools-are-failing-your-engineers | 20 | 0 | 0 | 0 | 0 | yes | +| /changelog/code-finder-ga | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/how-to | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/admin/licensing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/organizations | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/admin/service-accounts | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/agentic-batch-changes | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/api | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/cli/references/version | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-insights/quickstart | 20 | 20 | 0 | 0 | 10 | yes | +| /docs/code-monitoring | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/building-conc-better-structured-concurrency-for-go | 10 | 10 | 0 | 0 | 0 | no | +| /blog/code-review-checklist | 10 | 10 | 0 | 0 | 0 | yes | +| /blog/cody-is-generally-available | 10 | 10 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 10 | 10 | 0 | 0 | 0 | no | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 10 | 0 | 0 | 0 | 0 | yes | +| /blog/documentation-as-code | 10 | 0 | 0 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-server-2-6 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 10 | 0 | 0 | 0 | 0 | yes | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 10 | 10 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 10 | 10 | 0 | 0 | 0 | yes | +| /changelog/releases/7.5.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 10 | 10 | 0 | 0 | 0 | no | | /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | -| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | -| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | -| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | -| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/gitlab | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/api/stream-api | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/code-insights | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 10 | 0 | 30 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-context-fetching | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/context-filters | 10 | 0 | 0 | 0 | 0 | yes | | /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | -| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | -| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | -| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | -| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/models | 10 | 10 | 0 | 0 | 0 | no | | /docs/nope | 10 | 10 | 0 | 0 | 0 | no | -| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | -| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | -| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | -| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | -| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | -| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | +| /docs/technical-changelog | 10 | 10 | 0 | 0 | 0 | yes | | /blog/_ | 0 | 0 | 0 | 90 | 0 | no | | /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | | /blog/117135991499/5-surprisingly-painful-things-about-client-side-js | 0 | 0 | 0 | 30 | 0 | no | @@ -2208,6 +166,7 @@ | /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | | /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | | /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | +| /blog/anatomy-of-a-coding-assistant | 0 | 0 | 20 | 0 | 0 | no | | /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | | /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | | /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | @@ -2216,7 +175,6 @@ | /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | | /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | | /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | -| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | | /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | | /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | | /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | @@ -2242,7 +200,6 @@ | /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | | /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | | /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | | /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | @@ -2253,10 +210,11 @@ | /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | | /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 130 | 0 | no | | /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | +| /blog/cody-enterprise-june-2024 | 0 | 0 | 20 | 0 | 0 | no | | /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | @@ -2264,13 +222,13 @@ | /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | +| /blog/combining-chat-and-search | 0 | 0 | 10 | 0 | 0 | yes | | /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | | /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | | /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | @@ -2288,23 +246,21 @@ | /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | | /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | | /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | -| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | | /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | | /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | | /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | | /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | -| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | -| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | +| /blog/feed | 0 | 0 | 0 | 220 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3370 | 0 | no | | /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | -| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 990 | 0 | no | | /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | | /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | | /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | | /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | | /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | | /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | -| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | | /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | | /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | | /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | @@ -2327,7 +283,6 @@ | /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | | /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | -| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | | /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | @@ -2345,6 +300,7 @@ | /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-native-mobile-apps-with-graphql | 0 | 0 | 0 | 20 | 0 | no | | /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | | /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | @@ -2367,13 +323,17 @@ | /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | | /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | | /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | +| /blog/introducing-agentic-chat | 0 | 0 | 110 | 0 | 0 | yes | | /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | | /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | | /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | | /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | +| /blog/introducing-enterprise-ai-agents | 0 | 0 | 20 | 0 | 0 | yes | | /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | -| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | +| /blog/introducing-scip | 0 | 0 | 0 | 30 | 0 | no | +| /blog/introducing-sourcegraph-enterprise-starter | 0 | 0 | 10 | 0 | 0 | yes | | /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 0 | 0 | 10 | 0 | 0 | yes | | /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | | /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | | /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | @@ -2401,20 +361,22 @@ | /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | | /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | | /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | -| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 90 | 0 | no | | /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | | /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | | /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | | /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/local-code-completion-with-ollama-and-cody | 0 | 0 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 0 | 0 | 10 | 0 | 0 | no | | /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | | /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | | /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | | /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 0 | 0 | 10 | 0 | 0 | no | | /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | | /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | | /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | -| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | | /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | | /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | | /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | @@ -2426,9 +388,11 @@ | /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | | /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | | /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | +| /blog/owning-a-codebase | 0 | 0 | 0 | 30 | 0 | yes | | /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | | /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | | /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 0 | 0 | 30 | 0 | 0 | yes | | /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | | /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | | /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | @@ -2439,15 +403,16 @@ | /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/5.1 | 0 | 0 | 0 | 90 | 0 | no | | /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | | /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | | /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | -| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | | /blog/rss | 0 | 0 | 0 | 20 | 0 | no | -| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /blog/rss.xml | 0 | 0 | 21640 | 0 | 0 | no | | /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sast-vs-dast | 0 | 0 | 0 | 20 | 0 | yes | | /blog/scip | 0 | 0 | 0 | 90 | 0 | no | | /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | | /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | @@ -2459,6 +424,7 @@ | /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.1/blog | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | @@ -2474,7 +440,7 @@ | /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | @@ -2488,7 +454,6 @@ | /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | | /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | | /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | -| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | @@ -2522,6 +487,7 @@ | /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | | /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | | /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 0 | 0 | 10 | 0 | 0 | yes | | /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | | /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | | /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | @@ -2533,8 +499,9 @@ | /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | | /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | | /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/2026-03-23 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/2026-03-30 | 0 | 0 | 20 | 0 | 0 | no | | /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | | /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | | /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | @@ -2544,7 +511,9 @@ | /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | | /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | | /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/7-0-removals-deprecations | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/a-command-palette-is-born | 0 | 0 | 20 | 0 | 0 | yes | | /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | | /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | | /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | @@ -2557,23 +526,29 @@ | /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | | /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | +| /changelog/compare-page-ga | 0 | 0 | 0 | 20 | 30 | yes | | /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | | /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/deep-search-evaluator | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | | /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | +| /changelog/deep-search-pdf-support | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | | /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/guided-diff-tour-beta | 0 | 0 | 0 | 40 | 0 | yes | | /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | | /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | | /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | | /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | | /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | | /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | | /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | | /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | | /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/mcp-sourcegraph-analytics | 0 | 0 | 40 | 0 | 0 | yes | | /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | | /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../.viminfo | 0 | 0 | 0 | 10 | 0 | no | @@ -2585,17 +560,22 @@ | /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/model-updates | 0 | 0 | 0 | 0 | 30 | yes | | /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/new-compare-page | 0 | 0 | 20 | 0 | 0 | yes | | /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | | /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | | /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/releases/6.12 | 0 | 0 | 50 | 0 | 0 | no | +| /changelog/releases/7.0.2178 | 0 | 0 | 10 | 0 | 0 | no | | /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | | /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | | /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | | /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/repository-overview | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | | /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | | /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | @@ -2603,11 +583,15 @@ | /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | | /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | +| /changelog/self-hosted/server | 0 | 0 | 110 | 0 | 0 | no | | /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | +| /changelog/site-admin-updates | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 0 | 0 | 20 | 0 | 0 | yes | | /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | | /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | | /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/sourcegraph-analytics | 0 | 0 | 30 | 0 | 0 | yes | | /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | | /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | @@ -2617,9 +601,9 @@ | /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | | /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | | /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | +| /changelog/whats-new | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | | /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | | /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | @@ -2634,6 +618,7 @@ | /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | | /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | +| /docs/admin | 0 | 0 | 140 | 0 | 0 | yes | | /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | @@ -2648,7 +633,9 @@ | /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | | /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | | /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 0 | 0 | 60 | 0 | 0 | yes | +| /docs/admin/code-hosts/github | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/config | 0 | 0 | 430 | 0 | 0 | no | | /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | | /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | @@ -2658,16 +645,17 @@ | /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | | /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | +| /docs/admin/config/site-config | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 310 | 0 | 0 | no | | /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 240 | 0 | 0 | no | | /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 180 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | @@ -2686,10 +674,13 @@ | /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | | /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | +| /docs/admin/how-to/export-search-results | 0 | 0 | 0 | 0 | 30 | yes | | /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | +| /docs/admin/how-to/monorepo-issues | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/admin/how-to/mutate-user-api | 0 | 0 | 0 | 0 | 20 | yes | | /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | | /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | @@ -2710,6 +701,7 @@ | /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | +| /docs/admin/migration | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | | /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | @@ -2720,16 +712,23 @@ | /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | | /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | | /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | +| /docs/admin/permissions/api | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/pings | 0 | 0 | 60 | 0 | 0 | yes | | /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | | /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | | /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | +| /docs/admin/privileges | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/admin/repo/permissions | 0 | 0 | 380 | 0 | 0 | no | | /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | +| /docs/admin/scim | 0 | 0 | 20 | 0 | 0 | yes | | /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | | /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/admin/telemetry/protocol | 0 | 0 | 0 | 0 | 10 | yes | | /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | +| /docs/admin/updates/epa/epa.html | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | @@ -2738,7 +737,8 @@ | /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | | /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | -| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | +| /docs/analytics/pcw | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/api/graphql/examples | 0 | 0 | 120 | 0 | 0 | no | | /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | | /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | | /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | @@ -2746,14 +746,12 @@ | /docs/app | 0 | 0 | 10 | 0 | 0 | no | | /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | | /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | -| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | | /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | | /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | | /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | @@ -2761,15 +759,23 @@ | /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | | /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | +| /docs/beta-and-experimental | 0 | 0 | 20 | 0 | 0 | yes | | /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | | /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | | /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | +| /docs/CHANGELOG | 0 | 0 | 60 | 0 | 0 | no | | /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | +| /docs/cli/references | 0 | 0 | 0 | 0 | 30 | yes | | /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | | /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cli/references/config | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/cli/references/config/get | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/delete | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/publish | 0 | 0 | 0 | 0 | 10 | yes | | /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cloud | 0 | 0 | 0 | 0 | 10 | yes | | /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights | 0 | 0 | 90 | 0 | 0 | no | | /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | @@ -2777,31 +783,30 @@ | /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | -| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | -| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 550 | 0 | 0 | no | | /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | | /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | | /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | -| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 180 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | -| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | | /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 580 | 0 | 0 | no | | /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | | /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | | /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1550 | 0 | 0 | no | | /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | @@ -2818,44 +823,55 @@ | /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | -| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1020 | 0 | 0 | no | | /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-insights/explanations/code-insights-filters | 0 | 0 | 60 | 0 | 0 | yes | +| /docs/code-insights/references/common-use-cases | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/code-insights/references/repository-scope | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-navigation/auto_indexing | 0 | 0 | 390 | 0 | 0 | no | | /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | | /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-go-repository | 0 | 0 | 0 | 0 | 30 | yes | | /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1920 | 0 | 0 | no | | /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | -| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | -| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-navigation/troubleshooting | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code-search/code-navigation | 0 | 0 | 580 | 0 | 0 | no | | /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | | /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | | /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 270 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | | /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | | /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 580 | 0 | 0 | no | | /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | +| /docs/code-search/types/fuzzy | 0 | 0 | 0 | 0 | 20 | yes | | /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/capabilities | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | +| /docs/cody/capabilities/auto-edit | 0 | 0 | 10 | 0 | 0 | yes | | /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | -| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | +| /docs/cody/clients/install-neovim | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-visual-studio | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/cody/clients/model-configuration | 0 | 0 | 130 | 0 | 0 | no | | /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | | /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | @@ -2864,20 +880,24 @@ | /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | | /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | | /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | +| /docs/cody/explanations/cody_gateway | 0 | 0 | 20 | 0 | 0 | no | | /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | | /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | +| /docs/cody/faq | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | | /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | | /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | | /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | | /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | | /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | | /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | | /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | | /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs | 0 | 0 | 0 | 20 | 0 | no | | /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | | /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | | /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | @@ -2887,13 +907,22 @@ | /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | +| /docs/docs/batch-changes/configuring-credentials | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/publishing-changesets | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/quickstart | 0 | 0 | 0 | 20 | 0 | no | +| /docs/docs/cli | 0 | 0 | 0 | 10 | 0 | no | | /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | | /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | | /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | | /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | +| /docs/docs/self-hosted/deploy/kubernetes | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgres12-end-of-life-notice | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgresql-collation-version-mismatch-resolution | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/troubleshooting-upgrades | 0 | 0 | 0 | 10 | 0 | no | | /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | +| /docs/features/api | 0 | 0 | 0 | 10 | 0 | no | | /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | | /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | @@ -2906,9 +935,11 @@ | /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | | /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | | /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/integration/editor | 0 | 0 | 0 | 0 | 10 | yes | | /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | | /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | | /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/llms.txt | 0 | 0 | 10 | 0 | 0 | no | | /docs/own | 0 | 0 | 60 | 0 | 0 | no | | /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | | /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | @@ -2916,7 +947,7 @@ | /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | | /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | | /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 830 | 0 | 0 | no | | /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | | /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | | /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | @@ -2929,22 +960,30 @@ | /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | | /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | +| /docs/self-hosted/deploy/without-service-discovery | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/self-hosted/deployment-best-practices | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 30 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | | /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | | /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | | /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | +| /docs/self-hosted/external-services/postgres | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | | /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | | /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | | /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/self-hosted/observability | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | | /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | | /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/updates/migrator | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | +| /docs/sssiedn304c0d66pp70617468xsx | 0 | 0 | 0 | 20 | 0 | no | | /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | | /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | @@ -2962,7 +1001,6 @@ | /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | | /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | @@ -2978,12 +1016,11 @@ | /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | -| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 90 | 0 | 0 | no | | /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | -| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | -| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | @@ -2995,12 +1032,11 @@ | /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | -| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | @@ -3010,6 +1046,7 @@ | /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4 | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | @@ -3049,5 +1086,6 @@ | /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.7/own | 0 | 0 | 40 | 0 | 0 | no | | /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | | /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | diff --git a/viewership-metrics/reports/page-views-by-errors.md b/viewership-metrics/reports/page-views-by-errors.md index 3dae7ed5c..31b8da339 100644 --- a/viewership-metrics/reports/page-views-by-errors.md +++ b/viewership-metrics/reports/page-views-by-errors.md @@ -1,29 +1,27 @@ # Page views by error count (404 + 5xx) (last 90 days) -- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Window: 2026-06-12T06:00:00.000Z to 2026-09-10T05:00:00.000Z (UTC) - Host: sourcegraph.com; paths: /docs, /changelog, /blog -- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN -- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Filters: Bot Management likely_human; GET; excluding ASN Hetzner Online GmbH; excluding countries CN. Requests and Visits also require JS detection passed, which excludes the first page of each visit. +- Totals: 1079 paths, 7420 requests, 3310 visits, 64680 3xx, 16240 404s, 760 5xx - Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). - 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. -- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. +- Sitemap: 160 of 1079 paths are in https://sourcegraph.com/sitemap.xml, with 6310 of 7420 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. | Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | | --- | ---: | ---: | ---: | ---: | ---: | --- | -| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | -| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | -| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | -| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | -| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3370 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 990 | 0 | no | +| /docs | 440 | 160 | 50 | 0 | 260 | yes | +| /blog/feed | 0 | 0 | 0 | 220 | 0 | no | | /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | -| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | | /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | | /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | +| /blog/cody-context-architecture | 0 | 0 | 0 | 130 | 0 | no | | /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | | /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | | /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | | /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | -| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | | /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | | /blog/_ | 0 | 0 | 0 | 90 | 0 | no | | /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | @@ -31,7 +29,9 @@ | /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | | /blog/go/gophercon-2018-adventures-in-cgo-performance | 0 | 0 | 0 | 90 | 0 | no | | /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 90 | 0 | no | | /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | +| /blog/release/5.1 | 0 | 0 | 0 | 90 | 0 | no | | /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | | /blog/scip | 0 | 0 | 0 | 90 | 0 | no | | /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | @@ -56,7 +56,7 @@ | /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | | /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | | /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | -| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | +| /docs/cody | 120 | 120 | 100 | 0 | 60 | yes | | /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | | /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | @@ -65,9 +65,8 @@ | /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | -| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/compare-page-ga | 0 | 0 | 0 | 20 | 30 | yes | | /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | -| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | | /blog/117580140734 | 0 | 0 | 0 | 40 | 0 | no | | /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | | /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | @@ -78,7 +77,6 @@ | /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | | /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | | /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | -| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | | /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | | /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | | /blog/release | 0 | 0 | 0 | 40 | 0 | no | @@ -96,7 +94,7 @@ | /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | | /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | | /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | +| /changelog/guided-diff-tour-beta | 0 | 0 | 0 | 40 | 0 | yes | | /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | | /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | | /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | @@ -122,9 +120,10 @@ | /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | | /blog/go/idiomatic-go | 0 | 0 | 0 | 30 | 0 | no | | /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | +| /blog/introducing-scip | 0 | 0 | 0 | 30 | 0 | no | | /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | | /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | -| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | +| /blog/owning-a-codebase | 0 | 0 | 0 | 30 | 0 | yes | | /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | | /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | | /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | @@ -132,7 +131,6 @@ | /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | | /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | | /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | @@ -141,7 +139,7 @@ | /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | | /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | | /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /changelog/model-updates | 0 | 0 | 0 | 0 | 30 | yes | | /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | | /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | | /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | @@ -149,14 +147,11 @@ | /changelog/static../logs/admin_sourcegraph.txt | 0 | 0 | 0 | 30 | 0 | no | | /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | | /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | -| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | -| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | -| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | -| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | -| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | -| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | -| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | +| /docs/admin/how-to/export-search-results | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/admin/search | 40 | 40 | 0 | 0 | 30 | yes | +| /docs/cli/references | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/code-navigation/how-to/index-a-go-repository | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-neovim | 0 | 0 | 0 | 0 | 30 | yes | | /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | | /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | | /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | @@ -166,7 +161,7 @@ | /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | | /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | | /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | -| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/best-ai-coding-tools | 50 | 0 | 0 | 20 | 0 | yes | | /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | | /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | | /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | @@ -195,7 +190,6 @@ | /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | | /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | | /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | -| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/admin../actuator/env | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/gophercon-2018-from-prototype-to-production-lessons-from-building-and | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/gophercon-2018-rethinking-classical-concurrency-patterns | 0 | 0 | 0 | 20 | 0 | no | @@ -203,6 +197,7 @@ | /blog/go/lightning-talks-1 | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/management//httptrace | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | +| /blog/graphql/building-native-mobile-apps-with-graphql | 0 | 0 | 0 | 20 | 0 | no | | /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | | /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | | /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | @@ -239,16 +234,17 @@ | /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | | /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | | /blog/rss | 0 | 0 | 0 | 20 | 0 | no | -| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/sast-vs-dast | 0 | 0 | 0 | 20 | 0 | yes | | /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-3.1/blog | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-3.17 | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | | /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | | /blog/strange-loop/strange-loop-2019-improving-law-interpretability-using-nlp | 0 | 0 | 0 | 20 | 0 | no | -| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | @@ -273,7 +269,7 @@ | /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | | /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | | /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | | /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | | /changelog/metrics../configs/sourcegraph_1.yml | 0 | 0 | 0 | 20 | 0 | no | @@ -294,21 +290,23 @@ | /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | | /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | +| /docs/admin/how-to/mutate-user-api | 0 | 0 | 0 | 0 | 20 | yes | | /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | -| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | +| /docs/cli/references/config/get | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/delete | 0 | 0 | 0 | 0 | 20 | yes | | /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | -| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | -| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | -| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | +| /docs/code-insights/references/repository-scope | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-navigation/troubleshooting | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-search/types/fuzzy | 0 | 0 | 0 | 0 | 20 | yes | | /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | +| /docs/deep-search | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/docs | 0 | 0 | 0 | 20 | 0 | no | +| /docs/docs/batch-changes/quickstart | 0 | 0 | 0 | 20 | 0 | no | | /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | +| /docs/self-hosted/deploy/without-service-discovery | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/sssiedn304c0d66pp70617468xsx | 0 | 0 | 0 | 20 | 0 | no | | /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | | /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | | /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | @@ -316,7 +314,7 @@ | /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | | /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | | /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | -| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 120 | 0 | 0 | 10 | 0 | yes | | /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | | /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | | /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | @@ -329,21 +327,18 @@ | /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | | /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | | /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | | /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | | /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | | /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | | /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | | /blog/co | 0 | 0 | 0 | 10 | 0 | no | -| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | @@ -354,7 +349,6 @@ | /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | | /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | | /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | -| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | | /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | | /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | @@ -372,7 +366,6 @@ | /blog/go/gophercon-2019-detecting-incompatible-api-changes | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | -| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/peter-bourgon-on-the-history-of-go-kit-and-whats-next | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | @@ -407,7 +400,6 @@ | /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | | /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | | /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | | /blog/null | 0 | 0 | 0 | 10 | 0 | no | | /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | @@ -418,7 +410,6 @@ | /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | | /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | | /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | @@ -492,1116 +483,217 @@ | /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../logger/sourcegraphprod_20260901.log | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | | /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | | /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | | /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | | /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | -| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | -| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | -| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | +| /docs/admin/telemetry/protocol | 0 | 0 | 0 | 0 | 10 | yes | +| /docs/cli/references/extensions/publish | 0 | 0 | 0 | 0 | 10 | yes | +| /docs/cloud | 0 | 0 | 0 | 0 | 10 | yes | +| /docs/code-insights/quickstart | 20 | 20 | 0 | 0 | 10 | yes | | /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/configuring-credentials | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/publishing-changesets | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/cli | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/deploy/kubernetes | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgres12-end-of-life-notice | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgresql-collation-version-mismatch-resolution | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/troubleshooting-upgrades | 0 | 0 | 0 | 10 | 0 | no | +| /docs/features/api | 0 | 0 | 0 | 10 | 0 | no | | /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | | /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | +| /docs/integration/editor | 0 | 0 | 0 | 0 | 10 | yes | | /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | -| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | -| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | -| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | -| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | -| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | -| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | -| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | -| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | -| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | -| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | -| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | -| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | -| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | -| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | -| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | -| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | -| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | -| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | -| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | -| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | -| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | -| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | -| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | -| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | -| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | -| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | -| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | -| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | -| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | -| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | -| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | -| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | -| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | -| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | -| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | -| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | -| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | -| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | -| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | -| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | -| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | -| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | -| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | -| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | -| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | -| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | -| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | -| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | -| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | -| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | -| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | -| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | -| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | -| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | -| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | -| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | -| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | -| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | -| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | -| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | -| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | -| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | -| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | -| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | -| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | -| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | -| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | -| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | -| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | -| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | -| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | -| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | -| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | -| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | -| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | -| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | -| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | -| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | -| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | -| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | -| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | -| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | -| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | +| /blog | 60 | 40 | 90 | 0 | 0 | yes | +| /blog/a-note-from-dan | 40 | 0 | 20 | 0 | 0 | yes | +| /blog/agentic-coding | 100 | 100 | 0 | 0 | 0 | yes | +| /blog/ai-code-generation | 50 | 0 | 70 | 0 | 0 | yes | +| /blog/ai-code-refactoring | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 30 | 20 | 0 | 0 | 0 | yes | +| /blog/ai-developer-tools | 120 | 80 | 0 | 0 | 0 | yes | +| /blog/anatomy-of-a-coding-assistant | 0 | 0 | 20 | 0 | 0 | no | +| /blog/announcing-code-insights | 40 | 40 | 0 | 0 | 0 | no | +| /blog/announcing-our-partnership-with-dx | 20 | 20 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 40 | 20 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-app | 40 | 40 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraphs-series-d-round | 80 | 80 | 0 | 0 | 0 | no | +| /blog/automated-code-review-tools | 90 | 80 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-assistant | 30 | 10 | 0 | 0 | 0 | yes | +| /blog/building-conc-better-structured-concurrency-for-go | 10 | 10 | 0 | 0 | 0 | no | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 50 | 50 | 0 | 0 | 0 | yes | +| /blog/claude-3-5-sonnet-now-available-in-cody | 40 | 40 | 0 | 0 | 0 | no | +| /blog/claude-code-file-picker-symbol-ranking | 30 | 10 | 0 | 0 | 0 | yes | +| /blog/code-complexity | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-techniques | 60 | 20 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 10 | 10 | 0 | 0 | 0 | yes | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 90 | 70 | 50 | 0 | 0 | yes | +| /blog/cody-enterprise-june-2024 | 0 | 0 | 20 | 0 | 0 | no | +| /blog/cody-is-generally-available | 10 | 10 | 0 | 0 | 0 | no | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 10 | 10 | 0 | 0 | 0 | no | +| /blog/combining-chat-and-search | 0 | 0 | 10 | 0 | 0 | yes | | /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | -| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | -| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | -| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | -| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | -| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | -| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | -| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | -| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | -| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | -| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | -| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | -| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | -| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | -| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | -| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | -| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | -| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | -| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | -| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | -| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | -| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | -| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | -| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | -| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | -| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | -| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | -| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | -| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | -| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | -| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | -| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | -| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | -| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | -| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | -| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | -| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | -| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | +| /blog/compliance-first-ai-proving-agent-provenance | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/context-engineering | 20 | 20 | 10 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 90 | 90 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 30 | 20 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 50 | 30 | 0 | 0 | 0 | yes | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 10 | 0 | 0 | 0 | 0 | yes | +| /blog/dev-tool-time-seth-vargo | 30 | 30 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-theprimeagen | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 20 | 20 | 0 | 0 | 0 | no | +| /blog/documentation-as-code | 10 | 0 | 0 | 0 | 0 | yes | | /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | -| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | -| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | -| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | -| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | -| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | -| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | -| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | -| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | -| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | -| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | -| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | -| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | -| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | -| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | -| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | -| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | -| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | -| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | -| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | -| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | -| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | -| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | -| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | -| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | -| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | -| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | -| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | -| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | -| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | -| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | -| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | -| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | -| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/how-cody-understands-your-codebase | 40 | 40 | 20 | 0 | 0 | no | +| /blog/how-to-search-cheat-sheet | 60 | 60 | 0 | 0 | 0 | no | +| /blog/introducing-agentic-chat | 0 | 0 | 110 | 0 | 0 | yes | | /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | -| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | -| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | -| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | -| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | -| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | -| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | -| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | -| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | -| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | -| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | -| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | -| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | -| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | -| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | -| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | -| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | -| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | -| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | -| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | -| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | -| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | -| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | -| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | -| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | -| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | -| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | -| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | -| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | +| /blog/introducing-enterprise-ai-agents | 0 | 0 | 20 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-enterprise-starter | 0 | 0 | 10 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-server-2-6 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 0 | 0 | 10 | 0 | 0 | yes | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 60 | 0 | 0 | 0 | 0 | yes | +| /blog/large-scale-code-changes | 80 | 40 | 0 | 0 | 0 | yes | +| /blog/local-code-completion-with-ollama-and-cody | 0 | 0 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 0 | 0 | 10 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 0 | 0 | 10 | 0 | 0 | no | +| /blog/monorepo-vs-polyrepo | 40 | 0 | 0 | 0 | 0 | yes | | /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | -| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | -| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | -| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | -| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | -| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | -| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | -| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | -| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | -| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | -| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | -| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | -| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | -| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | -| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | -| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | -| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | -| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | -| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | -| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | -| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | -| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | -| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | -| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | -| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | -| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | -| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | -| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | -| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | -| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | -| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | -| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | -| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | -| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | -| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | -| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | -| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | -| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | -| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | -| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | -| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | -| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | -| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | -| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | -| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | -| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | -| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | -| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | -| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | -| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | -| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | -| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | -| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | -| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | -| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | -| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | -| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | -| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | -| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | -| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | -| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | -| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | -| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | -| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | -| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | -| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | -| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | -| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | -| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | -| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | -| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | -| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | -| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | -| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | -| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | -| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | -| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | -| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | -| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | -| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | -| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | -| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | -| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | -| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | -| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | -| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | -| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | -| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | -| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | -| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | -| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | -| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | -| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | -| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | -| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | -| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | -| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | -| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | -| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | -| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | -| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | -| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | -| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | -| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | -| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | -| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | -| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | -| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | -| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | -| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | -| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | -| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | -| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | -| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | -| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | -| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | -| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | -| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | -| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | +| /blog/nine-circles-of-dependency-hell | 20 | 20 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 0 | 0 | 30 | 0 | 0 | yes | +| /blog/revenge-of-the-junior-developer | 120 | 0 | 0 | 0 | 0 | yes | +| /blog/rss.xml | 0 | 0 | 21640 | 0 | 0 | no | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 30 | 30 | 10 | 0 | 0 | no | +| /blog/series-c-with-sequoia | 60 | 60 | 0 | 0 | 0 | no | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 10 | 0 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/the-death-of-the-junior-developer | 40 | 20 | 60 | 0 | 0 | no | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 40 | 40 | 0 | 0 | 0 | yes | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 10 | 10 | 0 | 0 | 0 | yes | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 70 | 70 | 0 | 0 | 0 | yes | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 0 | 0 | 10 | 0 | 0 | yes | +| /blog/why-coding-agents-fail-large-codebases | 30 | 0 | 0 | 0 | 0 | yes | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 20 | 20 | 0 | 0 | 0 | yes | +| /blog/why-your-migration-tools-are-failing-your-engineers | 20 | 0 | 0 | 0 | 0 | yes | +| /changelog | 1920 | 70 | 150 | 0 | 0 | yes | +| /changelog/2026-03-23 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/2026-03-30 | 0 | 0 | 20 | 0 | 0 | no | +| /changelog/2026-08-10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-09-07 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/a-command-palette-is-born | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 10 | 10 | 0 | 0 | 0 | yes | | /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | -| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | -| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | -| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | -| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | -| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | -| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | -| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | -| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | -| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | -| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | -| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | -| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | -| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | -| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | -| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | -| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | -| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | -| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | -| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | -| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | -| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | -| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | -| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | -| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | -| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | -| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | -| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | -| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | -| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | -| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | -| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | -| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | -| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | -| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | -| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | -| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | -| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | -| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | -| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | -| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | -| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | -| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | -| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | -| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | -| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | -| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | -| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | -| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | -| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | -| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | -| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | -| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | -| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | -| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | -| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | -| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | -| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | -| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | -| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | -| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | -| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | -| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | -| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | -| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | -| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | -| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | -| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | -| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | -| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | -| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | -| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | -| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | -| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | -| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | -| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | -| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | -| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | -| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | -| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | -| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | -| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | -| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | -| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | -| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | -| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | -| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | -| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | +| /changelog/code-finder-ga | 20 | 20 | 0 | 0 | 0 | yes | +| /changelog/deep-search-evaluator | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/deep-search-pdf-support | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/mcp-dcr | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/mcp-sourcegraph-analytics | 0 | 0 | 40 | 0 | 0 | yes | +| /changelog/new-compare-page | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/releases | 90 | 90 | 230 | 0 | 0 | yes | +| /changelog/releases/6.12 | 0 | 0 | 50 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2178 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/repository-overview | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/self-hosted/server | 0 | 0 | 110 | 0 | 0 | no | +| /changelog/site-admin-updates | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics | 0 | 0 | 30 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 40 | 40 | 0 | 0 | 0 | yes | +| /changelog/whats-new | 0 | 0 | 10 | 0 | 0 | yes | | /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | | /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | | /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | | /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | | /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | | /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | -| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | -| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | -| /docs/about | 20 | 20 | 0 | 0 | 0 | no | -| /docs/account | 30 | 30 | 0 | 0 | 0 | no | -| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | -| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /docs/admin | 0 | 0 | 140 | 0 | 0 | yes | | /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | -| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | -| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | -| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | -| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | -| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | -| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/auth/login_form | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | | /docs/admin/auth/saml_with_microsoft_adfs | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | -| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | | /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | -| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | -| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | -| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 0 | 0 | 60 | 0 | 0 | yes | +| /docs/admin/code-hosts/github | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitlab | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/admin/config | 0 | 0 | 430 | 0 | 0 | no | | /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | -| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | | /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | | /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | -| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | -| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | | /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | -| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | -| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/site-config | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | -| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 310 | 0 | 0 | no | | /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 240 | 0 | 0 | no | | /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 180 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | | /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | | /docs/admin/deploy/migrate-backup | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | | /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | | /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deployment_best_practices | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | | /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/executors/deploy_executors_dind | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/executors/deploy_executors_kubernetes | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | | /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | -| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/how-to | 20 | 0 | 0 | 0 | 0 | yes | | /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | | /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | -| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | | /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | -| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | +| /docs/admin/how-to/monorepo-issues | 0 | 0 | 30 | 0 | 0 | yes | | /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | | /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | -| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | | /docs/admin/how-to/update_repo_failure | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | | /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/http_https_configuration | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | -| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | | /docs/admin/install/docker-compose | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/install/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/install/docker-compose/migrate | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/install/docker/aws | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | @@ -1612,1353 +704,304 @@ | /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | -| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | +| /docs/admin/licensing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/migration | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | | /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | -| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | -| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | | /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | -| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | -| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | -| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | -| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | -| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /docs/admin/organizations | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/api | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/pings | 0 | 0 | 60 | 0 | 0 | yes | | /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | -| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | -| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | | /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | -| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | -| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | -| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | -| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/privileges | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/admin/repo/permissions | 0 | 0 | 380 | 0 | 0 | no | | /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | -| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | -| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/scim | 0 | 0 | 20 | 0 | 0 | yes | | /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | -| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/service-accounts | 20 | 0 | 0 | 0 | 0 | yes | | /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | -| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | | /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | -| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | -| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/epa/epa.html | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | -| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | | /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | -| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | | /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | -| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | -| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | -| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | -| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | -| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | -| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | +| /docs/agentic-batch-changes | 20 | 0 | 0 | 0 | 0 | yes | | /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | -| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | -| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | -| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | -| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | -| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | -| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | -| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | -| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | -| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/analytics/pcw | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/api | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/api/graphql/examples | 0 | 0 | 120 | 0 | 0 | no | | /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | -| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | | /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | -| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | -| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | -| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | -| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | -| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp | 100 | 90 | 0 | 0 | 0 | yes | | /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | -| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | | /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | -| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | -| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | -| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | -| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | -| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | +| /docs/api/stream-api | 10 | 10 | 0 | 0 | 0 | yes | | /docs/app | 0 | 0 | 10 | 0 | 0 | no | -| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | -| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | -| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | -| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | | /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | | /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | -| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | | /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | | /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | | /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | -| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | | /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | | /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | -| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | -| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | -| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | -| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | -| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | -| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | -| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/batch-changes | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/beta-and-experimental | 0 | 0 | 20 | 0 | 0 | yes | | /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | -| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | | /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | | /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | -| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | -| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | -| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | -| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | -| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | +| /docs/CHANGELOG | 0 | 0 | 60 | 0 | 0 | no | +| /docs/cli | 150 | 20 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 40 | 0 | 0 | 0 | 0 | yes | | /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | -| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cli/how-tos/managing-access-tokens | 60 | 0 | 0 | 0 | 0 | yes | | /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | | /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | -| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | -| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/cli/references/config | 0 | 0 | 10 | 0 | 0 | yes | | /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/version | 20 | 20 | 0 | 0 | 0 | yes | | /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | -| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | -| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights | 0 | 0 | 90 | 0 | 0 | no | | /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | | /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | | /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | -| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | -| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | -| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 550 | 0 | 0 | no | | /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | | /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | -| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 180 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | -| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | -| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | -| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | -| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 580 | 0 | 0 | no | | /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | | /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | -| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | -| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1550 | 0 | 0 | no | | /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | -| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | | /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | | /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | | /docs/code_search/explanations/features | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | | /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | | /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | -| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | -| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1020 | 0 | 0 | no | | /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | -| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | -| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | -| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | -| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | -| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | -| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-insights | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/code-insights-filters | 0 | 0 | 60 | 0 | 0 | yes | +| /docs/code-insights/references/common-use-cases | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/code-monitoring | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto_indexing | 0 | 0 | 390 | 0 | 0 | no | | /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | -| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | -| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | -| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 10 | 0 | 30 | 0 | 0 | yes | | /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | -| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | | /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | -| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | -| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1920 | 0 | 0 | no | | /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | -| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | -| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | -| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | -| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | -| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code-search | 100 | 60 | 0 | 0 | 0 | yes | +| /docs/code-search/code-navigation | 0 | 0 | 580 | 0 | 0 | no | | /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | -| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 270 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | | /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | -| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | -| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | -| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 580 | 0 | 0 | no | +| /docs/code-search/queries | 200 | 80 | 0 | 0 | 0 | yes | | /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | -| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | -| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/types/search-jobs | 70 | 0 | 0 | 0 | 0 | yes | | /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | -| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | -| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | -| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | -| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/working/search-contexts | 70 | 10 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-context-fetching | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit | 0 | 0 | 10 | 0 | 0 | yes | | /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | -| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | -| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | -| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | -| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | -| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | -| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | -| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-visual-studio | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-vscode | 60 | 0 | 0 | 0 | 0 | yes | +| /docs/cody/clients/model-configuration | 0 | 0 | 130 | 0 | 0 | no | | /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | -| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | | /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | | /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | | /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | -| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | | /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | -| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | | /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | -| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-configuration | 20 | 20 | 0 | 0 | 0 | yes | | /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | -| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/cody_gateway | 0 | 0 | 20 | 0 | 0 | no | | /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | | /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | | /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | -| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/faq | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | -| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | | /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | -| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | -| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | | /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | -| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | | /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | -| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | -| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | -| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | -| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | -| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/context-filters | 10 | 0 | 0 | 0 | 0 | yes | | /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | -| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | -| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | -| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | -| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | -| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | -| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev | 90 | 90 | 0 | 0 | 0 | no | | /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | -| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | | /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | -| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | -| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | | /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | | /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | | /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | -| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | -| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | -| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | -| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | -| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | | /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | | /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | | /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | -| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/admin/how-to/run-psql | 0 | 0 | 10 | 0 | 0 | no | | /docs/docs/admin/observability | 0 | 0 | 30 | 0 | 0 | no | -| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | | /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | -| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | -| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | -| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | | /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | -| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | | /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | -| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | | /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | -| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | -| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | | /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | -| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | -| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | -| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | -| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | -| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | -| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | -| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | -| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | -| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | -| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | -| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | -| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | | /docs/how-to-videos | 0 | 0 | 30 | 0 | 0 | no | | /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | -| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | -| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | -| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | -| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | -| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | -| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | -| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | | /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | -| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | | /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | -| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | | /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | | /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/integration/gitlab | 40 | 20 | 0 | 0 | 0 | yes | | /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | -| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | | /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | -| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | -| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | -| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | -| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | -| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | -| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/login | 320 | 320 | 0 | 0 | 0 | no | -| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | -| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/llms.txt | 0 | 0 | 10 | 0 | 0 | no | | /docs/nope | 10 | 10 | 0 | 0 | 0 | no | -| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | -| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | -| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | | /docs/own | 0 | 0 | 60 | 0 | 0 | no | | /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | | /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | -| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | | /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | | /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | -| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | -| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | -| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | -| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | -| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 830 | 0 | 0 | no | | /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | -| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | | /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | | /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | -| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | -| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | | /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | -| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | -| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | -| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | -| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | -| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | -| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | | /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | -| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose | 90 | 30 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 110 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 20 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | -| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | | /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | -| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | -| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deployment-best-practices | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/email | 30 | 30 | 0 | 0 | 0 | yes | | /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 30 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | | /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | -| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-config | 40 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | | /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | -| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | -| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | -| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | -| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services | 30 | 0 | 20 | 0 | 0 | yes | +| /docs/self-hosted/external-services/postgres | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | | /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | -| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | | /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | | /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | -| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | -| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/self-hosted/observability | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | | /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | -| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 40 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | | /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | -| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | -| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | -| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | -| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | -| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | -| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | -| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | -| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | -| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | -| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | -| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | -| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | +| /docs/technical-changelog | 10 | 10 | 0 | 0 | 0 | yes | | /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | -| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | -| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | -| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | -| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | -| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | -| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/user | 0 | 0 | 80 | 0 | 0 | no | | /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | | /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | | /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | -| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | | /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | | /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | -| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | | /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | -| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | | /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/5.10/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | | /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | @@ -2974,12 +1017,11 @@ | /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | -| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 90 | 0 | 0 | no | | /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | -| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | -| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | @@ -2991,12 +1033,11 @@ | /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | -| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | @@ -3006,6 +1047,7 @@ | /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4 | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | @@ -3045,9 +1087,5 @@ | /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | +| /docs/v/7.7/own | 0 | 0 | 40 | 0 | 0 | no | | /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | -| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | -| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | diff --git a/viewership-metrics/reports/page-views-by-path.md b/viewership-metrics/reports/page-views-by-path.md index e86d00ce0..797dd365d 100644 --- a/viewership-metrics/reports/page-views-by-path.md +++ b/viewership-metrics/reports/page-views-by-path.md @@ -1,16 +1,16 @@ # Page views by path (last 90 days) -- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Window: 2026-06-12T06:00:00.000Z to 2026-09-10T05:00:00.000Z (UTC) - Host: sourcegraph.com; paths: /docs, /changelog, /blog -- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN -- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Filters: Bot Management likely_human; GET; excluding ASN Hetzner Online GmbH; excluding countries CN. Requests and Visits also require JS detection passed, which excludes the first page of each visit. +- Totals: 1079 paths, 7420 requests, 3310 visits, 64680 3xx, 16240 404s, 760 5xx - Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). - 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. -- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. +- Sitemap: 160 of 1079 paths are in https://sourcegraph.com/sitemap.xml, with 6310 of 7420 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. | Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | | --- | ---: | ---: | ---: | ---: | ---: | --- | -| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | +| /blog | 60 | 40 | 90 | 0 | 0 | yes | | /blog/_ | 0 | 0 | 0 | 90 | 0 | no | | /blog////////////////////////////////////////////////////////////////////////////////////////////////////actuator/heapdump | 0 | 0 | 0 | 20 | 0 | no | | /blog/117135991499/5-surprisingly-painful-things-about-client-side-js | 0 | 0 | 0 | 30 | 0 | no | @@ -19,41 +19,28 @@ | /blog/117580140734/announcing-appdash-an-open-source-perf-tracing | 0 | 0 | 0 | 20 | 0 | no | | /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | | /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | -| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | -| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | | /blog/93793683802e220755a568.avi | 0 | 0 | 0 | 10 | 0 | no | | /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | -| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | | /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | -| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | | /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | -| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | +| /blog/a-note-from-dan | 40 | 0 | 20 | 0 | 0 | yes | | /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | -| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | -| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 120 | 0 | 0 | 10 | 0 | yes | | /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | | /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | -| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | | /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | | /blog/agent-skills | 0 | 0 | 0 | 30 | 0 | no | | /blog/agentic-batch-changes-is-now-in-public-beta | 0 | 0 | 0 | 10 | 0 | no | -| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | -| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | -| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | -| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 100 | 100 | 0 | 0 | 0 | yes | | /blog/ai-assisted-coding-with-cody-lessons-from-context-retrieval-and-evaluation-for-code-recommendations | 0 | 0 | 0 | 70 | 0 | no | -| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | +| /blog/ai-code-generation | 50 | 0 | 70 | 0 | 0 | yes | | /blog/ai-code-migration | 0 | 0 | 0 | 30 | 0 | no | -| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | -| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | +| /blog/ai-code-refactoring | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 30 | 20 | 0 | 0 | 0 | yes | | /blog/ai-coding-costs | 0 | 0 | 0 | 10 | 0 | no | -| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | -| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | +| /blog/ai-developer-tools | 120 | 80 | 0 | 0 | 0 | yes | | /blog/ai-native-codebases-2 | 0 | 0 | 0 | 30 | 0 | no | -| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | | /blog/alex-isken | 0 | 0 | 0 | 10 | 0 | no | -| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | | /blog/amp | 0 | 0 | 0 | 70 | 0 | no | | /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | | /blog/amp-ai-coding-agent | 0 | 0 | 0 | 20 | 0 | no | @@ -62,250 +49,135 @@ | /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | | /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | | /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | -| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | -| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | +| /blog/anatomy-of-a-coding-assistant | 0 | 0 | 20 | 0 | 0 | no | | /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | -| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | | /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | -| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | | /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | -| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | +| /blog/announcing-code-insights | 40 | 40 | 0 | 0 | 0 | no | | /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | -| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | -| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | -| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | -| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | -| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-our-partnership-with-dx | 20 | 20 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 40 | 20 | 0 | 0 | 0 | no | | /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | -| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-app | 40 | 40 | 0 | 0 | 0 | no | | /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | -| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | -| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | -| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraphs-series-d-round | 80 | 80 | 0 | 0 | 0 | no | | /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | | /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | -| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | -| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | -| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | +| /blog/automated-code-review-tools | 90 | 80 | 0 | 0 | 0 | yes | | /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | -| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | -| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | -| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/best-ai-coding-assistant | 30 | 10 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-tools | 50 | 0 | 0 | 20 | 0 | yes | | /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | -| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | -| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | | /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | | /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | | /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | -| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | -| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | | /blog/bin/register/XWiki/XWikiRegister | 0 | 0 | 0 | 30 | 0 | no | -| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | | /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | -| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | | /blog/browse-github-like-an-ide-with-the-sourcegraph-chrome-extension-9e279d2b98e9 | 0 | 0 | 0 | 90 | 0 | no | -| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | -| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | -| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | | /blog/building-a-testable-webapp | 0 | 0 | 0 | 60 | 0 | no | | /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | -| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | -| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | +| /blog/building-conc-better-structured-concurrency-for-go | 10 | 10 | 0 | 0 | 0 | no | | /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | -| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | -| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | -| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | | /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | -| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 50 | 50 | 0 | 0 | 0 | yes | | /blog/changes-to-sourcegraph-open-source-code | 0 | 0 | 0 | 20 | 0 | no | | /blog/changing-our-license | 0 | 0 | 0 | 20 | 0 | no | | /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | -| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | | /blog/chat-oriented-programming-in-action4 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | | /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | | /blog/chrome-extension-tooltips-and-seamless | 0 | 0 | 0 | 20 | 0 | no | -| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | -| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 40 | 40 | 0 | 0 | 0 | no | | /blog/claude-3.5-sonnet-now-available-in-cody | 0 | 0 | 0 | 70 | 0 | no | -| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | +| /blog/claude-code-file-picker-symbol-ranking | 30 | 10 | 0 | 0 | 0 | yes | | /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | | /blog/co | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-ai/how-cody-context-works | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | -| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/code-complexity | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 30 | 30 | 0 | 0 | 0 | yes | | /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | | /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | | /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | -| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | | /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | -| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | -| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | | /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | -| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | -| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | -| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | -| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-techniques | 60 | 20 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 10 | 10 | 0 | 0 | 0 | yes | | /blog/code-scanning-tools | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | -| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | -| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | -| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | | /blog/code-usage-examples-in-your-editor-as-you-type-f7fc89d894dd | 0 | 0 | 0 | 20 | 0 | no | -| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | -| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 90 | 70 | 50 | 0 | 0 | yes | | /blog/cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | | /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 130 | 0 | no | | /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | -| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | -| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | +| /blog/cody-enterprise-june-2024 | 0 | 0 | 20 | 0 | 0 | no | | /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | -| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | | /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | -| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | -| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | +| /blog/cody-is-generally-available | 10 | 10 | 0 | 0 | 0 | no | | /blog/cody-is-now-free-for-all-developers | 0 | 0 | 0 | 30 | 0 | no | | /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | -| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | | /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | | /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 70 | 70 | 0 | 0 | 0 | no | | /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 10 | 10 | 0 | 0 | 0 | no | | /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | | /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | +| /blog/combining-chat-and-search | 0 | 0 | 10 | 0 | 0 | yes | | /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | | /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | -| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | -| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | -| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | +| /blog/compliance-first-ai-proving-agent-provenance | 30 | 30 | 0 | 0 | 0 | yes | +| /blog/context-engineering | 20 | 20 | 10 | 0 | 0 | yes | | /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | | /blog/convoy-improved-their-developer-on-boarding-with-sourcegraph | 0 | 0 | 0 | 60 | 0 | no | -| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | -| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | -| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | -| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 90 | 90 | 0 | 0 | 0 | yes | | /blog/cyclomatic-complexity | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | -| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | -| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | -| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | -| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 30 | 20 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 50 | 30 | 0 | 0 | 0 | yes | | /blog/deep-search.md | 0 | 0 | 0 | 40 | 0 | no | -| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | -| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | -| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | -| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | -| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 10 | 0 | 0 | 0 | 0 | yes | | /blog/dev | 0 | 0 | 0 | 30 | 0 | no | -| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-seth-vargo | 30 | 30 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-theprimeagen | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 20 | 20 | 0 | 0 | 0 | no | | /blog/developer-experience-tools | 0 | 0 | 0 | 10 | 0 | no | -| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | -| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | | /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | | /blog/developer-productivity-with-ai-coding-assistants | 0 | 0 | 0 | 20 | 0 | no | -| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | | /blog/devops-transformation-a-complete-guide-for-2026.md | 0 | 0 | 0 | 30 | 0 | no | -| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | | /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | -| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | +| /blog/documentation-as-code | 10 | 0 | 0 | 0 | 0 | yes | | /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | -| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | | /blog/dump.zip | 0 | 0 | 0 | 20 | 0 | no | -| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | | /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | -| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | | /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | -| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | -| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | -| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | -| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | | /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | -| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | | /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | | /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | -| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | | /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | -| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | -| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | -| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | | /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | | /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | -| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | -| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | -| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | -| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | +| /blog/feed | 0 | 0 | 0 | 220 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3370 | 0 | no | | /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | -| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 990 | 0 | no | | /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | -| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | | /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | -| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | -| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | -| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 20 | 0 | 0 | 0 | 0 | yes | | /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | -| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | | /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | -| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | | /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | -| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | -| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | | /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | -| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | | /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | | /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | -| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | | /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /blog/go-at-the-darpa-cyber-grand-challenge-will-hawkins | 0 | 0 | 0 | 30 | 0 | no | | /blog/go-code-intelligence-on-sourcegraph-now-in-general-availability-ga-e2ebcddc7f45 | 0 | 0 | 0 | 10 | 0 | no | @@ -326,7 +198,6 @@ | /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | | /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | -| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | | /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | @@ -337,8 +208,6 @@ | /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/writing-network-clients-in-go-the-design-and-implementation-of-the-nats-client | 0 | 0 | 0 | 10 | 0 | no | -| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | -| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | | /blog/google-i-o-talk-building-sourcegraph-a-large-scale-code-search-cross-reference-engine-in-go-1f911b78a82e | 0 | 0 | 0 | 70 | 0 | no | | /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | | /blog/graph-based-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | @@ -346,94 +215,52 @@ | /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-native-mobile-apps-with-graphql | 0 | 0 | 0 | 20 | 0 | no | | /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | | /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | -| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | -| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | -| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | | /blog/heapdump.hprof | 0 | 0 | 0 | 10 | 0 | no | -| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | -| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | | /blog/how-cody-searches-your-codebase | 0 | 0 | 0 | 80 | 0 | no | -| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | +| /blog/how-cody-understands-your-codebase | 40 | 40 | 20 | 0 | 0 | no | | /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | | /blog/how-nativeScript-onboards-new-open-source-contributors | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | -| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | | /blog/how-sourcegraph-approaches-on-premise-ai | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | -| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | -| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | | /blog/how-to-read-code-effectively-in-2020 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | +| /blog/how-to-search-cheat-sheet | 60 | 60 | 0 | 0 | 0 | no | | /blog/how-to-search-with-sourcegraph-using-literal-patterns | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | | /blog/how-to-use-cody-in-large-codebases | 0 | 0 | 0 | 10 | 0 | no | | /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | | /blog/how-to-write-good-coding-agent-instructions | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | -| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | | /blog/img | 0 | 0 | 0 | 60 | 0 | no | | /blog/img/payments | 0 | 0 | 0 | 40 | 0 | no | | /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | | /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | | /blog/improving-code-search | 0 | 0 | 0 | 20 | 0 | no | -| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | -| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | | /blog/index.xml | 0 | 0 | 0 | 10 | 0 | no | -| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | | /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | | /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | -| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | -| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | -| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | | /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | -| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | +| /blog/introducing-agentic-chat | 0 | 0 | 110 | 0 | 0 | yes | | /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | -| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | | /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | | /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | | /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | -| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | -| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | -| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | +| /blog/introducing-enterprise-ai-agents | 0 | 0 | 20 | 0 | 0 | yes | | /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | -| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | -| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | +| /blog/introducing-scip | 0 | 0 | 0 | 30 | 0 | no | +| /blog/introducing-sourcegraph-enterprise-starter | 0 | 0 | 10 | 0 | 0 | yes | | /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | -| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | -| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-server-2-6 | 10 | 10 | 0 | 0 | 0 | no | +| /blog/introducing-the-new-sourcegraph-changelog | 0 | 0 | 10 | 0 | 0 | yes | | /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | | /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | | /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | -| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | | /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | -| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 60 | 0 | 0 | 0 | 0 | yes | | /blog/keeping-it-boring-and-relevant-with-bm25f/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | +| /blog/large-scale-code-changes | 80 | 40 | 0 | 0 | 0 | yes | | /blog/lee-byron-kicks-things-off | 0 | 0 | 0 | 20 | 0 | no | -| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | | /blog/lessons-from-ai-coding-assistants-context-retrieval-and-evaluation | 0 | 0 | 0 | 10 | 0 | no | -| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | -| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | -| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | -| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | | /blog/live/gophercon2015 | 0 | 0 | 0 | 20 | 0 | no | | /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | | /blog/live/gophercon2015/123586421955 | 0 | 0 | 0 | 10 | 0 | no | @@ -454,147 +281,77 @@ | /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | | /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | | /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | -| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 90 | 0 | no | | /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | | /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | | /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | | /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | -| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | -| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | +| /blog/local-code-completion-with-ollama-and-cody | 0 | 0 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 0 | 0 | 10 | 0 | 0 | no | | /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | | /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | | /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | -| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | | /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | -| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | -| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | -| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | -| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 0 | 0 | 10 | 0 | 0 | no | | /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | -| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | -| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | +| /blog/monorepo-vs-polyrepo | 40 | 0 | 0 | 0 | 0 | yes | | /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | | /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | -| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | | /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | -| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | -| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | | /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | -| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | | /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | | /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | -| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | -| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | -| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | -| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | +| /blog/nine-circles-of-dependency-hell | 20 | 20 | 0 | 0 | 0 | no | | /blog/null | 0 | 0 | 0 | 10 | 0 | no | | /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | -| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | | /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | -| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | | /blog/openai-o1-for-cody/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | -| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | -| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | | /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | -| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | | /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | -| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | | /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | -| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | -| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | -| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | -| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | -| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | +| /blog/owning-a-codebase | 0 | 0 | 0 | 30 | 0 | yes | | /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | -| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | -| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 30 | 30 | 0 | 0 | 0 | no | | /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | | /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | -| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 0 | 0 | 30 | 0 | 0 | yes | | /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | -| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | | /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | | /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | -| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | -| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | -| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | -| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | | /blog/release | 0 | 0 | 0 | 40 | 0 | no | -| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | | /blog/release-anxiety | 0 | 0 | 0 | 20 | 0 | no | -| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | -| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | | /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | | /blog/release/3.29 | 0 | 0 | 0 | 20 | 0 | no | | /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/5.1 | 0 | 0 | 0 | 90 | 0 | no | | /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | | /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | | /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | -| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | -| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | +| /blog/revenge-of-the-junior-developer | 120 | 0 | 0 | 0 | 0 | yes | | /blog/rss | 0 | 0 | 0 | 20 | 0 | no | -| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /blog/rss.xml | 0 | 0 | 21640 | 0 | 0 | no | | /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/sast-vs-dast | 0 | 0 | 0 | 20 | 0 | yes | | /blog/scip | 0 | 0 | 0 | 90 | 0 | no | | /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | -| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 20 | 0 | 0 | 0 | 0 | yes | | /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | | /blog/search-based-vs-semantic-code-search | 0 | 0 | 0 | 40 | 0 | no | -| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | -| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | -| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 30 | 30 | 10 | 0 | 0 | no | | /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | -| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | -| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | -| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | +| /blog/series-c-with-sequoia | 60 | 60 | 0 | 0 | 0 | no | | /blog/series-d | 0 | 0 | 0 | 10 | 0 | no | -| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | -| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | -| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | -| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | -| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | -| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | | /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | -| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | -| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | | /blog/sosf-1-kickoff | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | | /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.1/blog | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | @@ -602,36 +359,23 @@ | /blog/sourcegraph-3.9 | 0 | 0 | 0 | 60 | 0 | no | | /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-5-3 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | | /blog/sourcegraph-5.3-changelog | 0 | 0 | 0 | 60 | 0 | no | | /blog/sourcegraph-7 | 0 | 0 | 0 | 40 | 0 | no | | /blog/sourcegraph-7-0 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | | /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | -| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | -| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | | /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | -| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | | /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | -| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 10 | 0 | 0 | 0 | 0 | yes | | /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | | /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | | /blog/staff/mammals-coombe-bissett-down-fox | 0 | 0 | 0 | 10 | 0 | no | | /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | -| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | -| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 30 | 30 | 0 | 0 | 0 | yes | | /blog/steve-yegge | 0 | 0 | 0 | 10 | 0 | no | | /blog/steve-yegge-joins-sourcegraph | 0 | 0 | 0 | 40 | 0 | no | | /blog/strange-loop/strange-loop-2019-everything-you-wanted-to-know-about-distributed-tracing | 0 | 0 | 0 | 10 | 0 | no | @@ -639,276 +383,115 @@ | /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | | /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | | /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | -| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | -| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | -| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | | /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | | /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | | /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-death-of-the-junior-develop | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | -| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | +| /blog/the-death-of-the-junior-developer | 40 | 20 | 60 | 0 | 0 | no | | /blog/the-end-of-programming-as-we-know-it | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | | /blog/the-evolution-of-code-intelligence-beyond-search.md | 0 | 0 | 0 | 40 | 0 | no | | /blog/the-future-of-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-future-of-code-navigation | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | | /blog/the-future-of-go | 0 | 0 | 0 | 40 | 0 | no | -| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | -| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | | /blog/the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b | 0 | 0 | 0 | 40 | 0 | no | -| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | | /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | -| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | | /blog/the-lifecycle-of-a-code-ai-query | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-lifecycle-of-a-cody-request | 0 | 0 | 0 | 40 | 0 | no | | /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-new-era-of-go-package-management | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | -| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 40 | 40 | 0 | 0 | 0 | yes | | /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively/g'p9ro0ywy | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | -| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | | /blog/the-sourcegraph-mcp-server | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-sourcegraph-test-12-more-steps-to-better-code | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | -| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | -| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | | /blog/throwingawesomemeetups | 0 | 0 | 0 | 10 | 0 | no | | /blog/thunder-talks | 0 | 0 | 0 | 20 | 0 | no | | /blog/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c | 0 | 0 | 0 | 80 | 0 | no | -| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | | /blog/top-150-most-used-golang-functions | 0 | 0 | 0 | 10 | 0 | no | -| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | -| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | -| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | -| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | | /blog/understanding-channels-kavya-joshi | 0 | 0 | 0 | 20 | 0 | no | -| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | -| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | | /blog/upgraded-claude-3.5-sonnet-available-in-cody | 0 | 0 | 0 | 10 | 0 | no | -| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | -| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | -| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | | /blog/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | | /blog/ways-to-use-sourcegraph-extension-for-vs-code | 0 | 0 | 0 | 10 | 0 | no | -| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | | /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | | /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | | /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | -| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | -| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 10 | 10 | 0 | 0 | 0 | yes | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 70 | 70 | 0 | 0 | 0 | yes | | /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | -| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 0 | 0 | 10 | 0 | 0 | yes | | /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | | /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | -| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | -| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | -| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | -| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | -| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | -| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | +| /blog/why-coding-agents-fail-large-codebases | 30 | 0 | 0 | 0 | 0 | yes | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 20 | 20 | 0 | 0 | 0 | yes | | /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | | /blog/why-we-built-cody | 0 | 0 | 0 | 10 | 0 | no | -| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | | /blog/why-we-switched-to-zoekt-for-search | 0 | 0 | 0 | 20 | 0 | no | -| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | -| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | +| /blog/why-your-migration-tools-are-failing-your-engineers | 20 | 0 | 0 | 0 | 0 | yes | | /blog/write-for-us | 0 | 0 | 0 | 10 | 0 | no | -| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | | /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | -| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | | /blog/zoekt | 0 | 0 | 0 | 30 | 0 | no | -| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | | /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | -| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | | /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | -| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | +| /changelog | 1920 | 70 | 150 | 0 | 0 | yes | | /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | -| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | -| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | +| /changelog/2026-03-23 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/2026-03-30 | 0 | 0 | 20 | 0 | 0 | no | | /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | | /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | | /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | | /changelog/2026-05-05.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | | /changelog/2026-05-14 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | -| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | -| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | -| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | | /changelog/2026-06-22.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | | /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | | /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | -| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-08-10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 30 | 30 | 0 | 0 | 0 | no | | /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | +| /changelog/2026-09-07 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | -| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | +| /changelog/a-command-palette-is-born | 0 | 0 | 20 | 0 | 0 | yes | | /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | -| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 10 | 10 | 0 | 0 | 0 | yes | | /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | | /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | -| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | | /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | -| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | | /changelog/batch-spec-library-customizable.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | -| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | -| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | -| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/chat-full-width-vscode/logon/LogonPoint/index.html | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | | /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/claude-4-models-available | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | -| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | | /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/code-finder-ga | 20 | 20 | 0 | 0 | 0 | yes | | /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | -| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | | /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/compare-page-ga | 0 | 0 | 0 | 20 | 30 | yes | | /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | -| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | | /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | -| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | -| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | -| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/deep-search-evaluator | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | | /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | -| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | -| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | -| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | -| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | -| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | -| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | -| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | -| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | -| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | -| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | +| /changelog/deep-search-pdf-support | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | -| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | -| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | -| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | -| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | | /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | -| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | -| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | -| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | +| /changelog/guided-diff-tour-beta | 0 | 0 | 0 | 40 | 0 | yes | | /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | | /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | | /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | | /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | | /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | | /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | | /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | | /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | -| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | -| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | -| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | -| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | +| /changelog/mcp-dcr | 40 | 40 | 0 | 0 | 0 | yes | | /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | +| /changelog/mcp-sourcegraph-analytics | 0 | 0 | 40 | 0 | 0 | yes | | /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | | /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../.viminfo | 0 | 0 | 0 | 10 | 0 | no | @@ -920,150 +503,46 @@ | /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /changelog/model-updates | 0 | 0 | 0 | 0 | 30 | yes | | /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | -| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | -| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | -| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | -| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | -| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | -| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | -| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | +| /changelog/new-compare-page | 0 | 0 | 20 | 0 | 0 | yes | | /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | | /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | -| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | | /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | +| /changelog/releases | 90 | 90 | 230 | 0 | 0 | yes | | /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | -| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | -| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | -| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | -| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/6.12 | 0 | 0 | 50 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.0.2178 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 30 | 30 | 0 | 0 | 0 | no | | /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | -| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | -| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 10 | 10 | 0 | 0 | 0 | no | | /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | | /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | | /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | +| /changelog/repository-overview | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | | /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | | /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | | /changelog/self-hosted/deployment.yaml | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | | /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | | /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | +| /changelog/self-hosted/server | 0 | 0 | 110 | 0 | 0 | no | | /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | -| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | +| /changelog/site-admin-updates | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 0 | 0 | 20 | 0 | 0 | yes | | /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | | /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | | /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | -| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics | 0 | 0 | 30 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 40 | 40 | 0 | 0 | 0 | yes | | /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | -| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | -| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | | /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | @@ -1072,493 +551,100 @@ | /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | | /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | -| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | -| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | -| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | -| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | | /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | | /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | -| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | +| /changelog/whats-new | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | | /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | | /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | | /changelog/xscanlsimdfry/server | 0 | 0 | 0 | 80 | 0 | no | -| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | -| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | -| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | -| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | -| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | -| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | -| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | -| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | -| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | -| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | -| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | -| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | -| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | -| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | -| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | -| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | +| /docs | 440 | 160 | 50 | 0 | 260 | yes | | /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | | /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | | /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | | /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | | /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | | /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | | /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | -| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | | /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | | /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | -| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | | /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | | /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | -| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | -| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | -| /docs/about | 20 | 20 | 0 | 0 | 0 | no | -| /docs/account | 30 | 30 | 0 | 0 | 0 | no | -| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | -| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /docs/admin | 0 | 0 | 140 | 0 | 0 | yes | | /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | | /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | -| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | -| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | -| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | -| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | -| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/auth/login_form | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | | /docs/admin/auth/saml_with_microsoft_adfs | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | -| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | | /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | -| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/code_hosts/rate_limits | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | -| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | -| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 0 | 0 | 60 | 0 | 0 | yes | +| /docs/admin/code-hosts/github | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/code-hosts/gitlab | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/admin/config | 0 | 0 | 430 | 0 | 0 | no | | /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | -| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | | /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | | /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | -| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | -| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | | /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | -| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | -| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/config/site-config | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/config/webhooks/incoming | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | -| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 310 | 0 | 0 | no | | /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/digitalocean | 0 | 0 | 100 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 240 | 0 | 0 | no | | /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 180 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/kustomize/migrate | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/operations | 0 | 0 | 100 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | | /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | | /docs/admin/deploy/migrate-backup | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | | /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | | /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deployment_best_practices | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | | /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/executors/deploy_executors_dind | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/executors/deploy_executors_kubernetes | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | | /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/executors/firecracker | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | -| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/external_services/object_storage | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | -| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 0 | no | +| /docs/admin/how-to | 20 | 0 | 0 | 0 | 0 | yes | | /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | | /docs/admin/how-to/dirty_database_pre_3_37 | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | -| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | -| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/export-search-results | 0 | 0 | 0 | 0 | 30 | yes | | /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | -| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | -| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | +| /docs/admin/how-to/monorepo-issues | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/admin/how-to/mutate-user-api | 0 | 0 | 0 | 0 | 20 | yes | | /docs/admin/how-to/redis_configmap | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | | /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | -| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/how-to/unfinished_migration | 0 | 0 | 40 | 0 | 0 | no | -| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | | /docs/admin/how-to/update_repo_failure | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | | /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/http_https_configuration | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | -| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | | /docs/admin/install/docker-compose | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/install/docker-compose/aws | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/install/docker-compose/migrate | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/install/docker/aws | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | @@ -1569,1395 +655,352 @@ | /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | -| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | +| /docs/admin/licensing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/migration | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | | /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | -| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/opentelemetry | 0 | 0 | 100 | 0 | 0 | no | -| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | | /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | -| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | -| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | -| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | -| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | -| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /docs/admin/organizations | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/permissions/api | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/pings | 0 | 0 | 60 | 0 | 0 | yes | | /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | -| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | -| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | | /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | -| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | -| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | -| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | -| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | +| /docs/admin/privileges | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/admin/repo/permissions | 0 | 0 | 380 | 0 | 0 | no | | /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | -| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | -| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | -| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | +| /docs/admin/scim | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/admin/search | 40 | 40 | 0 | 0 | 30 | yes | | /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | -| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/service-accounts | 20 | 0 | 0 | 0 | 0 | yes | | /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | -| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | | /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | +| /docs/admin/telemetry/protocol | 0 | 0 | 0 | 0 | 10 | yes | | /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | -| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | -| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | +| /docs/admin/updates/epa/epa.html | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | -| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | | /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | -| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | | /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | -| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | -| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | -| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | -| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | -| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | -| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | +| /docs/agentic-batch-changes | 20 | 0 | 0 | 0 | 0 | yes | | /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | -| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | -| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | -| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | -| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | -| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | -| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | -| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | -| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | -| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | +| /docs/analytics/pcw | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/api | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/api/graphql/examples | 0 | 0 | 120 | 0 | 0 | no | | /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | -| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | | /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | -| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | -| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | -| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | -| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | -| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/api/mcp | 100 | 90 | 0 | 0 | 0 | yes | | /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | -| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | | /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | -| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | -| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | -| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | -| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | -| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | +| /docs/api/stream-api | 10 | 10 | 0 | 0 | 0 | yes | | /docs/app | 0 | 0 | 10 | 0 | 0 | no | -| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | -| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | -| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | -| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | | /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | | /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | -| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/explanations/server_side | 0 | 0 | 70 | 0 | 0 | no | | /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | | /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | | /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | -| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | | /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | | /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | -| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | -| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | -| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | -| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | -| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | -| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | -| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/batch-changes | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/beta-and-experimental | 0 | 0 | 20 | 0 | 0 | yes | | /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | -| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | | /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | | /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | -| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | -| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | -| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | -| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | -| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | +| /docs/CHANGELOG | 0 | 0 | 60 | 0 | 0 | no | +| /docs/cli | 150 | 20 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 40 | 0 | 0 | 0 | 0 | yes | | /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | -| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | +| /docs/cli/how-tos/managing-access-tokens | 60 | 0 | 0 | 0 | 0 | yes | +| /docs/cli/references | 0 | 0 | 0 | 0 | 30 | yes | | /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | | /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | -| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | -| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | -| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | -| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | -| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | +| /docs/cli/references/config | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/cli/references/config/get | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/delete | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/publish | 0 | 0 | 0 | 0 | 10 | yes | | /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | -| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cli/references/version | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/cloud | 0 | 0 | 0 | 0 | 10 | yes | | /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | -| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | -| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | +| /docs/code_insights | 0 | 0 | 90 | 0 | 0 | no | | /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | | /docs/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | | /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | -| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | -| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | -| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 550 | 0 | 0 | no | | /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | | /docs/code_intelligence/explanations/rockskip | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | -| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 180 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | -| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | -| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | +| /docs/code_monitoring | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | -| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_monitoring/how-tos/webhook | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | -| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 580 | 0 | 0 | no | | /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | | /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | -| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | -| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1550 | 0 | 0 | no | | /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | -| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | | /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | | /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | | /docs/code_search/explanations/features | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | | /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | | /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | | /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | -| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | -| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1020 | 0 | 0 | no | | /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | -| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | -| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | -| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | -| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | -| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | -| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | -| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | -| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | +| /docs/code-insights | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/code-insights/explanations/code-insights-filters | 0 | 0 | 60 | 0 | 0 | yes | +| /docs/code-insights/quickstart | 20 | 20 | 0 | 0 | 10 | yes | +| /docs/code-insights/references/common-use-cases | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/code-insights/references/repository-scope | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-monitoring | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto_indexing | 0 | 0 | 390 | 0 | 0 | no | | /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | -| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | -| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 10 | 0 | 30 | 0 | 0 | yes | | /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | | /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | -| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 110 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | -| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | +| /docs/code-navigation/how-to/index-a-go-repository | 0 | 0 | 0 | 0 | 30 | yes | | /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | -| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | -| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1920 | 0 | 0 | no | | /docs/code-navigation/search_based_code_navigation | 0 | 0 | 110 | 0 | 0 | no | -| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | -| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | -| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | -| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | -| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | -| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | -| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | -| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-navigation/troubleshooting | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code-search | 100 | 60 | 0 | 0 | 0 | yes | +| /docs/code-search/code-navigation | 0 | 0 | 580 | 0 | 0 | no | | /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | -| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/envvars | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/combining_scip_uploads_from_ci_cd_and_auto_indexing | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 270 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | | /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | | /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | -| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | -| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 580 | 0 | 0 | no | | /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | -| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/queries | 200 | 80 | 0 | 0 | 0 | yes | | /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | -| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | -| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | -| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | +| /docs/code-search/types/fuzzy | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-search/types/search-jobs | 70 | 0 | 0 | 0 | 0 | yes | | /docs/code-search/working/saved_searches | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | -| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | -| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | -| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | -| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | -| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | +| /docs/code-search/working/search-contexts | 70 | 10 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/cody | 120 | 120 | 100 | 0 | 60 | yes | +| /docs/cody/capabilities | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-context-fetching | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit | 0 | 0 | 10 | 0 | 0 | yes | | /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | -| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/capabilities/autocomplete | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | | /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | -| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | -| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | -| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | -| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | -| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | -| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | -| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | -| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-neovim | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-visual-studio | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-vscode | 60 | 0 | 0 | 0 | 0 | yes | +| /docs/cody/clients/model-configuration | 0 | 0 | 130 | 0 | 0 | no | | /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | -| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | | /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | | /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | | /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | -| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | | /docs/cody/custom-commands | 0 | 0 | 250 | 0 | 0 | no | -| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | | /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | -| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | +| /docs/cody/enterprise/model-configuration | 20 | 20 | 0 | 0 | 0 | yes | | /docs/cody/explanations/code_graph_context | 0 | 0 | 30 | 0 | 0 | no | -| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/explanations/cody_gateway | 0 | 0 | 20 | 0 | 0 | no | | /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | | /docs/cody/explanations/indexing | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | | /docs/cody/explanations/policies | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | -| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/faq | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | -| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | | /docs/cody/overview/cody-with-sourcegraph | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | -| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | -| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | | /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | -| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | | /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | -| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | -| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | -| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | | /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | -| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | -| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | -| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/context-filters | 10 | 0 | 0 | 0 | 0 | yes | +| /docs/deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | -| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | -| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | -| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | -| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | -| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | -| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | +| /docs/dev | 90 | 90 | 0 | 0 | 0 | no | | /docs/dev/code_reviews | 0 | 0 | 40 | 0 | 0 | no | -| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | | /docs/dev/documentation | 0 | 0 | 30 | 0 | 0 | no | -| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | -| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | | /docs/dev/retrospectives/3_3 | 0 | 0 | 10 | 0 | 0 | no | | /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | | /docs/dev/roadmap | 0 | 0 | 30 | 0 | 0 | no | -| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | -| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | -| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | -| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | -| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | +| /docs/docs | 0 | 0 | 0 | 20 | 0 | no | | /docs/docs/admin/code_hosts/non-git | 0 | 0 | 40 | 0 | 0 | no | | /docs/docs/admin/code_hosts/phabricator | 0 | 0 | 30 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | | /docs/docs/admin/config | 0 | 0 | 30 | 0 | 0 | no | | /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | -| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/admin/how-to/run-psql | 0 | 0 | 10 | 0 | 0 | no | | /docs/docs/admin/observability | 0 | 0 | 30 | 0 | 0 | no | -| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | | /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | -| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | -| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/admin/updates/server | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/admin/workers | 0 | 0 | 30 | 0 | 0 | no | -| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | +| /docs/docs/batch-changes/configuring-credentials | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/publishing-changesets | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/quickstart | 0 | 0 | 0 | 20 | 0 | no | +| /docs/docs/cli | 0 | 0 | 0 | 10 | 0 | no | | /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | -| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | | /docs/docs/code_insights/references/repository_scope | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/code_search | 0 | 0 | 70 | 0 | 0 | no | -| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | | /docs/docs/code-search/code-navigation | 0 | 0 | 20 | 0 | 0 | no | -| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | -| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | | /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | -| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | | /docs/docs/how-to-videos/cody | 0 | 0 | 40 | 0 | 0 | no | -| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | +| /docs/docs/self-hosted/deploy/kubernetes | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgres12-end-of-life-notice | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgresql-collation-version-mismatch-resolution | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/troubleshooting-upgrades | 0 | 0 | 0 | 10 | 0 | no | | /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | -| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | -| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | -| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | -| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | -| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/features/api | 0 | 0 | 0 | 10 | 0 | no | | /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | -| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | -| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | | /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | -| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | -| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | | /docs/how-to-videos | 0 | 0 | 30 | 0 | 0 | no | | /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | -| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | -| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | -| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | -| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | -| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | -| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | -| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | | /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | -| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | | /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | -| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | -| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | | /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | | /docs/integration/browser-extension/./httptrace | 0 | 0 | 20 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | | /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | -| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | +| /docs/integration/editor | 0 | 0 | 0 | 0 | 10 | yes | +| /docs/integration/gitlab | 40 | 20 | 0 | 0 | 0 | yes | | /docs/integration/google_gsuite | 0 | 0 | 20 | 0 | 0 | no | -| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | | /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | -| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | -| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | -| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | | /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | -| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | -| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | -| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/login | 320 | 320 | 0 | 0 | 0 | no | -| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | -| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/models | 10 | 10 | 0 | 0 | 0 | no | +| /docs/llms.txt | 0 | 0 | 10 | 0 | 0 | no | | /docs/nope | 10 | 10 | 0 | 0 | 0 | no | -| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | -| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | -| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | | /docs/own | 0 | 0 | 60 | 0 | 0 | no | | /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | | /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | -| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | | /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | | /docs/own/codeowners-ingestion | 0 | 0 | 110 | 0 | 0 | no | | /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | -| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | -| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | -| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | -| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 830 | 0 | 0 | no | | /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | -| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | | /docs/pricing/free | 0 | 0 | 40 | 0 | 0 | no | | /docs/pricing/plan-comparison | 0 | 0 | 40 | 0 | 0 | no | -| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | | /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | | /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | -| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | -| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | | /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | -| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | -| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | -| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | | /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | -| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose | 90 | 30 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 110 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 20 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | | /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | -| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | | /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | -| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | -| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | -| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/without-service-discovery | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/self-hosted/deployment-best-practices | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/email | 30 | 30 | 0 | 0 | 0 | yes | | /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 30 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | | /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | -| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-config | 40 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/external_services | 0 | 0 | 50 | 0 | 0 | no | | /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | -| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | -| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | -| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | -| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/external-services | 30 | 0 | 20 | 0 | 0 | yes | +| /docs/self-hosted/external-services/postgres | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | | /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | -| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | | /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | | /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | -| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | -| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/self-hosted/observability | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | | /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | -| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 40 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | | /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | -| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | -| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | -| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | -| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | -| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | -| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | -| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | -| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | -| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | -| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | -| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | -| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | +| /docs/sssiedn304c0d66pp70617468xsx | 0 | 0 | 0 | 20 | 0 | no | +| /docs/technical-changelog | 10 | 10 | 0 | 0 | 0 | yes | | /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | -| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | -| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | | /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | -| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | -| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | | /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | | /docs/user | 0 | 0 | 80 | 0 | 0 | no | | /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | | /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | | /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | -| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | | /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | | /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | -| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | | /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | -| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | | /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/5.10/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/5.3/code_insights/references/common_use_cases | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | | /docs/v/5.4/api/graphql | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.1/admin/updates/migrator/migrator-operations | 0 | 0 | 10 | 0 | 0 | no | @@ -2973,12 +1016,11 @@ | /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | -| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 90 | 0 | 0 | no | | /docs/v/6.4/admin/config/site_config | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/6.5 | 0 | 0 | 30 | 0 | 0 | no | -| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | -| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/6.8/admin/permissions/syncing | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/7.0/admin/oauth-apps | 0 | 0 | 30 | 0 | 0 | no | @@ -2990,12 +1032,11 @@ | /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | -| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.2/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | @@ -3005,6 +1046,7 @@ | /docs/v/7.3/api/mcp | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.3/cli | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.3/code_search/reference/queries | 0 | 0 | 10 | 0 | 0 | no | +| /docs/v/7.4 | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/config/email | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | @@ -3044,10 +1086,6 @@ | /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.7/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | +| /docs/v/7.7/own | 0 | 0 | 40 | 0 | 0 | no | | /docs/wp-json | 0 | 0 | 10 | 0 | 0 | no | | /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | -| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | -| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | diff --git a/viewership-metrics/reports/page-views-by-redirects.md b/viewership-metrics/reports/page-views-by-redirects.md index 238ed8212..ec86c9b2a 100644 --- a/viewership-metrics/reports/page-views-by-redirects.md +++ b/viewership-metrics/reports/page-views-by-redirects.md @@ -1,52 +1,52 @@ # Page views by redirect count (last 90 days) -- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Window: 2026-06-12T06:00:00.000Z to 2026-09-10T05:00:00.000Z (UTC) - Host: sourcegraph.com; paths: /docs, /changelog, /blog -- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN -- Totals: 3041 paths, 524520 requests, 473390 visits, 65060 3xx, 16190 404s, 2810 5xx +- Filters: Bot Management likely_human; GET; excluding ASN Hetzner Online GmbH; excluding countries CN. Requests and Visits also require JS detection passed, which excludes the first page of each visit. +- Totals: 1079 paths, 7420 requests, 3310 visits, 64680 3xx, 16240 404s, 760 5xx - Requests and Visits count HTML 200 responses. Visits = requests whose referrer is not sourcegraph.com (Cloudflare's page-view proxy). - 3xx counts redirects (301, 302, 303, 307, 308); 404 and 5xx count any content type. Trailing-slash redirects, static assets and scanner probe paths are skipped. All counts are adaptive-sampled estimates. -- Sitemap: 784 of 3041 paths are in https://sourcegraph.com/sitemap.xml, with 420790 of 524520 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. +- Sitemap: 160 of 1079 paths are in https://sourcegraph.com/sitemap.xml, with 6310 of 7420 requests. The rest are deleted, unlisted or probe paths; on /docs they still return 200. The blog sitemap lists only recent posts. | Path | Requests | Visits | 3xx | 404 | 5xx | Sitemap | | --- | ---: | ---: | ---: | ---: | ---: | --- | -| /blog/rss.xml | 0 | 0 | 21790 | 0 | 0 | no | +| /blog/rss.xml | 0 | 0 | 21640 | 0 | 0 | no | | /docs/code-search/code-navigation/precise_code_navigation | 0 | 0 | 2060 | 0 | 0 | no | -| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1980 | 0 | 0 | no | -| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1470 | 0 | 0 | no | +| /docs/code-navigation/precise_code_navigation | 0 | 0 | 1920 | 0 | 0 | no | +| /docs/code_navigation/explanations/precise_code_navigation | 0 | 0 | 1550 | 0 | 0 | no | | /docs/code_search/reference/language | 0 | 0 | 1200 | 0 | 0 | no | -| /docs/code_search/reference/queries | 0 | 0 | 1120 | 0 | 0 | no | -| /docs/pricing | 0 | 0 | 850 | 0 | 0 | no | +| /docs/code_search/reference/queries | 0 | 0 | 1020 | 0 | 0 | no | +| /docs/pricing | 0 | 0 | 830 | 0 | 0 | no | | /docs/admin/deploy/kubernetes | 0 | 0 | 710 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 630 | 0 | 0 | no | -| /docs/code-navigation/writing_an_indexer | 0 | 0 | 620 | 0 | 0 | no | -| /docs/code_intelligence | 0 | 0 | 590 | 0 | 0 | no | -| /docs/code_navigation | 0 | 0 | 590 | 0 | 0 | no | -| /docs/code-search/code-navigation | 0 | 0 | 570 | 0 | 0 | no | +| /docs/code-navigation/writing_an_indexer | 0 | 0 | 590 | 0 | 0 | no | +| /docs/code_navigation | 0 | 0 | 580 | 0 | 0 | no | +| /docs/code-search/code-navigation | 0 | 0 | 580 | 0 | 0 | no | +| /docs/code-search/code-navigation/writing_an_indexer | 0 | 0 | 580 | 0 | 0 | no | +| /docs/code_intelligence | 0 | 0 | 550 | 0 | 0 | no | | /docs/cody/capabilities/commands | 0 | 0 | 500 | 0 | 0 | no | | /docs/pricing/plans | 0 | 0 | 500 | 0 | 0 | no | | /docs/code-search/code-navigation/auto_indexing | 0 | 0 | 490 | 0 | 0 | no | | /docs/integration/browser_extension | 0 | 0 | 460 | 0 | 0 | no | | /docs/code_navigation/references/indexers | 0 | 0 | 450 | 0 | 0 | no | | /docs/admin/code_hosts/github | 0 | 0 | 440 | 0 | 0 | no | -| /docs/admin/config | 0 | 0 | 440 | 0 | 0 | no | | /docs/batch_changes | 0 | 0 | 440 | 0 | 0 | no | +| /docs/admin/config | 0 | 0 | 430 | 0 | 0 | no | | /docs/code-search/types/deep-search | 0 | 0 | 410 | 0 | 0 | no | | /docs/v/7.5/code_search/reference/queries | 0 | 0 | 410 | 0 | 0 | no | | /docs/code_search | 0 | 0 | 400 | 0 | 0 | no | -| /docs/code-navigation/auto_indexing | 0 | 0 | 400 | 0 | 0 | no | -| /docs/admin/repo/permissions | 0 | 0 | 370 | 0 | 0 | no | +| /docs/code-navigation/auto_indexing | 0 | 0 | 390 | 0 | 0 | no | +| /docs/admin/repo/permissions | 0 | 0 | 380 | 0 | 0 | no | | /docs/admin/analytics | 0 | 0 | 360 | 0 | 0 | no | | /docs/v/7.6/code_search/reference/queries | 0 | 0 | 340 | 0 | 0 | no | | /docs/admin/updates | 0 | 0 | 330 | 0 | 0 | no | | /docs/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 330 | 0 | 0 | no | | /docs/cody/overview | 0 | 0 | 330 | 0 | 0 | no | -| /docs/admin/deploy | 0 | 0 | 320 | 0 | 0 | no | +| /docs/admin/deploy | 0 | 0 | 310 | 0 | 0 | no | | /docs/admin/observability/troubleshooting | 0 | 0 | 310 | 0 | 0 | no | | /docs/admin/deploy/docker-compose | 0 | 0 | 290 | 0 | 0 | no | | /docs/admin/install/kubernetes | 0 | 0 | 290 | 0 | 0 | no | | /docs/code_intelligence/explanations/auto_indexing | 0 | 0 | 290 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container | 0 | 0 | 280 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 270 | 0 | 0 | no | | /docs/code_intelligence/explanations/writing_an_indexer | 0 | 0 | 260 | 0 | 0 | no | | /docs/admin/install/docker | 0 | 0 | 250 | 0 | 0 | no | | /docs/code_navigation/explanations/auto_indexing | 0 | 0 | 250 | 0 | 0 | no | @@ -54,50 +54,50 @@ | /docs/v/7.5/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | | /docs/v/7.6/code-search/types/search-jobs | 0 | 0 | 250 | 0 | 0 | no | | /docs/admin/code_hosts/bitbucket_server | 0 | 0 | 240 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index_a_go_repository | 0 | 0 | 240 | 0 | 0 | no | -| /changelog/releases | 2360 | 2100 | 230 | 0 | 0 | yes | +| /docs/admin/deploy/docker-single-container | 0 | 0 | 240 | 0 | 0 | no | +| /changelog/releases | 90 | 90 | 230 | 0 | 0 | yes | | /docs/self-hosted/how-to/dirty_database | 0 | 0 | 230 | 0 | 0 | no | | /docs/v/7.5 | 0 | 0 | 230 | 0 | 0 | no | | /docs/batch_changes/explanations/how_src_executes_a_batch_spec | 0 | 0 | 220 | 0 | 0 | no | | /docs/cody/capabilities/agentic-chat | 0 | 0 | 220 | 0 | 0 | no | | /docs/admin/access_control/service_accounts | 0 | 0 | 200 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 200 | 0 | 0 | no | | /docs/admin/deploy/resource_estimator | 0 | 0 | 200 | 0 | 0 | no | | /docs/cli/how-tos/creating_an_access_token | 0 | 0 | 200 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 200 | 0 | 0 | no | +| /docs/code-search/working/search_contexts | 0 | 0 | 200 | 0 | 0 | no | +| /docs/admin/deploy/kubernetes/configure | 0 | 0 | 180 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_yaml_reference | 0 | 0 | 180 | 0 | 0 | no | +| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 180 | 0 | 0 | no | | /docs/code-search/code-navigation/features | 0 | 0 | 180 | 0 | 0 | no | -| /docs/code-search/working/search_contexts | 0 | 0 | 180 | 0 | 0 | no | | /docs/admin/config/site_config | 0 | 0 | 170 | 0 | 0 | no | | /docs/admin/observability/dashboards | 0 | 0 | 170 | 0 | 0 | no | | /docs/api/stream_api | 0 | 0 | 170 | 0 | 0 | no | | /docs/admin/how-to/dirty_database | 0 | 0 | 160 | 0 | 0 | no | | /docs/admin/install | 0 | 0 | 160 | 0 | 0 | no | | /docs/v/7.5/code_navigation/explanations/precise_code_navigation | 0 | 0 | 160 | 0 | 0 | no | -| /changelog | 17430 | 8200 | 150 | 0 | 0 | yes | -| /docs/code_monitoring | 0 | 0 | 150 | 0 | 0 | no | +| /changelog | 1920 | 70 | 150 | 0 | 0 | yes | | /docs/code_navigation/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 150 | 0 | 0 | no | | /docs/own/codeowners-format | 0 | 0 | 150 | 0 | 0 | no | | /docs/v/7.6 | 0 | 0 | 150 | 0 | 0 | no | -| /docs/admin | 1140 | 760 | 140 | 0 | 0 | yes | +| /docs/admin | 0 | 0 | 140 | 0 | 0 | yes | +| /docs/code_monitoring | 0 | 0 | 140 | 0 | 0 | no | | /docs/code_navigation/explanations/writing_an_indexer | 0 | 0 | 140 | 0 | 0 | no | | /docs/admin/config/postgres-conf | 0 | 0 | 130 | 0 | 0 | no | -| /docs/api/graphql/examples | 0 | 0 | 130 | 0 | 0 | no | | /docs/campaigns/references/campaign_spec_yaml_reference | 0 | 0 | 130 | 0 | 0 | no | | /docs/code_insights/references/common_use_cases | 0 | 0 | 130 | 0 | 0 | no | +| /docs/cody/clients/model-configuration | 0 | 0 | 130 | 0 | 0 | no | | /docs/admin/observability/tracing | 0 | 0 | 120 | 0 | 0 | no | | /docs/admin/postgres12_end_of_life_notice | 0 | 0 | 120 | 0 | 0 | no | +| /docs/api/graphql/examples | 0 | 0 | 120 | 0 | 0 | no | | /docs/batch_changes/references/faq | 0 | 0 | 120 | 0 | 0 | no | | /docs/campaigns | 0 | 0 | 120 | 0 | 0 | no | | /docs/code_insights/explanations/data_retention | 0 | 0 | 120 | 0 | 0 | no | -| /docs/code_intelligence/how-to/index_a_cpp_repository | 0 | 0 | 120 | 0 | 0 | no | -| /docs/cody/clients/model-configuration | 0 | 0 | 120 | 0 | 0 | no | | /docs/cody/core-concepts/cody-gateway | 0 | 0 | 120 | 0 | 0 | no | | /docs/self-hosted/deploy/resource_estimator | 0 | 0 | 120 | 0 | 0 | no | | /docs/v/7.2/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | | /docs/v/7.4/code_search/reference/queries | 0 | 0 | 120 | 0 | 0 | no | -| /blog/introducing-agentic-chat | 440 | 440 | 110 | 0 | 0 | yes | -| /changelog/self-hosted/server | 150 | 130 | 110 | 0 | 0 | no | +| /blog/introducing-agentic-chat | 0 | 0 | 110 | 0 | 0 | yes | +| /changelog/self-hosted/server | 0 | 0 | 110 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/migrate | 0 | 0 | 110 | 0 | 0 | no | | /docs/admin/how-to/lsif_scip_migration | 0 | 0 | 110 | 0 | 0 | no | | /docs/admin/observability | 0 | 0 | 110 | 0 | 0 | no | @@ -111,32 +111,32 @@ | /docs/admin/user_data_deletion | 0 | 0 | 100 | 0 | 0 | no | | /docs/code-navigation/auto_indexing_configuration | 0 | 0 | 100 | 0 | 0 | no | | /docs/code-navigation/how-to/index_a_go_repository | 0 | 0 | 100 | 0 | 0 | no | -| /docs/cody | 29620 | 26840 | 100 | 0 | 60 | yes | +| /docs/cody | 120 | 120 | 100 | 0 | 60 | yes | | /docs/cody/overview/install-neovim | 0 | 0 | 100 | 0 | 0 | no | | /docs/self-hosted/advanced_config_file | 0 | 0 | 100 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_binary | 0 | 0 | 100 | 0 | 0 | no | -| /blog | 19840 | 18890 | 90 | 0 | 0 | yes | +| /blog | 60 | 40 | 90 | 0 | 0 | yes | | /docs/admin/beta_and_experimental_features | 0 | 0 | 90 | 0 | 0 | no | | /docs/admin/service_accounts | 0 | 0 | 90 | 0 | 0 | no | | /docs/admin/updates/migrator/migrator-operations | 0 | 0 | 90 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_a_batch_change | 0 | 0 | 90 | 0 | 0 | no | +| /docs/code_insights | 0 | 0 | 90 | 0 | 0 | no | | /docs/cody/core-concepts/embeddings | 0 | 0 | 90 | 0 | 0 | no | | /docs/cody/usage-and-pricing | 0 | 0 | 90 | 0 | 0 | no | | /docs/integration/bitbucket_server | 0 | 0 | 90 | 0 | 0 | no | | /docs/user/code_intelligence | 0 | 0 | 90 | 0 | 0 | no | +| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 90 | 0 | 0 | no | | /docs/admin/executors/deploy_executors_binary | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/how-to/upgrade-postgres-12-16-builtin-dbs | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/repo/update_frequency | 0 | 0 | 80 | 0 | 0 | no | | /docs/admin/updates/kubernetes | 0 | 0 | 80 | 0 | 0 | no | | /docs/batch_changes/how-tos/configuring_credentials | 0 | 0 | 80 | 0 | 0 | no | -| /docs/code_insights | 0 | 0 | 80 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 80 | 0 | 0 | no | | /docs/own/codeowners_format | 0 | 0 | 80 | 0 | 0 | no | | /docs/self-hosted/external_services/object_storage | 0 | 0 | 80 | 0 | 0 | no | | /docs/user | 0 | 0 | 80 | 0 | 0 | no | -| /docs/v/6.12/code-search/types/search-jobs | 0 | 0 | 80 | 0 | 0 | no | | /docs/v/7.1/code_search/reference/queries | 0 | 0 | 80 | 0 | 0 | no | -| /blog/ai-code-generation | 1240 | 1190 | 70 | 0 | 0 | yes | +| /blog/ai-code-generation | 50 | 0 | 70 | 0 | 0 | yes | | /docs/admin/code_hosts | 0 | 0 | 70 | 0 | 0 | no | | /docs/admin/deploy/machine-images/aws-oneclick | 0 | 0 | 70 | 0 | 0 | no | | /docs/admin/postgres | 0 | 0 | 70 | 0 | 0 | no | @@ -145,45 +145,44 @@ | /docs/self-hosted/executors/executors_troubleshooting | 0 | 0 | 70 | 0 | 0 | no | | /docs/v/5.3/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | | /docs/v/6.12/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | -| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 70 | 0 | 0 | no | | /docs/v/7.5/cli | 0 | 0 | 70 | 0 | 0 | no | -| /blog/the-death-of-the-junior-developer | 2040 | 1970 | 60 | 0 | 0 | no | -| /docs/admin/code-hosts/bitbucket-cloud | 310 | 310 | 60 | 0 | 0 | yes | +| /blog/the-death-of-the-junior-developer | 40 | 20 | 60 | 0 | 0 | no | +| /docs/admin/code-hosts/bitbucket-cloud | 0 | 0 | 60 | 0 | 0 | yes | | /docs/admin/config/batch_changes | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/deploy/scale | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 50 | no | +| /docs/admin/external_services/postgres | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/install/kubernetes/operations | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/observability/alerts | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/observability/metrics | 0 | 0 | 60 | 0 | 0 | no | -| /docs/admin/pings | 6170 | 6170 | 60 | 0 | 0 | yes | +| /docs/admin/pings | 0 | 0 | 60 | 0 | 0 | yes | | /docs/admin/ssl_https_self_signed_cert_nginx | 0 | 0 | 60 | 0 | 0 | no | | /docs/admin/updates/migrator/downgrading | 0 | 0 | 60 | 0 | 0 | no | | /docs/api/graphql/search | 0 | 0 | 60 | 0 | 0 | no | -| /docs/CHANGELOG | 10 | 10 | 60 | 0 | 0 | no | +| /docs/CHANGELOG | 0 | 0 | 60 | 0 | 0 | no | | /docs/code_monitoring/how-tos | 0 | 0 | 60 | 0 | 0 | no | | /docs/code_navigation/explanations/features | 0 | 0 | 60 | 0 | 0 | no | -| /docs/code-insights/explanations/code-insights-filters | 280 | 260 | 60 | 0 | 0 | yes | +| /docs/code-insights/explanations/code-insights-filters | 0 | 0 | 60 | 0 | 0 | yes | | /docs/docs/enterprise-portal | 0 | 0 | 60 | 0 | 0 | no | | /docs/integration/browser_extension/how-tos/browser_search_engine | 0 | 0 | 60 | 0 | 0 | no | | /docs/own | 0 | 0 | 60 | 0 | 0 | no | | /docs/own/codeowners_ingestion | 0 | 0 | 60 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 60 | 0 | 0 | no | | /docs/self-hosted/postgres12_end_of_life_notice | 0 | 0 | 60 | 0 | 0 | no | | /docs/user/code_intelligence/explanations/precise_code_intelligence | 0 | 0 | 60 | 0 | 0 | no | | /docs/user/code_intelligence/features | 0 | 0 | 60 | 0 | 0 | no | +| /docs/v/6.5/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/6.8/code_search/reference/queries | 0 | 0 | 60 | 0 | 0 | no | | /docs/v/7.6/code_insights/references/license | 0 | 0 | 60 | 0 | 0 | no | -| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 1410 | 1330 | 50 | 0 | 0 | yes | -| /changelog/releases/6.12 | 220 | 210 | 50 | 0 | 0 | no | -| /docs | 18760 | 14390 | 50 | 0 | 260 | yes | +| /blog/codescalebench-testing-coding-agents-on-large-codebases-and-multi-repo-software-engineering-tasks | 90 | 70 | 50 | 0 | 0 | yes | +| /changelog/releases/6.12 | 0 | 0 | 50 | 0 | 0 | no | +| /docs | 440 | 160 | 50 | 0 | 260 | yes | | /docs/admin/code_hosts/gitlab | 0 | 0 | 50 | 0 | 0 | no | | /docs/admin/config/advanced_config_file | 0 | 0 | 50 | 0 | 0 | no | | /docs/admin/how-to/rollback_database | 0 | 0 | 50 | 0 | 0 | no | +| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/batch_spec_templating | 0 | 0 | 50 | 0 | 0 | no | | /docs/batch_changes/references/requirements | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_insights/explanations/current_limitations_of_code_insights | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_insights/quickstart | 0 | 0 | 50 | 0 | 0 | no | -| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_a_typescript_and_javascript_repository | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_monitoring/how-tos/starting_points | 0 | 0 | 50 | 0 | 0 | no | | /docs/code_search/how-to/saved_searches | 0 | 0 | 50 | 0 | 0 | no | @@ -193,9 +192,10 @@ | /docs/self-hosted/how-to/blobstore_update_notes | 0 | 0 | 50 | 0 | 0 | no | | /docs/self-hosted/how-to/dirty_database_pre_3_37 | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/6.5/batch_changes/quickstart | 0 | 0 | 50 | 0 | 0 | no | +| /docs/v/7.2 | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.4/code-search/types/search-jobs | 0 | 0 | 50 | 0 | 0 | no | | /docs/v/7.7/code_search/reference/queries | 0 | 0 | 50 | 0 | 0 | no | -| /changelog/mcp-sourcegraph-analytics | 150 | 150 | 40 | 0 | 0 | yes | +| /changelog/mcp-sourcegraph-analytics | 0 | 0 | 40 | 0 | 0 | yes | | /docs/admin/audit_log | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/config/authorization_and_authentication | 0 | 0 | 40 | 0 | 0 | no | | /docs/admin/config/encryption | 0 | 0 | 40 | 0 | 0 | no | @@ -207,6 +207,7 @@ | /docs/admin/install/docker/digitalocean | 0 | 0 | 40 | 0 | 0 | no | | /docs/code_insights/references/search_aggregations_use_cases | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to/index_other_languages | 0 | 0 | 40 | 0 | 0 | no | +| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 40 | 0 | 0 | no | | /docs/code-search/code-navigation/rockskip | 0 | 0 | 40 | 0 | 0 | no | | /docs/cody/embedded-repos | 0 | 0 | 40 | 0 | 0 | no | | /docs/cody/explanations/enabling_cody_enterprise | 0 | 0 | 40 | 0 | 0 | no | @@ -218,15 +219,15 @@ | /docs/v/5.6/code_navigation/how-to/enable_auto_indexing | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/6.12/admin/permissions | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/6.12/batch_changes/quickstart | 0 | 0 | 40 | 0 | 0 | no | -| /docs/v/7.2 | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/7.4/batch-changes/site-admin-configuration | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/7.4/code-search/working/search_contexts | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/7.5/admin/auth | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/7.5/self-hosted/external-services/object-storage | 0 | 0 | 40 | 0 | 0 | no | | /docs/v/7.7/api/graphql | 0 | 0 | 40 | 0 | 0 | no | +| /docs/v/7.7/own | 0 | 0 | 40 | 0 | 0 | no | | /blog/multi-language-lexer-and-scanner-for-go | 0 | 0 | 30 | 0 | 0 | no | -| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 1560 | 1550 | 30 | 0 | 0 | yes | -| /changelog/sourcegraph-analytics | 150 | 150 | 30 | 0 | 0 | yes | +| /blog/pricelines-innovations-in-agentic-ai-with-sourcegraph | 0 | 0 | 30 | 0 | 0 | yes | +| /changelog/sourcegraph-analytics | 0 | 0 | 30 | 0 | 0 | yes | | /docs/admin/access_control/batch_changes | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/config/email | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deploy/docker-compose/azure | 0 | 0 | 30 | 0 | 0 | no | @@ -234,23 +235,22 @@ | /docs/admin/deploy/kubernetes/troubleshoot | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/deploy/without_service_discovery | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/executors/executors_troubleshooting | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/how-to/monorepo-issues | 260 | 260 | 30 | 0 | 0 | yes | +| /docs/admin/how-to/monorepo-issues | 0 | 0 | 30 | 0 | 0 | yes | | /docs/admin/install/managed | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/observability/alerting | 0 | 0 | 30 | 0 | 0 | no | -| /docs/admin/permissions/api | 290 | 280 | 30 | 0 | 0 | yes | +| /docs/admin/permissions/api | 0 | 0 | 30 | 0 | 0 | yes | | /docs/admin/pricing | 0 | 0 | 30 | 0 | 0 | no | | /docs/admin/wp | 0 | 0 | 30 | 0 | 0 | no | -| /docs/batch_changes/explanations/introduction_to_batch_changes | 0 | 0 | 30 | 0 | 0 | no | -| /docs/batch_changes/references/batch_spec_cheat_sheet | 0 | 0 | 30 | 0 | 0 | no | | /docs/batch_changes/tutorials | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_insights/explanations/code_insights_filters | 0 | 0 | 30 | 0 | 0 | no | +| /docs/code_insights/references/incomplete_data_points | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_intelligence/references/indexers | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_navigation/explanations/introduction_to_code_navigation | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_search/explanations/search_details | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_search/how-to/exhaustive | 0 | 0 | 30 | 0 | 0 | no | | /docs/code_search/how-to/search_contexts | 0 | 0 | 30 | 0 | 0 | no | -| /docs/code-insights/references/common-use-cases | 440 | 420 | 30 | 0 | 0 | yes | -| /docs/code-navigation/auto-indexing-configuration | 270 | 250 | 30 | 0 | 0 | yes | +| /docs/code-insights/references/common-use-cases | 0 | 0 | 30 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing-configuration | 10 | 0 | 30 | 0 | 0 | yes | | /docs/code-navigation/how-to/adding_scip_to_workflows | 0 | 0 | 30 | 0 | 0 | no | | /docs/code-navigation/inference_configuration | 0 | 0 | 30 | 0 | 0 | no | | /docs/code-search/code-navigation/how-to | 0 | 0 | 30 | 0 | 0 | no | @@ -266,11 +266,11 @@ | /docs/how-to-videos/code-search | 0 | 0 | 30 | 0 | 0 | no | | /docs/integration/browser_extension/how-tos/google_workspace | 0 | 0 | 30 | 0 | 0 | no | | /docs/own/assigned-ownership | 0 | 0 | 30 | 0 | 0 | no | +| /docs/self-hosted/executors/deploy_executors_kubernetes | 0 | 0 | 30 | 0 | 0 | no | | /docs/self-hosted/updates/docker-compose | 0 | 0 | 30 | 0 | 0 | no | | /docs/self-hosted/updates/pure-docker | 0 | 0 | 30 | 0 | 0 | no | | /docs/user/code_intelligence/how-to/index_a_go_repository | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/5.3/api/graphql | 0 | 0 | 30 | 0 | 0 | no | -| /docs/v/5.4/own | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.1 | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.12 | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/6.12/code_navigation/how-to/configure_auto_indexing | 0 | 0 | 30 | 0 | 0 | no | @@ -283,16 +283,16 @@ | /docs/v/7.5/admin/code_hosts/github | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/7.5/admin/updates | 0 | 0 | 30 | 0 | 0 | no | | /docs/v/7.7/admin/permissions/syncing | 0 | 0 | 30 | 0 | 0 | no | -| /blog/a-note-from-dan | 710 | 620 | 20 | 0 | 0 | yes | -| /blog/anatomy-of-a-coding-assistant | 250 | 250 | 20 | 0 | 0 | no | -| /blog/cody-enterprise-june-2024 | 160 | 160 | 20 | 0 | 0 | no | -| /blog/how-cody-understands-your-codebase | 1290 | 1280 | 20 | 0 | 0 | no | -| /blog/introducing-enterprise-ai-agents | 150 | 130 | 20 | 0 | 0 | yes | -| /changelog/2026-03-30 | 120 | 90 | 20 | 0 | 0 | no | -| /changelog/a-command-palette-is-born | 410 | 160 | 20 | 0 | 0 | yes | -| /changelog/new-compare-page | 880 | 600 | 20 | 0 | 0 | yes | -| /changelog/site-admin-updates | 380 | 370 | 20 | 0 | 0 | yes | -| /changelog/slack-multi-workspace | 590 | 340 | 20 | 0 | 0 | yes | +| /blog/a-note-from-dan | 40 | 0 | 20 | 0 | 0 | yes | +| /blog/anatomy-of-a-coding-assistant | 0 | 0 | 20 | 0 | 0 | no | +| /blog/cody-enterprise-june-2024 | 0 | 0 | 20 | 0 | 0 | no | +| /blog/how-cody-understands-your-codebase | 40 | 40 | 20 | 0 | 0 | no | +| /blog/introducing-enterprise-ai-agents | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/2026-03-30 | 0 | 0 | 20 | 0 | 0 | no | +| /changelog/a-command-palette-is-born | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/new-compare-page | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/site-admin-updates | 0 | 0 | 20 | 0 | 0 | yes | +| /changelog/slack-multi-workspace | 0 | 0 | 20 | 0 | 0 | yes | | /docs/@4.4/code_search/how-to/exhaustive | 0 | 0 | 20 | 0 | 0 | no | | /docs/@5.2/dev/background-information/ci | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/access_control | 0 | 0 | 20 | 0 | 0 | no | @@ -310,17 +310,16 @@ | /docs/admin/install/kubernetes/update | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/observability/alert_solutions | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/observability/alerting_custom_consumption | 0 | 0 | 20 | 0 | 0 | no | -| /docs/admin/privileges | 290 | 290 | 20 | 0 | 0 | yes | -| /docs/admin/scim | 240 | 180 | 20 | 0 | 0 | yes | -| /docs/admin/updates/epa/epa.html | 20 | 20 | 20 | 0 | 0 | no | +| /docs/admin/privileges | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/admin/scim | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/admin/updates/epa/epa.html | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/updates/migrator/troubleshooting-upgrades | 0 | 0 | 20 | 0 | 0 | no | | /docs/admin/workers | 0 | 0 | 20 | 0 | 0 | no | | /docs/analytics/cloud | 0 | 0 | 20 | 0 | 0 | no | | /docs/api/og/deep-search/./actuator/env | 0 | 0 | 20 | 0 | 0 | no | | /docs/batch_changes/how-tos/publishing_changesets | 0 | 0 | 20 | 0 | 0 | no | -| /docs/batch_changes/quickstart | 0 | 0 | 20 | 0 | 0 | no | | /docs/batch_changes/references/troubleshooting | 0 | 0 | 20 | 0 | 0 | no | -| /docs/beta-and-experimental | 270 | 180 | 20 | 0 | 0 | yes | +| /docs/beta-and-experimental | 0 | 0 | 20 | 0 | 0 | yes | | /docs/beta-and-experimental/wp | 0 | 0 | 20 | 0 | 0 | no | | /docs/cli/references/campaigns/validate | 0 | 0 | 20 | 0 | 0 | no | | /docs/cloud/private_connectivity_public_lb | 0 | 0 | 20 | 0 | 0 | no | @@ -328,22 +327,20 @@ | /docs/code_intelligence/explanations | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/explanations/features | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_intelligence/how-to/index_other_languages | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code_monitoring/explanations/best_practices | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/explanations/uploads | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/adding_lsif_to_workflows | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/configure_data_retention | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/how-to/index_a_go_repository | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_navigation/references/precise_examples | 0 | 0 | 20 | 0 | 0 | no | | /docs/code_search/tutorials | 0 | 0 | 20 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/policies_resource_usage_best_practices | 0 | 0 | 20 | 0 | 0 | no | | /docs/code-search/working/search_subexpressions | 0 | 0 | 20 | 0 | 0 | no | -| /docs/cody/capabilities | 150 | 120 | 20 | 0 | 0 | yes | -| /docs/cody/capabilities/autocomplete | 270 | 260 | 20 | 0 | 0 | yes | -| /docs/cody/clients/install-visual-studio | 440 | 380 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/cody/capabilities/autocomplete | 0 | 0 | 20 | 0 | 0 | yes | +| /docs/cody/clients/install-visual-studio | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/core-concepts/embeddings/configure-embeddings | 0 | 0 | 20 | 0 | 0 | no | -| /docs/cody/faq | 830 | 790 | 20 | 0 | 0 | yes | +| /docs/cody/explanations/cody_gateway | 0 | 0 | 20 | 0 | 0 | no | +| /docs/cody/faq | 0 | 0 | 20 | 0 | 0 | yes | | /docs/cody/wp | 0 | 0 | 20 | 0 | 0 | no | -| /docs/deep-search | 1630 | 1590 | 20 | 0 | 20 | yes | | /docs/dev/rfcs | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/admin/executors/executor_secrets | 0 | 0 | 20 | 0 | 0 | no | | /docs/docs/admin/pricing | 0 | 0 | 20 | 0 | 0 | no | @@ -355,9 +352,9 @@ | /docs/pricing/enterprise-starter | 0 | 0 | 20 | 0 | 0 | no | | /docs/pricing/plans/free | 0 | 0 | 20 | 0 | 0 | no | | /docs/self-hosted/executors/deploy_executors_terraform | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/external-services | 320 | 260 | 20 | 0 | 0 | yes | +| /docs/self-hosted/external-services | 30 | 0 | 20 | 0 | 0 | yes | | /docs/self-hosted/faq.md | 0 | 0 | 20 | 0 | 0 | no | -| /docs/self-hosted/how-to/privileged-migrations | 100 | 100 | 20 | 0 | 0 | yes | +| /docs/self-hosted/how-to/privileged-migrations | 0 | 0 | 20 | 0 | 0 | yes | | /docs/self-hosted/observability/./actuator/logfile | 0 | 0 | 20 | 0 | 0 | no | | /docs/technical-changelog.rss | 0 | 0 | 20 | 0 | 0 | no | | /docs/user/search/saved_searches | 0 | 0 | 20 | 0 | 0 | no | @@ -374,6 +371,7 @@ | /docs/v/7.0/code_search/reference/queries | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.1/batch-changes/site-admin-configuration | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.2/code_monitoring | 0 | 0 | 20 | 0 | 0 | no | +| /docs/v/7.4 | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/permissions/api | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/admin/updates | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.4/api/mcp | 0 | 0 | 20 | 0 | 0 | no | @@ -383,33 +381,35 @@ | /docs/v/7.6/code_search/how-to/search_contexts | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.6/code-search/working/search_contexts | 0 | 0 | 20 | 0 | 0 | no | | /docs/v/7.7/api/mcp | 0 | 0 | 20 | 0 | 0 | no | +| /blog/combining-chat-and-search | 0 | 0 | 10 | 0 | 0 | yes | | /blog/combining-chat-and-search/logon/LogonPoint/index.html | 0 | 0 | 10 | 0 | 0 | no | -| /blog/context-engineering | 5970 | 5860 | 10 | 0 | 0 | yes | +| /blog/context-engineering | 20 | 20 | 10 | 0 | 0 | yes | | /blog/feed.rss | 0 | 0 | 10 | 0 | 0 | no | | /blog/introducing-agentic-chat/wp | 0 | 0 | 10 | 0 | 0 | no | -| /blog/introducing-the-new-sourcegraph-changelog | 350 | 350 | 10 | 0 | 0 | yes | +| /blog/introducing-sourcegraph-enterprise-starter | 0 | 0 | 10 | 0 | 0 | yes | +| /blog/introducing-the-new-sourcegraph-changelog | 0 | 0 | 10 | 0 | 0 | yes | | /blog/ipfs-the-permanent-web-by-juan-benet-talk | 0 | 0 | 10 | 20 | 0 | no | -| /blog/local-code-completion-with-ollama-and-cody | 320 | 320 | 10 | 0 | 0 | no | -| /blog/log4j-log4shell-0-day | 630 | 620 | 10 | 0 | 0 | no | -| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 70 | 70 | 10 | 0 | 0 | no | +| /blog/local-code-completion-with-ollama-and-cody | 0 | 0 | 10 | 0 | 0 | no | +| /blog/log4j-log4shell-0-day | 0 | 0 | 10 | 0 | 0 | no | +| /blog/migrating-to-css-modules-with-codemods-and-code-insights | 0 | 0 | 10 | 0 | 0 | no | | /blog/release/May-2024 | 0 | 0 | 10 | 20 | 0 | no | -| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 210 | 210 | 10 | 0 | 0 | no | -| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 1460 | 1460 | 10 | 0 | 0 | yes | -| /changelog/2026-03-23 | 110 | 110 | 10 | 0 | 0 | no | -| /changelog/7-0-removals-deprecations | 620 | 410 | 10 | 0 | 0 | yes | +| /blog/security-considerations-for-enterprises-adopting-ai-coding-assistants | 30 | 30 | 10 | 0 | 0 | no | +| /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/2026-03-23 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/7-0-removals-deprecations | 0 | 0 | 10 | 0 | 0 | yes | | /changelog/api/track | 0 | 0 | 10 | 0 | 0 | no | -| /changelog/deep-search-evaluator | 620 | 230 | 10 | 0 | 0 | yes | -| /changelog/deep-search-pdf-support | 80 | 80 | 10 | 0 | 0 | yes | -| /changelog/releases/7.0.2178 | 70 | 60 | 10 | 0 | 0 | no | -| /changelog/repository-overview | 360 | 360 | 10 | 0 | 0 | yes | -| /changelog/whats-new | 180 | 150 | 10 | 0 | 0 | yes | +| /changelog/deep-search-evaluator | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/deep-search-pdf-support | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/releases/7.0.2178 | 0 | 0 | 10 | 0 | 0 | no | +| /changelog/repository-overview | 0 | 0 | 10 | 0 | 0 | yes | +| /changelog/whats-new | 0 | 0 | 10 | 0 | 0 | yes | | /docs/@3.24/admin/external_service/github | 0 | 0 | 10 | 0 | 0 | no | | /docs/@3.24/admin/observability | 0 | 0 | 10 | 0 | 0 | no | | /docs/@3.24/admin/validation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/code-hosts/github | 820 | 760 | 10 | 0 | 0 | yes | +| /docs/admin/code-hosts/github | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/config/critical_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/config/network-filtering | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/config/site-config | 2950 | 2860 | 10 | 0 | 0 | yes | +| /docs/admin/config/site-config | 0 | 0 | 10 | 0 | 0 | yes | | /docs/admin/deploy/kubernetes/scale | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/machine-images | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/deploy/repositories | 0 | 0 | 10 | 0 | 0 | no | @@ -420,15 +420,15 @@ | /docs/admin/install/docker/google_cloud | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/kubernetes/configure | 0 | 0 | 10 | 0 | 0 | no | | /docs/admin/install/kubernetes/troubleshoot | 0 | 0 | 10 | 0 | 0 | no | -| /docs/admin/migration | 260 | 260 | 10 | 0 | 0 | yes | -| /docs/admin/permissions/webhooks | 100 | 100 | 10 | 0 | 0 | yes | -| /docs/analytics/pcw | 40 | 40 | 10 | 0 | 0 | yes | +| /docs/admin/migration | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/admin/permissions/webhooks | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/analytics/pcw | 0 | 0 | 10 | 0 | 0 | yes | | /docs/api/graphql/managing-search-contexts-with-api | 0 | 0 | 10 | 0 | 0 | no | | /docs/app | 0 | 0 | 10 | 0 | 0 | no | | /docs/batch_changes/how-tos/creating_multiple_changesets_in_large_repositories | 0 | 0 | 10 | 0 | 0 | no | | /docs/batch_changes/tutorials/refactor_go_comby | 0 | 0 | 10 | 0 | 0 | no | | /docs/cli/references/./httptrace | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cli/references/config | 280 | 280 | 10 | 0 | 0 | yes | +| /docs/cli/references/config | 0 | 0 | 10 | 0 | 0 | yes | | /docs/cli/references/users/./actuator/trace | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_insights/explanations/administration_and_security_of_code_insights | 0 | 0 | 10 | 0 | 0 | no | | /docs/code_insights/references/license | 0 | 0 | 10 | 0 | 0 | no | @@ -438,7 +438,7 @@ | /docs/code_search/tutorials/search_subexpressions | 0 | 0 | 10 | 0 | 0 | no | | /docs/code-search/code-navigation/inference_configuration | 0 | 0 | 10 | 0 | 0 | no | | /docs/code-search/code-navigation/search_based_code_navigation | 0 | 0 | 10 | 0 | 0 | no | -| /docs/cody/capabilities/auto-edit | 220 | 200 | 10 | 0 | 0 | yes | +| /docs/cody/capabilities/auto-edit | 0 | 0 | 10 | 0 | 0 | yes | | /docs/cody/capabilities/auto-edit/vpn/index.html | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/core-concepts/cody_gateway | 0 | 0 | 10 | 0 | 0 | no | | /docs/cody/core-concepts/enterprise-architecture | 0 | 0 | 10 | 0 | 0 | no | @@ -450,15 +450,15 @@ | /docs/docs/code_insights | 0 | 0 | 10 | 0 | 0 | no | | /docs/integration/browser-extension/./actuator/env | 0 | 0 | 10 | 0 | 0 | no | | /docs/integration/open_in_editor | 0 | 0 | 10 | 0 | 0 | no | -| /docs/llms.txt | 300 | 300 | 10 | 0 | 0 | no | +| /docs/llms.txt | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted.md | 0 | 0 | 10 | 0 | 0 | no | | /docs/self-hosted/deploy/without_service_discovery | 0 | 0 | 10 | 0 | 0 | no | -| /docs/self-hosted/deployment-best-practices | 160 | 160 | 10 | 0 | 0 | yes | +| /docs/self-hosted/deployment-best-practices | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/executors/deploy_executors | 0 | 0 | 10 | 0 | 0 | no | -| /docs/self-hosted/external-services/postgres | 180 | 170 | 10 | 0 | 0 | yes | -| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 270 | 260 | 10 | 0 | 0 | yes | -| /docs/self-hosted/observability | 280 | 270 | 10 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator | 70 | 70 | 10 | 0 | 0 | yes | +| /docs/self-hosted/external-services/postgres | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/how-to/dirty-database-pre-3-37 | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/observability | 0 | 0 | 10 | 0 | 0 | yes | +| /docs/self-hosted/updates/migrator | 0 | 0 | 10 | 0 | 0 | yes | | /docs/self-hosted/updates/migrator/downgrading.md | 0 | 0 | 10 | 0 | 0 | no | | /docs/user/automation | 0 | 0 | 10 | 0 | 0 | no | | /docs/user/usage_statistics | 0 | 0 | 10 | 0 | 0 | no | @@ -467,13 +467,11 @@ | /docs/v/6.10/batch_changes | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.12/admin/auth | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/6.12/cli | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/6.5/batch_changes/how-tos/publishing_changesets | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/api | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/batch_changes/quickstart | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/code_insights/references/common_use_cases | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/code_search/reference | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.0/code-search/types/search-jobs | 0 | 0 | 10 | 0 | 0 | no | -| /docs/v/7.0/cody | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1 | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.1/admin/config/site_config | 0 | 0 | 10 | 0 | 0 | no | | /docs/v/7.2/admin/config/batch_changes | 0 | 0 | 10 | 0 | 0 | no | @@ -497,39 +495,26 @@ | /blog/117580140734/announcing-appdash-an-open-source-perf-tracing | 0 | 0 | 0 | 20 | 0 | no | | /blog/118135010314 | 0 | 0 | 0 | 10 | 0 | no | | /blog/2020/code-search-in-monorepos | 0 | 0 | 0 | 10 | 0 | no | -| /blog/5-easy-ways-to-start-contributing-to-docker-using-sourcegraph | 30 | 30 | 0 | 0 | 0 | no | -| /blog/5-steps-to-automate-repetitive-tasks-in-software-development | 250 | 230 | 0 | 0 | 0 | no | | /blog/93793683802e220755a568.avi | 0 | 0 | 0 | 10 | 0 | no | | /blog/a-devs-thoughts-on-developer-productivity | 0 | 0 | 0 | 10 | 0 | no | -| /blog/a-different-way-to-think-about-code-ownership | 30 | 30 | 0 | 0 | 0 | no | | /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developer | 0 | 0 | 0 | 10 | 0 | no | -| /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers | 570 | 520 | 0 | 0 | 0 | yes | | /blog/a-new-era-for-sourcegraph-the-intelligence-layer-for-ai-coding-agents-and-developers/index.md | 0 | 0 | 0 | 10 | 0 | no | | /blog/a-programmers-guide-to-find-and-replace | 0 | 0 | 0 | 50 | 0 | no | -| /blog/a-simpler-way-to-understand-legacy-code | 2210 | 2190 | 0 | 0 | 0 | no | -| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 310 | 190 | 0 | 10 | 0 | yes | +| /blog/a-smarter-way-to-run-code-migrations-with-less-llm-context | 120 | 0 | 0 | 10 | 0 | yes | | /blog/a-url-for-every-function-in-the-world-83cf36dfcddb | 0 | 0 | 0 | 10 | 0 | no | | /blog/account/register | 0 | 0 | 0 | 10 | 0 | no | -| /blog/admin-analytics | 20 | 20 | 0 | 0 | 0 | no | | /blog/aG93LWNvZH | 0 | 0 | 0 | 10 | 0 | no | | /blog/agent-skills | 0 | 0 | 0 | 30 | 0 | no | | /blog/agentic-batch-changes-is-now-in-public-beta | 0 | 0 | 0 | 10 | 0 | no | -| /blog/agentic-batch-changes-public-beta | 880 | 880 | 0 | 0 | 0 | yes | -| /blog/agentic-coding | 2120 | 2070 | 0 | 0 | 0 | yes | -| /blog/agentic-coding-is-creating-more-code-more-code-is-creating-a-bigger-need-for-code-search | 1010 | 1010 | 0 | 0 | 0 | yes | -| /blog/agile-metrics-what-to-track-and-why-they-matter-2026 | 420 | 240 | 0 | 0 | 0 | yes | +| /blog/agentic-coding | 100 | 100 | 0 | 0 | 0 | yes | | /blog/ai-assisted-coding-with-cody-lessons-from-context-retrieval-and-evaluation-for-code-recommendations | 0 | 0 | 0 | 70 | 0 | no | | /blog/ai-code-migration | 0 | 0 | 0 | 30 | 0 | no | -| /blog/ai-code-refactoring | 60 | 40 | 0 | 0 | 0 | yes | -| /blog/ai-code-review | 1340 | 1320 | 0 | 0 | 0 | yes | +| /blog/ai-code-refactoring | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/ai-code-review | 30 | 20 | 0 | 0 | 0 | yes | | /blog/ai-coding-costs | 0 | 0 | 0 | 10 | 0 | no | -| /blog/ai-dev-tools-night-meetup-june-24 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/ai-dev-tools-night-meetup-june-24-recap | 60 | 60 | 0 | 0 | 0 | no | -| /blog/ai-developer-tools | 470 | 430 | 0 | 0 | 0 | yes | +| /blog/ai-developer-tools | 120 | 80 | 0 | 0 | 0 | yes | | /blog/ai-native-codebases-2 | 0 | 0 | 0 | 30 | 0 | no | -| /blog/ai-software-development | 40 | 40 | 0 | 0 | 0 | yes | | /blog/alex-isken | 0 | 0 | 0 | 10 | 0 | no | -| /blog/all-you-need-is-cody | 80 | 70 | 0 | 0 | 0 | no | | /blog/amp | 0 | 0 | 0 | 70 | 0 | no | | /blog/amp-agents | 0 | 0 | 0 | 40 | 0 | no | | /blog/amp-ai-coding-agent | 0 | 0 | 0 | 20 | 0 | no | @@ -538,244 +523,128 @@ | /blog/amp-launch | 0 | 0 | 0 | 20 | 0 | no | | /blog/amp-the-new-ai-coding-agent | 0 | 0 | 0 | 30 | 0 | no | | /blog/an-introduction-to-go-tool-trace-rhys-hiltner | 0 | 0 | 0 | 10 | 0 | no | -| /blog/angularjs-to-react-migration | 160 | 160 | 0 | 0 | 0 | yes | | /blog/announcing-amp | 0 | 0 | 0 | 20 | 0 | no | -| /blog/announcing-auto-indexing | 160 | 160 | 0 | 0 | 0 | no | | /blog/announcing-autofix-for-code-reviews | 0 | 0 | 0 | 20 | 0 | no | -| /blog/announcing-checkup-simple-self-hosted-health-checks | 70 | 70 | 0 | 0 | 0 | no | | /blog/announcing-checkup-simple-self-hosted-health-checks-c5707cf729ab | 0 | 0 | 0 | 30 | 0 | no | -| /blog/announcing-code-insights | 80 | 80 | 0 | 0 | 0 | no | +| /blog/announcing-code-insights | 40 | 40 | 0 | 0 | 0 | no | | /blog/announcing-cody | 0 | 0 | 0 | 10 | 0 | no | -| /blog/announcing-our-partnership-with-dx | 540 | 480 | 0 | 0 | 0 | no | -| /blog/announcing-prompt-library | 260 | 260 | 0 | 0 | 0 | no | -| /blog/announcing-scip | 1940 | 1900 | 0 | 0 | 0 | no | -| /blog/announcing-scip-clang | 210 | 210 | 0 | 0 | 0 | no | -| /blog/announcing-scip-typescript | 340 | 340 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraph-2 | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-our-partnership-with-dx | 20 | 20 | 0 | 0 | 0 | no | +| /blog/announcing-scip | 40 | 20 | 0 | 0 | 0 | no | | /blog/announcing-sourcegraph-5-9-and-the-deprecation-of-the-self-hosted-deployment-option | 0 | 0 | 0 | 40 | 0 | no | -| /blog/announcing-sourcegraph-app | 160 | 160 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraph-app | 40 | 40 | 0 | 0 | 0 | no | | /blog/announcing-sourcegraph-cody-ai-assistant | 0 | 0 | 0 | 10 | 0 | no | -| /blog/announcing-sourcegraph-own | 10 | 10 | 0 | 0 | 0 | no | -| /blog/announcing-sourcegraphs-series-d-round | 470 | 460 | 0 | 0 | 0 | no | -| /blog/announcing-the-llm-litmus-test | 60 | 60 | 0 | 0 | 0 | no | -| /blog/api-documentation-for-all-your-code | 30 | 30 | 0 | 0 | 0 | no | +| /blog/announcing-sourcegraphs-series-d-round | 80 | 80 | 0 | 0 | 0 | no | | /blog/appdash-an-open-source-perf-tracing-suite-4e1fc41c2031 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/asynchronous-software-development-how-distributed-engineering-teams-ship-faster | 500 | 90 | 0 | 0 | 0 | yes | | /blog/atom.xml | 0 | 0 | 0 | 30 | 0 | no | -| /blog/auth/createAdmin | 0 | 0 | 0 | 10 | 0 | no | -| /blog/automated-code-review-tools | 12370 | 12090 | 0 | 0 | 0 | yes | -| /blog/automating-security-triage-hackerone-deep-search | 880 | 870 | 0 | 0 | 0 | yes | +| /blog/automated-code-review-tools | 90 | 80 | 0 | 0 | 0 | yes | | /blog/automating-security-triage-with-hackerone-and-deep-search | 0 | 0 | 0 | 60 | 0 | no | -| /blog/avoiding-the-pitfalls-of-iteration-based-development | 80 | 80 | 0 | 0 | 0 | no | -| /blog/batch-changes-is-better-than-ever | 510 | 510 | 0 | 0 | 0 | yes | -| /blog/best-ai-coding-assistant | 90 | 70 | 0 | 0 | 0 | yes | -| /blog/best-ai-coding-tools | 600 | 490 | 0 | 20 | 0 | yes | +| /blog/best-ai-coding-assistant | 30 | 10 | 0 | 0 | 0 | yes | +| /blog/best-ai-coding-tools | 50 | 0 | 0 | 20 | 0 | yes | | /blog/best-automated-code-review-tools | 0 | 0 | 0 | 60 | 0 | no | -| /blog/best-developer-experience-tools-for-2026 | 1600 | 1580 | 0 | 0 | 0 | yes | -| /blog/best-source-code-tools-large-codebases | 210 | 210 | 0 | 0 | 0 | yes | | /blog/best-source-code-tools-large-codebases/index.md | 0 | 0 | 0 | 10 | 0 | no | | /blog/better-github-code-search-and-browsing-with-the-sourcegraph-chrome-extension | 0 | 0 | 0 | 20 | 0 | no | | /blog/better-onboarding-how-to-prevent-codebase-overwhelm | 0 | 0 | 0 | 90 | 0 | no | -| /blog/beyond-working-set-memory-understanding-the-cadvisor-memory-metrics | 480 | 480 | 0 | 0 | 0 | yes | -| /blog/big-code-survey-2020 | 80 | 80 | 0 | 0 | 0 | no | | /blog/bin/register/XWiki/XWikiRegister | 0 | 0 | 0 | 30 | 0 | no | -| /blog/blog-release-4-0 | 20 | 20 | 0 | 0 | 0 | no | | /blog/blog/feed.rss | 0 | 0 | 0 | 50 | 0 | no | -| /blog/boosting-code-ownership | 20 | 20 | 0 | 0 | 0 | no | | /blog/browse-github-like-an-ide-with-the-sourcegraph-chrome-extension-9e279d2b98e9 | 0 | 0 | 0 | 90 | 0 | no | -| /blog/building-a-go-web-app-with-gin-mongodb-cody-ai | 40 | 40 | 0 | 0 | 0 | no | -| /blog/building-a-printing-api-in-php-with-cody | 30 | 30 | 0 | 0 | 0 | no | -| /blog/building-a-product-one-user-interview-at-a-time | 200 | 200 | 0 | 0 | 0 | no | | /blog/building-a-testable-webapp | 0 | 0 | 0 | 60 | 0 | no | | /blog/building-conc-a-better-go-concurrency-library | 0 | 0 | 0 | 10 | 0 | no | -| /blog/building-conc-better-structured-concurrency-for-go | 320 | 320 | 0 | 0 | 0 | no | -| /blog/building-databot-our-always-on-data-assistant | 390 | 380 | 0 | 0 | 0 | yes | +| /blog/building-conc-better-structured-concurrency-for-go | 10 | 10 | 0 | 0 | 0 | no | | /blog/building-databot-our-always-on-data-assistant.md | 0 | 0 | 0 | 20 | 0 | no | -| /blog/c-cpp-cross-repo | 10 | 10 | 0 | 0 | 0 | no | -| /blog/change-a-single-character-in-hundreds-of-github-repos-while-staying-in-control | 60 | 60 | 0 | 0 | 0 | no | -| /blog/change-failure-rate | 390 | 390 | 0 | 0 | 0 | yes | | /blog/changelog/cody-context-fetching | 0 | 0 | 0 | 20 | 0 | no | -| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 2460 | 2440 | 0 | 0 | 0 | yes | +| /blog/changes-to-cody-free-pro-and-enterprise-starter-plans | 50 | 50 | 0 | 0 | 0 | yes | | /blog/changes-to-sourcegraph-open-source-code | 0 | 0 | 0 | 20 | 0 | no | | /blog/changing-our-license | 0 | 0 | 0 | 20 | 0 | no | | /blog/changing-the-license | 0 | 0 | 0 | 10 | 0 | no | -| /blog/chat-oriented-programming-in-action | 820 | 820 | 0 | 0 | 0 | no | | /blog/chat-oriented-programming-in-action4 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cheating-is-all-you-need | 1940 | 1840 | 0 | 0 | 0 | no | | /blog/chop-coding-with-ai | 0 | 0 | 0 | 10 | 0 | no | | /blog/chrome-extension-tooltips-and-seamless | 0 | 0 | 0 | 20 | 0 | no | -| /blog/claude-3-5-sonnet-now-available-in-cody | 70 | 70 | 0 | 0 | 0 | no | -| /blog/claude-3-now-available-in-cody | 90 | 90 | 0 | 0 | 0 | no | +| /blog/claude-3-5-sonnet-now-available-in-cody | 40 | 40 | 0 | 0 | 0 | no | | /blog/claude-3.5-sonnet-now-available-in-cody | 0 | 0 | 0 | 70 | 0 | no | -| /blog/claude-code-file-picker-symbol-ranking | 430 | 410 | 0 | 0 | 0 | yes | +| /blog/claude-code-file-picker-symbol-ranking | 30 | 10 | 0 | 0 | 0 | yes | | /blog/cloud-optimization-part-1-visibility | 0 | 0 | 0 | 10 | 0 | no | | /blog/co | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-ai/how-cody-context-works | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-complexity | 610 | 590 | 0 | 0 | 0 | yes | -| /blog/code-finder-fast-code-search-for-agents | 1050 | 1040 | 0 | 0 | 0 | yes | +| /blog/code-complexity | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-finder-fast-code-search-for-agents | 30 | 30 | 0 | 0 | 0 | yes | | /blog/code-finder-fast-code-search-for-agents/index.md | 0 | 0 | 0 | 30 | 0 | no | | /blog/code-finder-fast-efficient-code-search-for-coding-agents | 0 | 0 | 0 | 90 | 0 | no | | /blog/code-graph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-graph-ai-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/code-intelligence | 0 | 0 | 0 | 10 | 0 | no | -| /blog/code-intelligence-for-java-now-available-on-sourcegraph | 70 | 70 | 0 | 0 | 0 | no | | /blog/code-intelligence-for-java-now-available-on-sourcegraph-5bcb149f177 | 0 | 0 | 0 | 40 | 0 | no | -| /blog/code-intelligence-in-vim | 80 | 80 | 0 | 0 | 0 | no | -| /blog/code-intelligence-on-github-embedded-code-snippets | 20 | 20 | 0 | 0 | 0 | no | | /blog/code-intelligence-on-sourcegraph-com | 0 | 0 | 0 | 30 | 0 | no | -| /blog/code-navigation-in-github-pull-requests | 40 | 40 | 0 | 0 | 0 | no | -| /blog/code-refactoring-techniques | 700 | 660 | 0 | 0 | 0 | yes | -| /blog/code-refactoring-tools | 1910 | 1890 | 0 | 0 | 0 | yes | -| /blog/code-review-checklist | 360 | 360 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-techniques | 60 | 20 | 0 | 0 | 0 | yes | +| /blog/code-refactoring-tools | 20 | 0 | 0 | 0 | 0 | yes | +| /blog/code-review-checklist | 10 | 10 | 0 | 0 | 0 | yes | | /blog/code-scanning-tools | 0 | 0 | 0 | 20 | 0 | no | -| /blog/code-search-in-monorepos | 150 | 150 | 0 | 0 | 0 | no | -| /blog/code-search-now-supports-jupyter-notebook-rendering | 190 | 190 | 0 | 0 | 0 | no | -| /blog/code-search-to-code-intelligence | 100 | 100 | 0 | 0 | 0 | no | -| /blog/code-security-at-google-find-fix-vulnerabilities-in-code | 20 | 20 | 0 | 0 | 0 | no | | /blog/code-usage-examples-in-your-editor-as-you-type-f7fc89d894dd | 0 | 0 | 0 | 20 | 0 | no | -| /blog/coding-on-the-road-with-android-cody | 130 | 120 | 0 | 0 | 0 | no | | /blog/cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-ai-slack-bot | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-amp | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cody-better-faster-stronger | 210 | 210 | 0 | 0 | 0 | no | | /blog/cody-claude-3-5-sonnet-default | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-context | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cody-context-architecture | 0 | 0 | 0 | 140 | 0 | no | +| /blog/cody-context-architecture | 0 | 0 | 0 | 130 | 0 | no | | /blog/cody-context-retrieval | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-context-retrieval-sparse-dense-ranking | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-enterprise | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cody-for-jetbrains-is-generally-available | 50 | 50 | 0 | 0 | 0 | no | -| /blog/cody-for-jetbrains-v7-0-0-now-available | 50 | 50 | 0 | 0 | 0 | no | | /blog/cody-for-jetbrains-v7.0.0-now-available/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-for-open-source | 580 | 580 | 0 | 0 | 0 | no | -| /blog/cody-gitlab-integration | 130 | 110 | 0 | 0 | 0 | no | | /blog/cody-hybrid-search | 0 | 0 | 0 | 20 | 0 | no | | /blog/cody-improvements-2024 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-in-sourcegraph-5-1 | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-is-cheating | 760 | 760 | 0 | 0 | 0 | no | -| /blog/cody-is-enterprise-ready | 370 | 370 | 0 | 0 | 0 | no | -| /blog/cody-is-generally-available | 440 | 440 | 0 | 0 | 0 | no | +| /blog/cody-is-generally-available | 10 | 10 | 0 | 0 | 0 | no | | /blog/cody-is-now-free-for-all-developers | 0 | 0 | 0 | 30 | 0 | no | | /blog/cody-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cody-jetbrains-6-0-14-release | 10 | 0 | 0 | 0 | 0 | no | -| /blog/cody-jetbrains-6-0-25-release | 30 | 30 | 0 | 0 | 0 | no | | /blog/cody-mcp | 0 | 0 | 0 | 50 | 0 | no | | /blog/cody-multi-repo | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-multi-repo-context | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-pro-launch | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-questions-answered-live-november-2024 | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-supports-anthropic-model-context-protocol | 590 | 550 | 0 | 0 | 0 | no | | /blog/cody-supports-claude-2 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 5790 | 5720 | 0 | 0 | 0 | no | +| /blog/cody-the-ai-powered-tool-helping-support-engineers-unblock-themselves | 70 | 70 | 0 | 0 | 0 | no | | /blog/cody-v1 | 0 | 0 | 0 | 10 | 0 | no | | /blog/cody-vs-amp | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-vscode-0-10-release | 10 | 10 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-10-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-12-0-release | 60 | 60 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-14-0-release | 150 | 150 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-16-0-release | 120 | 120 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-18-0-release | 30 | 30 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-20-0-release | 80 | 80 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-22-0-release | 110 | 100 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-24-0-release | 310 | 310 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-26-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-28-0-release | 130 | 130 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-30-0-release | 70 | 70 | 0 | 0 | 0 | no | +| /blog/cody-vscode-1-22-0-release | 10 | 10 | 0 | 0 | 0 | no | | /blog/cody-vscode-1-32-0-release/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/cody-vscode-1-4-0-release | 20 | 20 | 0 | 0 | 0 | no | -| /blog/cody-vscode-1-6-0-release | 30 | 30 | 0 | 0 | 0 | no | | /blog/cody-with-model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/combining-chat-and-search | 150 | 140 | 0 | 0 | 0 | yes | | /blog/combining-chat-and-search-with-sourcegraph-6-0 | 0 | 0 | 0 | 60 | 0 | no | -| /blog/compliance-first-ai-proving-agent-provenance | 440 | 440 | 0 | 0 | 0 | yes | -| /blog/contemplating-hype | 30 | 30 | 0 | 0 | 0 | no | +| /blog/compliance-first-ai-proving-agent-provenance | 30 | 30 | 0 | 0 | 0 | yes | | /blog/context-engineering-coding | 0 | 0 | 0 | 10 | 0 | no | | /blog/convoy-improved-their-developer-on-boarding-with-sourcegraph | 0 | 0 | 0 | 60 | 0 | no | -| /blog/copilot-vs-cody-why-context-matters-for-code-ai | 340 | 340 | 0 | 0 | 0 | no | -| /blog/creating-sourcegraph-product-design-principles | 40 | 40 | 0 | 0 | 0 | no | -| /blog/cross-repository-code-navigation | 1470 | 1390 | 0 | 0 | 0 | yes | -| /blog/cycle-time-in-software-development-a-complete-guide | 1530 | 1110 | 0 | 0 | 0 | yes | +| /blog/cycle-time-in-software-development-a-complete-guide | 90 | 90 | 0 | 0 | 0 | yes | | /blog/cyclomatic-complexity | 0 | 0 | 0 | 30 | 0 | no | -| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 1920 | 1650 | 0 | 0 | 0 | yes | -| /blog/deep-search | 130 | 130 | 0 | 0 | 0 | yes | -| /blog/deep-search-goes-ga-now-with-role-based-permissions | 360 | 360 | 0 | 0 | 0 | yes | -| /blog/deep-search-navigate-codebases | 310 | 290 | 0 | 0 | 0 | yes | -| /blog/deep-search-slack-agent-lessons | 700 | 410 | 0 | 0 | 0 | yes | +| /blog/cyclomatic-complexity-what-it-is-and-how-to-reduce-it | 30 | 20 | 0 | 0 | 0 | yes | +| /blog/deep-search-navigate-codebases | 50 | 30 | 0 | 0 | 0 | yes | | /blog/deep-search.md | 0 | 0 | 0 | 40 | 0 | no | -| /blog/dependency-prefix-supply-chain-risk | 680 | 650 | 0 | 0 | 0 | yes | -| /blog/dependency-upgrade-automation | 120 | 120 | 0 | 0 | 0 | yes | -| /blog/deprecating-lsp | 10 | 10 | 0 | 0 | 0 | no | -| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 430 | 250 | 0 | 0 | 0 | yes | -| /blog/detection-in-one-repo-isnt-a-security-posture | 370 | 370 | 0 | 0 | 0 | yes | +| /blog/detecting-supply-chain-attacks-at-scale-with-deep-search | 10 | 0 | 0 | 0 | 0 | yes | | /blog/dev | 0 | 0 | 0 | 30 | 0 | no | -| /blog/dev-tool-time-adam-gordon-bell | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-amir-rajan | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-leah-culver | 10 | 10 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-liz-fong-jones | 130 | 130 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-mitchell-hashimoto | 670 | 670 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-paul-jolly | 20 | 20 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-roger-peppe | 50 | 50 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-seth-vargo | 80 | 80 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-theprimeagen | 750 | 750 | 0 | 0 | 0 | no | -| /blog/dev-tool-time-thorsten-ball | 70 | 70 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-seth-vargo | 30 | 30 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-theprimeagen | 20 | 20 | 0 | 0 | 0 | no | +| /blog/dev-tool-time-thorsten-ball | 20 | 20 | 0 | 0 | 0 | no | | /blog/developer-experience-tools | 0 | 0 | 0 | 10 | 0 | no | -| /blog/developer-onboarding | 380 | 380 | 0 | 0 | 0 | yes | -| /blog/developer-productivity-how-to-measure-and-improve-it | 320 | 100 | 0 | 0 | 0 | yes | | /blog/developer-productivity-how-to-measure-and-improve-it/n5gmdb8 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/developer-productivity-thoughts | 870 | 860 | 0 | 0 | 0 | no | | /blog/developer-productivity-with-ai-coding-assistants | 0 | 0 | 0 | 20 | 0 | no | -| /blog/devops-transformation-a-complete-guide-for-2026 | 510 | 510 | 0 | 0 | 0 | yes | | /blog/devops-transformation-a-complete-guide-for-2026.md | 0 | 0 | 0 | 30 | 0 | no | -| /blog/devsecops-tools | 20 | 20 | 0 | 0 | 0 | yes | | /blog/discuss-code-and-docs-in-repositories | 0 | 0 | 0 | 10 | 0 | no | -| /blog/documentation-as-code | 540 | 530 | 0 | 0 | 0 | yes | +| /blog/documentation-as-code | 10 | 0 | 0 | 0 | 0 | yes | | /blog/documentation-as-codeTreat | 0 | 0 | 0 | 10 | 0 | no | -| /blog/driving-engineering-initiatives-webinar-takeaways | 280 | 280 | 0 | 0 | 0 | yes | | /blog/dump.zip | 0 | 0 | 0 | 20 | 0 | no | -| /blog/eliminate-secrets-from-codebase-with-universal-code-search | 60 | 60 | 0 | 0 | 0 | no | | /blog/embeddings-search-for-code | 0 | 0 | 0 | 20 | 0 | no | -| /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration | 10 | 10 | 0 | 0 | 0 | no | | /blog/enable-native-code-intelligence-gitlab-sourcegraph-integration/blog | 0 | 0 | 0 | 20 | 0 | no | -| /blog/engineering-metrics-what-actually-matters-in-2026 | 510 | 290 | 0 | 0 | 0 | yes | -| /blog/enhancing-code-completion-for-rust-in-cody | 80 | 70 | 0 | 0 | 0 | no | -| /blog/enhancing-openrct2-performance-a-journey-cody-simd | 10 | 10 | 0 | 0 | 0 | no | -| /blog/enterprise-cloud | 230 | 150 | 0 | 0 | 0 | no | | /blog/enterprise-cody-multi-repo-context | 0 | 0 | 0 | 20 | 0 | no | -| /blog/enterprise-context-for-coding-agents | 0 | 0 | 0 | 10 | 0 | no | | /blog/enterprise-search | 0 | 0 | 0 | 20 | 0 | no | | /blog/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/episode-3-revenge-of-the-react-vulnerabilities | 210 | 210 | 0 | 0 | 0 | yes | -| /blog/evolution-of-the-precise-code-intel-backend | 120 | 120 | 0 | 0 | 0 | no | | /blog/evolutionary-optimization-peter-bourgon | 0 | 0 | 0 | 10 | 0 | no | -| /blog/ex-googler-guide-dev-tools | 980 | 950 | 0 | 0 | 0 | no | -| /blog/expanding-sourcegraph-from-on-premise-to-saas | 60 | 60 | 0 | 0 | 0 | no | -| /blog/exploring-data-visualization-with-d3-cody | 160 | 160 | 0 | 0 | 0 | no | | /blog/exploring-pydantic-with-samuel-colvin. | 0 | 0 | 0 | 30 | 0 | no | | /blog/fallacies-of-distributed-gomputing | 0 | 0 | 0 | 10 | 0 | no | -| /blog/faster-smoother-github-code-browsing | 80 | 80 | 0 | 0 | 0 | no | -| /blog/feature-release-october-2023 | 100 | 100 | 0 | 0 | 0 | no | -| /blog/feed | 0 | 0 | 0 | 210 | 0 | no | -| /blog/feed.atom | 0 | 0 | 0 | 3410 | 0 | no | -| /blog/feed.xml | 0 | 0 | 0 | 1000 | 0 | no | +| /blog/feed | 0 | 0 | 0 | 220 | 0 | no | +| /blog/feed.atom | 0 | 0 | 0 | 3370 | 0 | no | +| /blog/feed.xml | 0 | 0 | 0 | 990 | 0 | no | | /blog/felicis-investment-fast-growth | 0 | 0 | 0 | 20 | 0 | no | -| /blog/felix-becker-fully-type-safe-web-workers-with-zero-boilerplate | 10 | 10 | 0 | 0 | 0 | no | | /blog/file-browser | 0 | 0 | 0 | 20 | 0 | no | -| /blog/file-tree-navigation-on-github-yes-please | 180 | 180 | 0 | 0 | 0 | no | -| /blog/find-affected-code-react-server-components-critical-security-vulnerability-cve-2025-55182 | 300 | 300 | 0 | 0 | 0 | yes | -| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 190 | 170 | 0 | 0 | 0 | yes | +| /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-2 | 20 | 0 | 0 | 0 | 0 | yes | | /blog/fix-and-track-affected-code-react-server-components-cve-2025-55182-part-3 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/from-saas-to-on-premises | 170 | 170 | 0 | 0 | 0 | no | -| /blog/from-slack-ops-to-programmatic-siem-triage | 700 | 700 | 0 | 0 | 0 | yes | | /blog/from-slackops-to-programmatic-siem-triage | 0 | 0 | 0 | 10 | 0 | no | -| /blog/gartner-magic-quadrant-ai-code-assistants | 80 | 80 | 0 | 0 | 0 | no | | /blog/gcp.yml | 0 | 0 | 0 | 20 | 0 | no | -| /blog/getting-started-with-sourcegraph | 230 | 230 | 0 | 0 | 0 | no | -| /blog/git-vs-perforce-salesforce-scalability-and-performance | 20 | 20 | 0 | 0 | 0 | no | | /blog/github-commit-based-skills | 0 | 0 | 0 | 20 | 0 | no | -| /blog/github-universe | 0 | 0 | 0 | 20 | 0 | no | | /blog/github-universe-liveblog-ceo-s-keynote | 0 | 0 | 0 | 10 | 0 | no | | /blog/github-universe-liveblog-open-source-for-national-security | 0 | 0 | 0 | 10 | 0 | no | -| /blog/gitlab-integrates-sourcegraph-code-navigation-and-code-intelligence | 50 | 50 | 0 | 0 | 0 | no | | /blog/go-at-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /blog/go-at-the-darpa-cyber-grand-challenge-will-hawkins | 0 | 0 | 0 | 30 | 0 | no | | /blog/go-code-intelligence-on-sourcegraph-now-in-general-availability-ga-e2ebcddc7f45 | 0 | 0 | 0 | 10 | 0 | no | @@ -796,7 +665,6 @@ | /blog/go/gophercon-2019-dynamically-instrumenting-go-programs | 0 | 0 | 0 | 30 | 0 | no | | /blog/go/gophercon-2019-get-going-with-webassembly | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-handling-go-errors | 0 | 0 | 0 | 10 | 0 | no | -| /blog/go/gophercon-2019-handling-go-errors//t.co | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/gophercon-2019-how-i-write-http-web-services-after-eight-years | 0 | 0 | 0 | 80 | 0 | no | | /blog/go/gophercon-2019-how-uber-go-es | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/grpc-in-production-alan-shreve | 0 | 0 | 0 | 10 | 0 | no | @@ -807,8 +675,6 @@ | /blog/go/self-deploying-kubernetes-applications-kelsey-hightower | 0 | 0 | 0 | 10 | 0 | no | | /blog/go/status/trace.json | 0 | 0 | 0 | 20 | 0 | no | | /blog/go/writing-network-clients-in-go-the-design-and-implementation-of-the-nats-client | 0 | 0 | 0 | 10 | 0 | no | -| /blog/going-beyond-regular-expressions-with-structural-code-search | 170 | 170 | 0 | 0 | 0 | no | -| /blog/google-i-o-talk-building-sourcegraph | 240 | 240 | 0 | 0 | 0 | no | | /blog/google-i-o-talk-building-sourcegraph-a-large-scale-code-search-cross-reference-engine-in-go-1f911b78a82e | 0 | 0 | 0 | 70 | 0 | no | | /blog/google-io-2014-building-sourcegraph-a-large-scale-code-search-engine-in-go | 0 | 0 | 0 | 90 | 0 | no | | /blog/graph-based-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | @@ -816,88 +682,45 @@ | /blog/graphql-at-twitter | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql-under-the-hood | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql/building-graphql-native-microservices | 0 | 0 | 0 | 10 | 0 | no | +| /blog/graphql/building-native-mobile-apps-with-graphql | 0 | 0 | 0 | 20 | 0 | no | | /blog/graphql/graphql-at-twitter | 0 | 0 | 0 | 140 | 0 | no | | /blog/graphql/teaching-graphql | 0 | 0 | 0 | 10 | 0 | no | | /blog/graphql/twitch-our-graphql-transformation | 0 | 0 | 0 | 30 | 0 | no | -| /blog/great-code-search-bad-code-search | 40 | 40 | 0 | 0 | 0 | no | -| /blog/great-code-search-for-aws-codecommit | 50 | 50 | 0 | 0 | 0 | no | -| /blog/grpc-in-production-alan-shreve | 20 | 20 | 0 | 0 | 0 | no | | /blog/heapdump.hprof | 0 | 0 | 0 | 10 | 0 | no | -| /blog/home-offices-of-sourcegraph | 140 | 140 | 0 | 0 | 0 | no | -| /blog/how-cody-provides-remote-repository-context | 600 | 600 | 0 | 0 | 0 | no | | /blog/how-cody-searches-your-codebase | 0 | 0 | 0 | 80 | 0 | no | | /blog/how-cody-uses-agents-to-improve-code-quality | 0 | 0 | 0 | 20 | 0 | no | | /blog/how-nativeScript-onboards-new-open-source-contributors | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-not-to-break-a-search-engine-unglamorous-engineering | 280 | 280 | 0 | 0 | 0 | no | -| /blog/how-our-support-engineers-use-deep-search-to-investigate-customer-issues-faster | 130 | 130 | 0 | 0 | 0 | yes | | /blog/how-sourcegraph-approaches-on-premise-ai | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-sourcegraph-builds-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/how-to-choose-the-ai-coding-assistant-that-works-best-for-your-engineering-team | 260 | 260 | 0 | 0 | 0 | no | -| /blog/how-to-evaluate-sourcegraph-on-your-own-codebase | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-make-your-open-source-project-thrive-with-andrey-petrov | 50 | 50 | 0 | 0 | 0 | no | -| /blog/how-to-measure-technical-debt | 90 | 90 | 0 | 0 | 0 | yes | | /blog/how-to-read-code-effectively-in-2020 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-to-reduce-technical-debt | 290 | 290 | 0 | 0 | 0 | yes | -| /blog/how-to-search-cheat-sheet | 480 | 480 | 0 | 0 | 0 | no | +| /blog/how-to-search-cheat-sheet | 60 | 60 | 0 | 0 | 0 | no | | /blog/how-to-search-with-sourcegraph-using-literal-patterns | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-regular-expression-patterns | 240 | 230 | 0 | 0 | 0 | no | -| /blog/how-to-search-with-sourcegraph-using-structural-patterns | 150 | 150 | 0 | 0 | 0 | no | | /blog/how-to-use-cody-in-large-codebases | 0 | 0 | 0 | 10 | 0 | no | | /blog/how-to-write-ai-context-files | 0 | 0 | 0 | 20 | 0 | no | | /blog/how-to-write-good-coding-agent-instructions | 0 | 0 | 0 | 10 | 0 | no | -| /blog/how-to-write-unit-tests | 150 | 150 | 0 | 0 | 0 | no | -| /blog/how-to-write-unit-tests-for-svelte-web-apps | 80 | 70 | 0 | 0 | 0 | no | | /blog/img | 0 | 0 | 0 | 60 | 0 | no | | /blog/img/payments | 0 | 0 | 0 | 40 | 0 | no | | /blog/improve-coding-agent | 0 | 0 | 0 | 20 | 0 | no | | /blog/improved-search-performance-with-tiered-ranking | 0 | 0 | 0 | 40 | 0 | no | | /blog/improving-code-search | 0 | 0 | 0 | 20 | 0 | no | -| /blog/improving-cody-autocomplete-faster-smarter | 150 | 150 | 0 | 0 | 0 | no | -| /blog/improving-language-support-in-2019 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/increasing-the-completions-rate-limit | 60 | 60 | 0 | 0 | 0 | no | | /blog/index.xml | 0 | 0 | 0 | 10 | 0 | no | -| /blog/indexing-the-oss-universe-update-more-code-hosts | 30 | 30 | 0 | 0 | 0 | no | | /blog/innersource-and-reaping-the-benefits-of-open-source-behind-your-firewall-a-discussion-at-github-universe | 0 | 0 | 0 | 40 | 0 | no | | /blog/install.php | 0 | 0 | 0 | 10 | 0 | no | -| /blog/integrating-cody-with-amazon-bedrock | 180 | 180 | 0 | 0 | 0 | no | -| /blog/integration-testing | 20 | 20 | 0 | 0 | 0 | no | -| /blog/integrations-update | 10 | 10 | 0 | 0 | 0 | no | | /blog/integrations.yaml | 0 | 0 | 0 | 20 | 0 | no | -| /blog/introducing-auto-edit | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/introducing-batch-changes | 130 | 130 | 0 | 0 | 0 | no | | /blog/introducing-code-search | 0 | 0 | 0 | 10 | 0 | no | | /blog/introducing-cody | 0 | 0 | 0 | 40 | 0 | no | | /blog/introducing-cody-for-enterprise | 0 | 0 | 0 | 10 | 0 | no | -| /blog/introducing-deep-search | 2430 | 2430 | 0 | 0 | 0 | yes | -| /blog/introducing-migrator-service | 110 | 110 | 0 | 0 | 0 | no | | /blog/introducing-own | 0 | 0 | 0 | 20 | 0 | no | -| /blog/introducing-scip | 0 | 0 | 0 | 40 | 0 | no | -| /blog/introducing-search-contexts | 160 | 160 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-2-7 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-enterprise-starter | 590 | 590 | 0 | 0 | 0 | yes | +| /blog/introducing-scip | 0 | 0 | 0 | 30 | 0 | no | | /blog/introducing-sourcegraph-own | 0 | 0 | 0 | 60 | 0 | no | -| /blog/introducing-sourcegraph-server-2-3 | 80 | 40 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-4 | 110 | 110 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6 | 70 | 70 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraph-server-2-6-ep4ng | 20 | 20 | 0 | 0 | 0 | no | -| /blog/introducing-sourcegraphs-new-ui | 60 | 60 | 0 | 0 | 0 | no | -| /blog/introducing-steve-yegge | 160 | 160 | 0 | 0 | 0 | no | +| /blog/introducing-sourcegraph-server-2-6 | 10 | 10 | 0 | 0 | 0 | no | | /blog/is-context-engineering-still-relevant | 0 | 0 | 0 | 10 | 0 | no | | /blog/java-php-experimental_language_servers-temporarily-unavailable | 0 | 0 | 0 | 50 | 0 | no | -| /blog/java-scala-kotlin-code-intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /blog/jetbrains-plugin | 10 | 10 | 0 | 0 | 0 | no | | /blog/K3Y | 0 | 0 | 0 | 30 | 0 | no | -| /blog/keeping-it-boring-and-relevant-with-bm25f | 1010 | 950 | 0 | 0 | 0 | yes | +| /blog/keeping-it-boring-and-relevant-with-bm25f | 60 | 0 | 0 | 0 | 0 | yes | | /blog/keeping-it-boring-and-relevant-with-bm25f/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /blog/large-scale-code-changes | 210 | 170 | 0 | 0 | 0 | yes | +| /blog/large-scale-code-changes | 80 | 40 | 0 | 0 | 0 | yes | | /blog/lee-byron-kicks-things-off | 0 | 0 | 0 | 20 | 0 | no | -| /blog/legacy-code-modernization | 1870 | 1860 | 0 | 0 | 0 | yes | | /blog/lessons-from-ai-coding-assistants-context-retrieval-and-evaluation | 0 | 0 | 0 | 10 | 0 | no | -| /blog/lessons-from-building-ai-coding-assistants-context-retrieval-and-evaluation | 1050 | 1040 | 0 | 0 | 0 | yes | -| /blog/lessons-from-building-sherlock-automating-security-code-reviews-with-sourcegraph | 200 | 200 | 0 | 0 | 0 | yes | -| /blog/levels-of-code-ai | 290 | 290 | 0 | 0 | 0 | no | -| /blog/leveraging-cody-to-implement-gps-data-logging | 170 | 170 | 0 | 0 | 0 | no | | /blog/live/gophercon2015 | 0 | 0 | 0 | 20 | 0 | no | | /blog/live/gophercon2015/123574706480 | 0 | 0 | 0 | 110 | 0 | no | | /blog/live/gophercon2015/123586421955 | 0 | 0 | 0 | 10 | 0 | no | @@ -918,139 +741,69 @@ | /blog/live/gopherconindia/111646683387 | 0 | 0 | 0 | 10 | 0 | no | | /blog/live/gopherconindia/111649268512 | 0 | 0 | 0 | 10 | 0 | no | | /blog/live/gopherconindia/111854129512 | 0 | 0 | 0 | 40 | 0 | no | -| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 100 | 0 | no | +| /blog/live/gopherconindia/112025389257 | 0 | 0 | 0 | 90 | 0 | no | | /blog/live/gopherconindia/112656568167 | 0 | 0 | 0 | 20 | 0 | no | | /blog/liveblogging-dotgo-2017 | 0 | 0 | 0 | 10 | 0 | no | | /blog/liveblogging-gophercon-2017 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/llm-mental-models | 70 | 70 | 0 | 0 | 0 | no | | /blog/llm-tech-stack-2026 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/local-chat-with-ollama-and-cody | 130 | 100 | 0 | 0 | 0 | no | | /blog/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | | /blog/m'z6eu2gdk | 0 | 0 | 0 | 20 | 0 | no | | /blog/making-code-navigation-cross-language | 0 | 0 | 0 | 10 | 0 | no | -| /blog/making-cody-free-10x-better | 1200 | 1190 | 0 | 0 | 0 | no | | /blog/making-cody-free-10x-better/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/management/heapdump | 0 | 0 | 0 | 10 | 0 | no | -| /blog/mcp-stories-from-the-field | 670 | 400 | 0 | 0 | 0 | yes | -| /blog/measuring-the-impact-of-ai-coding-tools | 250 | 250 | 0 | 0 | 0 | no | -| /blog/migrating-monaco-codemirror | 870 | 870 | 0 | 0 | 0 | no | | /blog/model-context-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/monolith-microservices-migration | 90 | 70 | 0 | 0 | 0 | no | -| /blog/monorepo-build-tools | 2480 | 2430 | 0 | 0 | 0 | yes | -| /blog/monorepo-vs-polyrepo | 300 | 260 | 0 | 0 | 0 | yes | +| /blog/monorepo-vs-polyrepo | 40 | 0 | 0 | 0 | 0 | yes | | /blog/more-control-over-your-teams-github-code-on-sourcegraph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/more-powerful-code-search-on-sourcegraph | 20 | 20 | 0 | 0 | 0 | no | -| /blog/multi-language-lexer-and-scanner-for-go///z27.es | 0 | 0 | 0 | 10 | 0 | no | | /blog/multi-repo-context-for-cody-enterprise | 0 | 0 | 0 | 10 | 0 | no | -| /blog/multi-repo-search-how-to-search-across-multiple-repositories | 1060 | 830 | 0 | 0 | 0 | yes | -| /blog/multi-version-upgrades | 30 | 30 | 0 | 0 | 0 | no | | /blog/n2rv3di | 0 | 0 | 0 | 20 | 0 | no | -| /blog/navigating-unstructured-data-with-mongodb-and-cody | 100 | 90 | 0 | 0 | 0 | no | | /blog/new-cody-context | 0 | 0 | 0 | 90 | 0 | no | | /blog/new-product-announcement | 0 | 0 | 0 | 30 | 0 | no | -| /blog/new-search-ranking | 30 | 30 | 0 | 0 | 0 | no | -| /blog/nine-circles-of-dependency-hell | 240 | 240 | 0 | 0 | 0 | no | -| /blog/no-more-secrets | 10 | 10 | 0 | 0 | 0 | no | -| /blog/notebooks-ci | 10 | 10 | 0 | 0 | 0 | no | +| /blog/nine-circles-of-dependency-hell | 20 | 20 | 0 | 0 | 0 | no | | /blog/null | 0 | 0 | 0 | 10 | 0 | no | | /blog/open-source-fellowship | 0 | 0 | 0 | 10 | 0 | no | -| /blog/open-sourcing-cody | 370 | 370 | 0 | 0 | 0 | no | | /blog/openai-gpt-image-2-4096-8k | 0 | 0 | 0 | 50 | 0 | no | -| /blog/openai-o1-for-cody | 130 | 130 | 0 | 0 | 0 | no | | /blog/openai-o1-for-cody/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | -| /blog/opencodegraph | 130 | 130 | 0 | 0 | 0 | no | -| /blog/openctx-at-mentions-for-code-ai | 30 | 30 | 0 | 0 | 0 | no | | /blog/openctx-open-standard-for-code-context | 0 | 0 | 0 | 20 | 0 | no | -| /blog/openssl-307-vulnerabilities | 20 | 20 | 0 | 0 | 0 | no | | /blog/optimizing-a-code-intel-commit-graph | 0 | 0 | 0 | 20 | 0 | no | -| /blog/optimizing-a-code-intel-indexer | 20 | 20 | 0 | 0 | 0 | no | -| /blog/optimizing-a-code-intelligence-commit-graph-part-2 | 40 | 40 | 0 | 0 | 0 | no | | /blog/our-journey-to-all-remote/blog | 0 | 0 | 0 | 10 | 0 | no | -| /blog/our-vision-for-code-ownership | 260 | 200 | 0 | 0 | 0 | no | -| /blog/owning-a-codebase | 640 | 630 | 0 | 30 | 0 | yes | -| /blog/part-1-how-sourcegraph-scales-with-the-language-server-protocol | 190 | 190 | 0 | 0 | 0 | no | -| /blog/perforce-vs-git | 230 | 210 | 0 | 0 | 0 | yes | -| /blog/planes-are-not-faster-cars | 770 | 770 | 0 | 0 | 0 | no | -| /blog/please-save-git-io | 50 | 50 | 0 | 0 | 0 | no | +| /blog/owning-a-codebase | 0 | 0 | 0 | 30 | 0 | yes | | /blog/poetically-simple-code-review-e6804724b8e8 | 0 | 0 | 0 | 20 | 0 | no | -| /blog/postgres-text-search-balancing-query-time-and-relevancy | 210 | 200 | 0 | 0 | 0 | no | -| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 430 | 430 | 0 | 0 | 0 | no | -| /blog/powerful-code-search-for-bitbucket-server | 20 | 20 | 0 | 0 | 0 | no | +| /blog/power-users-guide-to-cody-ai-for-visual-studio-code | 30 | 30 | 0 | 0 | 0 | no | | /blog/preparing-for-the-next-wave | 0 | 0 | 0 | 10 | 0 | no | | /blog/press-release-sourcegraph-announces-new-gitlab-native-integration | 0 | 0 | 0 | 10 | 0 | no | | /blog/private.yaml | 0 | 0 | 0 | 40 | 0 | no | -| /blog/production-stability-at-lyft-during-their-monolith-to-microservices-decomposition | 30 | 30 | 0 | 0 | 0 | no | | /blog/programming-interview | 0 | 0 | 0 | 30 | 0 | no | | /blog/q2tbmsv | 0 | 0 | 0 | 10 | 0 | no | -| /blog/rag-to-riches | 190 | 190 | 0 | 0 | 0 | no | -| /blog/ranking-in-a-week | 130 | 130 | 0 | 0 | 0 | no | -| /blog/real-programmers-use-butterflies | 10 | 10 | 0 | 0 | 0 | no | -| /blog/real-weakest-link-in-software-supply-chain-security | 20 | 20 | 0 | 0 | 0 | no | | /blog/release | 0 | 0 | 0 | 40 | 0 | no | -| /blog/release-3-27 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-3-30 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-3-33 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-4-0 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/release-4-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-4-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/release-5-0 | 30 | 30 | 0 | 0 | 0 | no | -| /blog/release-5-1 | 60 | 60 | 0 | 0 | 0 | no | | /blog/release-anxiety | 0 | 0 | 0 | 20 | 0 | no | -| /blog/release-august-2024 | 60 | 60 | 0 | 0 | 0 | no | -| /blog/release-july-2024 | 140 | 130 | 0 | 0 | 0 | no | | /blog/release/3.23 | 0 | 0 | 0 | 30 | 0 | no | | /blog/release/3.29 | 0 | 0 | 0 | 20 | 0 | no | | /blog/release/3.32 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.0 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/4.1 | 0 | 0 | 0 | 20 | 0 | no | +| /blog/release/5.1 | 0 | 0 | 0 | 90 | 0 | no | | /blog/release/April-2024 | 0 | 0 | 0 | 10 | 0 | no | | /blog/release/july-2024 | 0 | 0 | 0 | 90 | 0 | no | | /blog/remote-work-calendar | 0 | 0 | 0 | 40 | 0 | no | -| /blog/revenge-of-the-junior-developer | 5890 | 5700 | 0 | 0 | 0 | yes | -| /blog/robots.txt | 0 | 0 | 0 | 10 | 0 | no | +| /blog/revenge-of-the-junior-developer | 120 | 0 | 0 | 0 | 0 | yes | | /blog/rss | 0 | 0 | 0 | 20 | 0 | no | | /blog/rss.xml/epa/epa.html | 0 | 0 | 0 | 10 | 0 | no | | /blog/rss/feed.xml | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sast-vs-dast | 10 | 10 | 0 | 20 | 0 | yes | +| /blog/sast-vs-dast | 0 | 0 | 0 | 20 | 0 | yes | | /blog/scip | 0 | 0 | 0 | 90 | 0 | no | | /blog/scip-a-better-code-intelligence-protocol | 0 | 0 | 0 | 10 | 0 | no | -| /blog/scip-python | 210 | 210 | 0 | 0 | 0 | no | -| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 1020 | 710 | 0 | 0 | 0 | yes | +| /blog/sdlc-best-practices-and-tools-a-complete-guide-2026 | 20 | 0 | 0 | 0 | 0 | yes | | /blog/sdlc-best-practices-and-tools-a-complete-guide-2026. | 0 | 0 | 0 | 10 | 0 | no | | /blog/search-based-vs-semantic-code-search | 0 | 0 | 0 | 40 | 0 | no | -| /blog/secret-detection-in-code-a-complete-guide-for-2026 | 350 | 130 | 0 | 0 | 0 | yes | -| /blog/security-update-august-2023 | 350 | 340 | 0 | 0 | 0 | no | | /blog/semantic-code-search-what-is-and-how-it-works | 0 | 0 | 0 | 20 | 0 | no | -| /blog/semantic-code-search-what-it-is-and-how-it-works | 2770 | 2360 | 0 | 0 | 0 | yes | -| /blog/series-b-universal-code-search | 100 | 100 | 0 | 0 | 0 | no | -| /blog/series-c-with-sequoia | 230 | 230 | 0 | 0 | 0 | no | +| /blog/series-c-with-sequoia | 60 | 60 | 0 | 0 | 0 | no | | /blog/series-d | 0 | 0 | 0 | 10 | 0 | no | -| /blog/shift-left-wtf-does-it-mean | 290 | 290 | 0 | 0 | 0 | no | -| /blog/single-tenant-cloud | 10 | 10 | 0 | 0 | 0 | no | -| /blog/slack-bot-supply-chain-incident-response | 710 | 710 | 0 | 0 | 0 | yes | -| /blog/slow-to-simd | 1090 | 1090 | 0 | 0 | 0 | no | -| /blog/smart-search-study | 40 | 30 | 0 | 0 | 0 | no | -| /blog/soc-2-compliance-for-developers-a-complete-guide | 1290 | 1070 | 0 | 0 | 0 | yes | | /blog/software-configuration-management | 0 | 0 | 0 | 30 | 0 | no | -| /blog/software-engineer-career-ladder | 140 | 120 | 0 | 0 | 0 | no | -| /blog/software-engineer-career-paths | 20 | 20 | 0 | 0 | 0 | no | | /blog/sosf-1-kickoff | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourceboxes-a-better-way-to-embed-code-snippets | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-2-10 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-12-release-notes | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-8-19-languages-ridiculously-huge-monorepos-lsp-a-graphql-api | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-2-9-announcement-code-search-user-rollout-in-large-organizations | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-0 | 40 | 40 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-11 | 50 | 50 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-12 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-16-2mwac | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-2 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-4 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-5 | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-6 | 20 | 20 | 0 | 0 | 0 | no | -| /blog/sourcegraph-3-9 | 80 | 80 | 0 | 0 | 0 | no | | /blog/sourcegraph-3.0 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.0-beta-is-now-available | 0 | 0 | 0 | 10 | 0 | no | +| /blog/sourcegraph-3.1/blog | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-3.12 | 0 | 0 | 0 | 50 | 0 | no | | /blog/sourcegraph-3.13 | 0 | 0 | 0 | 30 | 0 | no | | /blog/sourcegraph-3.16 | 0 | 0 | 0 | 20 | 0 | no | @@ -1058,36 +811,23 @@ | /blog/sourcegraph-3.9 | 0 | 0 | 0 | 60 | 0 | no | | /blog/sourcegraph-5-2-introducing-code-search-with-cody-context-embeddings | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-5-3 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sourcegraph-5-3-changelog | 240 | 240 | 0 | 0 | 0 | no | | /blog/sourcegraph-5.3-changelog | 0 | 0 | 0 | 60 | 0 | no | | /blog/sourcegraph-7 | 0 | 0 | 0 | 40 | 0 | no | | /blog/sourcegraph-7-0 | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sourcegraph-accepting-zoekt-maintainership | 130 | 130 | 0 | 0 | 0 | no | | /blog/sourcegraph-at-scale | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-backstage-bootstrapping-catalog-adoption-batch-changes | 190 | 190 | 0 | 0 | 0 | no | -| /blog/sourcegraph-backstage-search-api-create-entity-provider-for-backstage | 60 | 60 | 0 | 0 | 0 | no | -| /blog/sourcegraph-browser-extensions-are-now-open-source | 10 | 10 | 0 | 0 | 0 | no | -| /blog/sourcegraph-cloud-for-teams-now-in-private-beta | 70 | 70 | 0 | 0 | 0 | no | -| /blog/sourcegraph-code-intelligence-and-the-language-server-protocol | 100 | 100 | 0 | 0 | 0 | no | | /blog/sourcegraph-code-intelligence-and-the-language-server-protocol-f2479fdd92ef. | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-cody | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-databricks-partnership | 0 | 0 | 0 | 20 | 0 | no | -| /blog/sourcegraph-for-non-devs | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-founders-featured-on-forbes-30-under-30-list | 90 | 90 | 0 | 0 | 0 | no | -| /blog/sourcegraph-future-coding-podcast-episode-32 | 10 | 10 | 0 | 0 | 0 | no | | /blog/sourcegraph-going-open-source | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-is-iso-27001-certified | 610 | 520 | 0 | 0 | 0 | yes | -| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 30 | 0 | no | +| /blog/sourcegraph-is-now-open-source | 0 | 0 | 0 | 20 | 0 | no | | /blog/sourcegraph-license-change-announcement | 0 | 0 | 0 | 10 | 0 | no | | /blog/sourcegraph-mcp | 0 | 0 | 0 | 10 | 0 | no | -| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 910 | 850 | 0 | 0 | 0 | yes | +| /blog/sourcegraph-mcp-and-a-cheaper-model-beat-a-mythos-class-model-alone | 10 | 0 | 0 | 0 | 0 | yes | | /blog/sourcegraph-secures-125m-series-d-led-by-andreessen-horowitz | 0 | 0 | 0 | 30 | 0 | no | -| /blog/sourcegraph-the-best-way-to-read-code-just-got-better | 30 | 30 | 0 | 0 | 0 | no | | /blog/sourcegraph-the-best-way-to-read-code-just-got-better-2094def0e553 | 0 | 0 | 0 | 100 | 0 | no | | /blog/staff/mammals-coombe-bissett-down-fox | 0 | 0 | 0 | 10 | 0 | no | | /blog/stage.yaml | 0 | 0 | 0 | 20 | 0 | no | -| /blog/star-your-favorite-deep-search-threads | 40 | 40 | 0 | 0 | 0 | yes | -| /blog/static-code-analysis-tools | 1020 | 1020 | 0 | 0 | 0 | yes | +| /blog/static-code-analysis-tools | 30 | 30 | 0 | 0 | 0 | yes | | /blog/steve-yegge | 0 | 0 | 0 | 10 | 0 | no | | /blog/steve-yegge-joins-sourcegraph | 0 | 0 | 0 | 40 | 0 | no | | /blog/strange-loop/strange-loop-2019-everything-you-wanted-to-know-about-distributed-tracing | 0 | 0 | 0 | 10 | 0 | no | @@ -1095,264 +835,103 @@ | /blog/strange-loop/strange-loop-2019-parser-parser-combinators-for-program-transformation | 0 | 0 | 0 | 10 | 0 | no | | /blog/strange-loop/strange-loop-2019-recreating-forgotten-programming-languages-for-art | 0 | 0 | 0 | 10 | 0 | no | | /blog/switching-from-angularjs-to-server-side-html | 0 | 0 | 0 | 130 | 0 | no | -| /blog/syndicate | 0 | 0 | 0 | 20 | 0 | no | -| /blog/tackling-the-long-tail-of-tiny-repos-with-shard-merging | 100 | 100 | 0 | 0 | 0 | no | -| /blog/technical-debt-management | 550 | 550 | 0 | 0 | 0 | yes | | /blog/the-agentic-coding-loop | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-architecture-of-amp | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments | 80 | 80 | 0 | 0 | 0 | no | | /blog/the-august-2018-docker-hub-outage-and-the-impact-on-kubernetes-deployments//@t.co | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-brute-squad | 1270 | 1260 | 0 | 0 | 0 | yes | | /blog/the-death-of-the-ide-the-rise-of-the-agent-native-dev-tool | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-death-of-the-junior-develop | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-death-of-the-stubborn-developer | 430 | 420 | 0 | 0 | 0 | no | | /blog/the-end-of-programming-as-we-know-it | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-evolution-of-code-intelligence-beyond-search | 340 | 340 | 0 | 0 | 0 | yes | | /blog/the-evolution-of-code-intelligence-beyond-search.md | 0 | 0 | 0 | 40 | 0 | no | | /blog/the-future-of-code-intelligence | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-future-of-code-navigation | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-future-of-code-search | 280 | 270 | 0 | 0 | 0 | no | | /blog/the-future-of-go | 0 | 0 | 0 | 40 | 0 | no | -| /blog/the-future-of-scip | 1610 | 1570 | 0 | 0 | 0 | yes | -| /blog/the-hidden-cost-of-code-that-nobody-touches | 830 | 750 | 0 | 0 | 0 | yes | | /blog/the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b | 0 | 0 | 0 | 40 | 0 | no | -| /blog/the-intersection-of-ai-in-technical-support | 210 | 210 | 0 | 0 | 0 | no | | /blog/the-landscape-of-ai-coding-tools | 0 | 0 | 0 | 30 | 0 | no | -| /blog/the-lifecycle-of-a-code-ai-completion | 620 | 620 | 0 | 0 | 0 | no | | /blog/the-lifecycle-of-a-code-ai-query | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-lifecycle-of-a-cody-request | 0 | 0 | 0 | 40 | 0 | no | | /blog/the-new-code | 0 | 0 | 0 | 20 | 0 | no | | /blog/the-new-era-of-go-package-management | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-pain-that-minimal-version-selection-solves | 60 | 60 | 0 | 0 | 0 | no | -| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 720 | 450 | 0 | 0 | 0 | yes | +| /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively | 40 | 40 | 0 | 0 | 0 | yes | | /blog/the-right-tool-at-the-right-time-using-sourcegraph-search-effectively/g'p9ro0ywy | 0 | 0 | 0 | 10 | 0 | no | -| /blog/the-self-driving-ide-is-coming | 70 | 70 | 0 | 0 | 0 | no | -| /blog/the-sourcegraph-developer-release-a-better-way-to-discover-and-understand-code | 40 | 40 | 0 | 0 | 0 | no | | /blog/the-sourcegraph-mcp-server | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-sourcegraph-test-12-more-steps-to-better-code | 0 | 0 | 0 | 10 | 0 | no | | /blog/the-sourcegraph-test-v0-9-12-more-steps-to-better-code-e5c281850c | 0 | 0 | 0 | 30 | 0 | no | -| /blog/things-to-know-before-building-a-code-search-tool | 10 | 10 | 0 | 0 | 0 | no | -| /blog/thorn-sunsets-legacy-applications-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /blog/three-years-at-sourcegraph | 180 | 150 | 0 | 0 | 0 | no | | /blog/throwingawesomemeetups | 0 | 0 | 0 | 10 | 0 | no | | /blog/thunder-talks | 0 | 0 | 0 | 20 | 0 | no | | /blog/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c | 0 | 0 | 0 | 80 | 0 | no | -| /blog/tools-for-companies-that-dont-need-sourcegraph | 370 | 370 | 0 | 0 | 0 | yes | | /blog/top-150-most-used-golang-functions | 0 | 0 | 0 | 10 | 0 | no | -| /blog/top-5-tips-for-using-cody-with-react | 60 | 60 | 0 | 0 | 0 | no | -| /blog/toward-a-url-for-every-function-in-the-world | 120 | 100 | 0 | 0 | 0 | no | -| /blog/towards-infinite-context-for-code | 780 | 780 | 0 | 0 | 0 | no | -| /blog/types-of-technical-debt | 250 | 240 | 0 | 0 | 0 | yes | | /blog/understanding-channels-kavya-joshi | 0 | 0 | 0 | 20 | 0 | no | -| /blog/universal-code-search-github | 410 | 410 | 0 | 0 | 0 | no | -| /blog/upgraded-claude-3-5-sonnet-available-in-cody | 120 | 120 | 0 | 0 | 0 | no | | /blog/upgraded-claude-3.5-sonnet-available-in-cody | 0 | 0 | 0 | 10 | 0 | no | -| /blog/using-batch-changes-via-graphql-api | 110 | 110 | 0 | 0 | 0 | no | -| /blog/using-cody-and-mermaid-to-generate-flowcharts | 210 | 210 | 0 | 0 | 0 | no | -| /blog/virtual-code-ai-summit-recap | 20 | 10 | 0 | 0 | 0 | no | | /blog/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | -| /blog/vulnerability-remediation-at-codebase-scale | 450 | 450 | 0 | 0 | 0 | yes | | /blog/ways-to-use-sourcegraph-extension-for-vs-code | 0 | 0 | 0 | 10 | 0 | no | -| /blog/weekly-updates-are-coming-to-sourcegraph-cloud | 120 | 110 | 0 | 0 | 0 | yes | | /blog/weekly-updates-are-coming-to-sourcegraph-cloud/index.md | 0 | 0 | 0 | 60 | 0 | no | | /blog/welcome-james | 0 | 0 | 0 | 10 | 0 | no | | /blog/what-is-innersource | 0 | 0 | 0 | 30 | 0 | no | -| /blog/what-is-innersource-a-complete-guide-for-2026 | 800 | 490 | 0 | 0 | 0 | yes | -| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 1070 | 760 | 0 | 0 | 0 | yes | +| /blog/what-is-innersource-a-complete-guide-for-2026 | 10 | 10 | 0 | 0 | 0 | yes | +| /blog/what-it-actually-takes-to-run-code-intelligence-in-house | 70 | 70 | 0 | 0 | 0 | yes | | /blog/what-we-can-learn-from-the-ibm-system-360-the-first-modular-general-purpose-computer | 0 | 0 | 0 | 10 | 0 | no | | /blog/why-code-search-at-scale-is-essential-when-you-grow-beyond-one-repository/index.md | 0 | 0 | 0 | 20 | 0 | no | | /blog/why-coding-agents-fail-in-large-codebases | 0 | 0 | 0 | 40 | 0 | no | -| /blog/why-coding-agents-fail-large-codebases | 2140 | 1830 | 0 | 0 | 0 | yes | -| /blog/why-developers-misread-huge-monolithic-codebases-without-code-intelligence | 340 | 340 | 0 | 0 | 0 | yes | -| /blog/why-fig-autocomplete-is-awesome | 90 | 90 | 0 | 0 | 0 | no | -| /blog/why-index-the-oss-universe | 120 | 120 | 0 | 0 | 0 | no | -| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 2520 | 2410 | 0 | 0 | 0 | yes | -| /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people | 110 | 110 | 0 | 0 | 0 | no | +| /blog/why-coding-agents-fail-large-codebases | 30 | 0 | 0 | 0 | 0 | yes | +| /blog/why-sourcegraph-and-amp-are-becoming-independent-companies | 20 | 20 | 0 | 0 | 0 | yes | | /blog/why-vacation-at-tech-companies-should-be-mandatory-better-code-happier-people-d1b549681291 | 0 | 0 | 0 | 20 | 0 | no | | /blog/why-we-built-cody | 0 | 0 | 0 | 10 | 0 | no | -| /blog/why-we-open-sourced-our-uptime-monitoring-system | 10 | 10 | 0 | 0 | 0 | no | | /blog/why-we-switched-to-zoekt-for-search | 0 | 0 | 0 | 20 | 0 | no | -| /blog/why-your-migration-tools-are-failing-your-engineers | 600 | 550 | 0 | 0 | 0 | yes | -| /blog/workspaces-of-sourcegraph | 200 | 200 | 0 | 0 | 0 | no | +| /blog/why-your-migration-tools-are-failing-your-engineers | 20 | 0 | 0 | 0 | 0 | yes | | /blog/write-for-us | 0 | 0 | 0 | 10 | 0 | no | -| /blog/writing-an-lsif-indexer | 40 | 40 | 0 | 0 | 0 | no | | /blog/xmlrpc.php | 0 | 0 | 0 | 110 | 0 | no | -| /blog/zig-programming-language-revisiting-design-approach | 230 | 230 | 0 | 0 | 0 | no | | /blog/zoekt | 0 | 0 | 0 | 30 | 0 | no | -| /blog/zoekt-creating-internal-tools-at-google | 410 | 400 | 0 | 0 | 0 | no | | /blog/zoekt-memory | 0 | 0 | 0 | 10 | 0 | no | -| /blog/zoekt-memory-optimizations-for-sourcegraph-cloud | 290 | 250 | 0 | 0 | 0 | no | | /blog/zoekt-sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /blog/zzqx-nonexistent-probe-9137 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/.api/changelog.v1.ChangelogService/ListReleasePosts | 0 | 0 | 0 | 20 | 1880 | no | | /changelog/1.sql | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/2026-03-02 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-09 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-03-11 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-03-16 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-03-24 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-04-06 | 130 | 130 | 0 | 0 | 0 | no | | /changelog/2026-04-06.md | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/2026-04-13 | 30 | 30 | 0 | 0 | 0 | no | | /changelog/2026-04-15 | 0 | 0 | 0 | 20 | 0 | no | | /changelog/2026-04-15.md | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/2026-04-20 | 50 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-04-27 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-05-01 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-05-05 | 20 | 20 | 0 | 0 | 0 | no | | /changelog/2026-05-05.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/2026-05-11 | 100 | 100 | 0 | 0 | 0 | no | | /changelog/2026-05-14 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-05-18 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/2026-05-25 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/2026-06-01 | 270 | 240 | 0 | 0 | 0 | no | -| /changelog/2026-06-08 | 150 | 150 | 0 | 0 | 0 | no | -| /changelog/2026-06-10 | 220 | 220 | 0 | 0 | 0 | no | -| /changelog/2026-06-15 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/2026-06-22 | 330 | 330 | 0 | 0 | 0 | no | | /changelog/2026-06-22.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-06-29 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/2026-07-06 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/2026-07-13 | 90 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-07-15 | 10 | 10 | 0 | 0 | 0 | no | | /changelog/2026-07-15.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-07-20 | 330 | 330 | 0 | 0 | 0 | no | | /changelog/2026-07-20.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-07-27 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/2026-08-03 | 60 | 20 | 0 | 0 | 0 | no | -| /changelog/2026-08-10 | 70 | 60 | 0 | 0 | 0 | no | -| /changelog/2026-08-17 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/2026-08-24 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/2026-08-31 | 20 | 20 | 0 | 0 | 0 | no | +| /changelog/2026-08-10 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/2026-08-24 | 30 | 30 | 0 | 0 | 0 | no | | /changelog/2026-09-01 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/2026-09-07 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/2026-09-07 | 60 | 60 | 0 | 0 | 0 | no | | /changelog/7-0-removals-deprecations/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/abc-ux-improvements-6-jul-2026 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/accept-reject-block-diffs | 130 | 130 | 0 | 0 | 0 | yes | | /changelog/actuator-base-path//actuator/env | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/admin-pre-instructions | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/admin-rbac | 260 | 260 | 0 | 0 | 0 | yes | -| /changelog/agentic-batch-changes-beta | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/agentic-batch-changes-beta-ux-improvements | 190 | 190 | 0 | 0 | 0 | yes | +| /changelog/agentic-batch-changes-beta | 10 | 10 | 0 | 0 | 0 | yes | | /changelog/agentic-batch-changes-beta-ux-improvements.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/agentic-chat | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/agentic-context-gathering-available-in-cody | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/analytics-auto-edit-batch-changes | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/analytics-service-access-tokens | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/at-mention-directories | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/at-mentions-saved-prompts | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-beta | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-experimental-jetbrains | 290 | 280 | 0 | 0 | 0 | yes | -| /changelog/auto-edit-jetbrains-visual-studio | 290 | 290 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-improvements-deepseek-v2 | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/autocomplete-visual-studio | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-access-tokens-experimental | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-bitbucket-oauth | 480 | 180 | 0 | 0 | 0 | yes | -| /changelog/batch-changes-github-oauth | 150 | 150 | 0 | 0 | 0 | yes | | /changelog/batch-changes-github-oauth/index.md | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/batch-changes-gitlab-oauth | 70 | 50 | 0 | 0 | 0 | yes | -| /changelog/batch-spec-library-customizable | 110 | 90 | 0 | 0 | 0 | yes | | /changelog/batch-spec-library-customizable.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/batch-spec-templating | 120 | 110 | 0 | 0 | 0 | yes | -| /changelog/bulk-rebase-changesets | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/bulk-sync-changesets | 540 | 520 | 0 | 0 | 0 | yes | -| /changelog/categorize-prompts-with-tags | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/changelog-search | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/changesets-without-merge-requests | 70 | 70 | 0 | 0 | 0 | yes | -| /changelog/chat-full-width-vscode | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/chat-full-width-vscode/logon/LogonPoint/index.html | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/chat-search-single-ui | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/claude-3-7-available | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp | 160 | 160 | 0 | 0 | 0 | yes | | /changelog/claude-3-7-sonnet-extended-thinking-available-for-gcp/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/claude-4-models-available | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/claude-4-models-available-in-cody | 370 | 330 | 0 | 0 | 0 | yes | -| /changelog/code-finder-beta | 900 | 870 | 0 | 0 | 0 | yes | | /changelog/code-finder-betasssieddgdpathxsx | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/code-finder-ga | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/code-monitors-ga | 90 | 90 | 0 | 0 | 0 | yes | +| /changelog/code-finder-ga | 20 | 20 | 0 | 0 | 0 | yes | | /changelog/cody | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/cody-eclipse-experimental | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/cody-plan-changes | 200 | 190 | 0 | 0 | 0 | yes | -| /changelog/cody-promoted-prompts | 140 | 140 | 0 | 0 | 0 | yes | | /changelog/cody-promoted-prompts/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/cody-web-ga | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/commit-signing-ssh-keys-experimental | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/commit-signing-with-ssh-keys-in-batch-changes-experimental | 0 | 0 | 0 | 40 | 0 | no | -| /changelog/compare-page-ga | 300 | 300 | 0 | 20 | 30 | yes | +| /changelog/compare-page-ga | 0 | 0 | 0 | 20 | 30 | yes | | /changelog/configs/devsourcegraph.ini | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/deep-search-agent-customization | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/deep-search-auto-compaction | 560 | 260 | 0 | 0 | 0 | yes | -| /changelog/deep-search-code-navigation | 290 | 150 | 0 | 0 | 0 | yes | | /changelog/deep-search-code-navigation/s'g2l5hxmm | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/deep-search-context-filters | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/deep-search-entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/deep-search-evaluator-files | 340 | 340 | 0 | 0 | 0 | yes | -| /changelog/deep-search-finder | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/deep-search-forking | 500 | 200 | 0 | 0 | 0 | yes | -| /changelog/deep-search-fuzzy-finder | 380 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-image-support | 90 | 90 | 0 | 0 | 0 | yes | | /changelog/deep-search-image-support.md | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/deep-search-optimizations-ux-improvements-and-markdown-export | 90 | 90 | 0 | 0 | 0 | yes | | /changelog/deep-search-optimizations-ux-improvements-and-markdown-export.md | 0 | 0 | 0 | 60 | 0 | no | -| /changelog/deep-search-read | 350 | 100 | 0 | 0 | 0 | yes | -| /changelog/deep-search-search-contexts | 370 | 170 | 0 | 0 | 0 | yes | -| /changelog/deep-search-shared-with-me | 20 | 20 | 0 | 0 | 0 | yes | -| /changelog/deep-search-sidebar | 270 | 150 | 0 | 0 | 0 | yes | -| /changelog/deep-search-slack-integration | 140 | 120 | 0 | 0 | 0 | yes | -| /changelog/deep-search-streaming | 130 | 110 | 0 | 0 | 0 | yes | -| /changelog/deep-search-subagents | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/deep-search-topic-analytics | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/deep-search-version-release-awareness | 300 | 60 | 0 | 0 | 0 | yes | -| /changelog/deepsearch-pacing-charts | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/default-enterprise-models | 250 | 250 | 0 | 0 | 0 | yes | -| /changelog/default-search-context | 150 | 130 | 0 | 0 | 0 | yes | -| /changelog/default-search-experience | 80 | 80 | 0 | 0 | 0 | yes | | /changelog/default-search-experience/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | | /changelog/drop-ghes-below-3-4 | 0 | 0 | 0 | 140 | 0 | yes | -| /changelog/enhanced-code-navigation-performance-and-accuracy | 250 | 230 | 0 | 0 | 0 | yes | -| /changelog/enterprise-model-selection | 60 | 60 | 0 | 0 | 0 | yes | -| /changelog/enterprise-starter | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/execute-terminal-commands-with-smart-apply | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/expanded-context-windows | 90 | 80 | 0 | 0 | 0 | yes | -| /changelog/expanded-support-self-hosted-llms | 130 | 120 | 0 | 0 | 0 | yes | -| /changelog/faster-accurate-autocomplete | 320 | 320 | 0 | 0 | 0 | yes | -| /changelog/faster-smart-apply | 50 | 50 | 0 | 0 | 0 | yes | | /changelog/faster-smart-apply/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/file-and-directory-filtering-on-compare-page | 110 | 90 | 0 | 0 | 0 | yes | -| /changelog/gemini-2-0-flash-experimental-available-for-cody-chat | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/geographic-access-restrictions | 160 | 160 | 0 | 0 | 0 | yes | -| /changelog/gpt-5-is-now-available-in-cody-enterprise | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/group-metrics-inventory-stats | 80 | 80 | 0 | 0 | 0 | yes | -| /changelog/guided-diff-tour-beta | 340 | 340 | 0 | 40 | 0 | yes | -| /changelog/haiku-4-5-is-now-available-in-cody-enterprise | 140 | 130 | 0 | 0 | 0 | yes | -| /changelog/hardened-reclones | 390 | 110 | 0 | 0 | 0 | yes | +| /changelog/guided-diff-tour-beta | 0 | 0 | 0 | 40 | 0 | yes | | /changelog/httptrace | 0 | 0 | 0 | 20 | 0 | no | | /changelog/igaming-tools-api | 0 | 0 | 0 | 10 | 0 | no | | /changelog/igaming-tools-mcp | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/improved-context-fetching | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/improved-release-updates | 280 | 280 | 0 | 0 | 0 | yes | | /changelog/improved-release-updates/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/inner-loop-agent-outputs | 230 | 230 | 0 | 0 | 0 | yes | -| /changelog/introducing-auto-edit | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 230 | 220 | 0 | 0 | 20 | yes | +| /changelog/introducing-pricing-plans-and-major-updates-for-deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /changelog/introducing-pricing-plans-and-major-updates-for-deep-search.md | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/jetbrains-ask-cody-to-fix-on-windows | 190 | 190 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-side-panel | 180 | 170 | 0 | 0 | 0 | yes | -| /changelog/jetbrains-smart-apply | 220 | 220 | 0 | 0 | 0 | yes | -| /changelog/latest | 850 | 490 | 0 | 0 | 0 | yes | | /changelog/log/devsourcegraph-20260901.txt | 0 | 0 | 0 | 20 | 0 | no | | /changelog/log/sourcegraph-admin-20260901.log | 0 | 0 | 0 | 30 | 0 | no | | /changelog/log/sourcegraph-api-2026-09-01.txt | 0 | 0 | 0 | 30 | 0 | no | | /changelog/logs/api_sourcegraph.txt | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/long-chats-improvements | 110 | 110 | 0 | 0 | 0 | yes | -| /changelog/mcp-all | 470 | 180 | 0 | 0 | 0 | yes | -| /changelog/mcp-context-gathering | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/mcp-curated-default-tools | 360 | 130 | 0 | 0 | 0 | yes | -| /changelog/mcp-dcr | 430 | 430 | 0 | 0 | 0 | yes | -| /changelog/mcp-deep-links | 520 | 270 | 0 | 0 | 0 | yes | -| /changelog/mcp-ga | 1690 | 1690 | 0 | 0 | 0 | yes | +| /changelog/mcp-dcr | 40 | 40 | 0 | 0 | 0 | yes | | /changelog/mcp-omakase.md | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../.mysql_history | 0 | 0 | 0 | 20 | 0 | no | | /changelog/metrics../.psql_history | 0 | 0 | 0 | 10 | 0 | no | @@ -1365,141 +944,37 @@ | /changelog/metrics../logger/sourcegraph-prod_2026_09_01.log | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../sourcegraphdev.sh | 0 | 0 | 0 | 10 | 0 | no | | /changelog/metrics../sql/o.sql | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/model-updates | 270 | 270 | 0 | 0 | 30 | yes | +| /changelog/model-updates | 0 | 0 | 0 | 0 | 30 | yes | | /changelog/model-updates/vpn/index.html | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/multiple-job-pod-removal-kubernetes-executors | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/multiple-job-pod-removal-kubernetes-executors/logon/LogonPoint/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/new-ai-models-available-for-cody-enterprise | 390 | 390 | 0 | 0 | 0 | yes | -| /changelog/new-changelog | 130 | 130 | 0 | 0 | 0 | yes | -| /changelog/new-claude-3-5-models | 600 | 600 | 0 | 0 | 0 | yes | -| /changelog/new-models-available | 120 | 120 | 0 | 0 | 0 | yes | -| /changelog/new-prompts-ui | 480 | 460 | 0 | 0 | 0 | yes | -| /changelog/new-web-app-rollout | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/new-web-uikit | 280 | 270 | 0 | 0 | 0 | yes | -| /changelog/o1-waitlist | 100 | 100 | 0 | 0 | 0 | yes | -| /changelog/o3-mini-high-enterprise | 240 | 240 | 0 | 0 | 0 | yes | -| /changelog/oauth-2-0-support | 310 | 310 | 0 | 0 | 0 | yes | -| /changelog/perforce-ip-permissions | 340 | 320 | 0 | 0 | 0 | yes | -| /changelog/personalized-search-ranking | 170 | 170 | 0 | 0 | 0 | yes | -| /changelog/postgres-16-update | 370 | 370 | 0 | 0 | 0 | yes | -| /changelog/prompt-library | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/prompt-library-organization | 110 | 110 | 0 | 0 | 0 | yes | | /changelog/prompt-library/logon/LogonPoint_workspace/tmindex.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/prompt-library/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/prompt-template-ui-changes | 180 | 180 | 0 | 0 | 0 | yes | | /changelog/q4lkskj | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/query-assist | 760 | 450 | 0 | 0 | 0 | yes | -| /changelog/reexecute-changesets | 210 | 210 | 0 | 0 | 0 | yes | -| /changelog/refreshed-administration-dashboard | 160 | 150 | 0 | 0 | 0 | yes | | /changelog/refreshed-administration-dashboard.md | 0 | 0 | 0 | 20 | 0 | no | | /changelog/releases/.sourcegraph/review-agent.json | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/releases/5.10 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.10.0 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.10.1164 | 90 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.0 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.3601 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/5.11.4013 | 40 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.7.2474 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/5.8 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/5.8.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.1590 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.347 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/5.9.45 | 90 | 90 | 0 | 0 | 0 | no | -| /changelog/releases/6.0 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.0 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.12741 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.0.2687 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.1 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.0 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.1.5633 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.10 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.0 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.1446 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.2752 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.5428 | 120 | 120 | 0 | 0 | 0 | no | -| /changelog/releases/6.11.5639 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1271 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1287 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.1792 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.2541 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.3032 | 130 | 130 | 0 | 0 | 0 | no | -| /changelog/releases/6.12.5040 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.2553 | 160 | 160 | 0 | 0 | 0 | no | -| /changelog/releases/6.2.3841 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.3 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.3.2692 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4 | 50 | 50 | 0 | 0 | 0 | no | -| /changelog/releases/6.4.3889 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.5 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.0 | 10 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.1211 | 40 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/6.5.2654 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/6.6.0 | 60 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.7 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.229 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.2518 | 30 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.7.375 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/6.8 | 210 | 190 | 0 | 0 | 0 | no | -| /changelog/releases/6.8.0 | 40 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/6.9.2509 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.0 | 750 | 680 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.0 | 40 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.0.2852 | 10 | 10 | 0 | 0 | 0 | no | -| /changelog/releases/7.1 | 110 | 110 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.0 | 80 | 80 | 0 | 0 | 0 | no | -| /changelog/releases/7.1.2426 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.2 | 80 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.2.0 | 100 | 100 | 0 | 0 | 0 | no | -| /changelog/releases/7.2.1943 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.3 | 80 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.0 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.3.2527 | 30 | 30 | 0 | 0 | 0 | no | -| /changelog/releases/7.4 | 210 | 210 | 0 | 0 | 0 | no | -| /changelog/releases/7.4.0 | 90 | 90 | 0 | 0 | 0 | no | +| /changelog/releases/6.12.3032 | 60 | 60 | 0 | 0 | 0 | no | +| /changelog/releases/7.0 | 40 | 40 | 0 | 0 | 0 | no | +| /changelog/releases/7.4.0 | 30 | 30 | 0 | 0 | 0 | no | | /changelog/releases/7.4.0/xscannyzejrbj | 0 | 0 | 0 | 120 | 0 | no | -| /changelog/releases/7.4.2513 | 20 | 20 | 0 | 0 | 0 | no | -| /changelog/releases/7.5 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.0 | 70 | 40 | 0 | 0 | 0 | no | -| /changelog/releases/7.5.4453 | 60 | 60 | 0 | 0 | 0 | no | -| /changelog/releases/7.6 | 780 | 780 | 0 | 0 | 0 | no | -| /changelog/releases/7.6.0 | 70 | 70 | 0 | 0 | 0 | no | -| /changelog/releases/7.7 | 20 | 0 | 0 | 0 | 0 | no | -| /changelog/releases/7.7.0 | 30 | 30 | 0 | 0 | 0 | no | +| /changelog/releases/7.5.0 | 10 | 10 | 0 | 0 | 0 | no | +| /changelog/releases/7.7.0 | 10 | 10 | 0 | 0 | 0 | no | | /changelog/releases/wp-config.dist | 0 | 0 | 0 | 20 | 0 | no | | /changelog/releases/wp-config.old | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/rename-deep-search-conversations | 620 | 380 | 0 | 0 | 0 | yes | | /changelog/rename-deep-search-conversations/xscandqtasntt | 0 | 0 | 0 | 20 | 0 | no | | /changelog/root/.s3cfg | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/search-jobs-external-api | 80 | 80 | 0 | 0 | 0 | yes | | /changelog/search-jobs-external-api/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/search-jobs-ga | 30 | 30 | 0 | 0 | 0 | yes | | /changelog/self-hosted | 0 | 0 | 0 | 60 | 0 | no | | /changelog/self-hosted/deployment.yaml | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/self-hosted/docker-compose | 860 | 860 | 0 | 0 | 0 | yes | | /changelog/self-hosted/docker-compose/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/self-hosted/kubernetes | 530 | 520 | 0 | 0 | 0 | yes | | /changelog/self-hosted/lc/libs/livecycle/core/content/login.html | 0 | 0 | 0 | 10 | 0 | no | | /changelog/self-hosted/master.zip | 0 | 0 | 0 | 30 | 0 | no | | /changelog/self-hosted/y | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/service-accounts | 160 | 160 | 0 | 0 | 0 | yes | | /changelog/slack-multi-workspace/index.md | 0 | 0 | 0 | 30 | 0 | no | -| /changelog/slack-rich-link-previews | 440 | 130 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-beta | 660 | 520 | 0 | 0 | 0 | yes | -| /changelog/smart-hover-summaries-ga | 310 | 310 | 0 | 0 | 0 | yes | | /changelog/smart-hover-summaries-ga.md | 0 | 0 | 0 | 30 | 0 | no | | /changelog/sourcegraph | 0 | 0 | 0 | 10 | 0 | no | | /changelog/sourcegraph-2.log.1 | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/sourcegraph-ai-agents | 180 | 180 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-analytics-overview | 220 | 200 | 0 | 0 | 0 | yes | -| /changelog/sourcegraph-api | 550 | 540 | 0 | 0 | 0 | yes | +| /changelog/sourcegraph-api | 40 | 40 | 0 | 0 | 0 | yes | | /changelog/sourcegraph-apisssieddgdpathxsx | 0 | 0 | 0 | 50 | 0 | no | -| /changelog/sourcegraph-mcp-server | 200 | 200 | 0 | 0 | 0 | yes | -| /changelog/src-cli-oauth-login | 510 | 190 | 0 | 0 | 0 | yes | | /changelog/static../.irbrc | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../.ssh/id_rsa | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../id_rsa | 0 | 0 | 0 | 10 | 0 | no | @@ -1508,1546 +983,109 @@ | /changelog/static../old | 0 | 0 | 0 | 20 | 0 | no | | /changelog/static../sourcegraph-admin.txt | 0 | 0 | 0 | 10 | 0 | no | | /changelog/static../sourcegraphweb.csv | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/sunsetting-cody-ignore | 150 | 150 | 0 | 0 | 0 | yes | -| /changelog/syntax-highlighting-for-sql-now-supported | 280 | 280 | 0 | 0 | 0 | yes | -| /changelog/title-based-search | 520 | 520 | 0 | 0 | 0 | yes | -| /changelog/token-efficient-tools | 300 | 300 | 0 | 0 | 0 | yes | -| /changelog/track-code-inventory | 480 | 470 | 0 | 0 | 0 | yes | -| /changelog/updated-prompts-interface | 140 | 140 | 0 | 0 | 0 | yes | -| /changelog/user-credits-cohort-analytics | 840 | 840 | 0 | 0 | 0 | yes | -| /changelog/v1/users/login | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/verify-deep-search-answers-with-inline-citations | 40 | 40 | 0 | 0 | 0 | yes | -| /changelog/view-git-notes | 340 | 80 | 0 | 0 | 0 | yes | -| /changelog/visual-studio-experimental | 220 | 200 | 0 | 0 | 0 | yes | | /changelog/vpn/index.html | 0 | 0 | 0 | 20 | 0 | no | -| /changelog/vscode-smart-apply | 160 | 160 | 0 | 0 | 0 | yes | | /changelog/w't3jfcq2l | 0 | 0 | 0 | 10 | 0 | no | -| /changelog/weekly-sourcegraph-cloud-updates | 410 | 80 | 0 | 0 | 0 | yes | | /changelog/wp-admin/admin-post.php | 0 | 0 | 0 | 10 | 0 | no | | /changelog/wp-config.old | 0 | 0 | 0 | 20 | 0 | no | | /changelog/wp-config.zip | 0 | 0 | 0 | 10 | 0 | no | | /changelog/xscanlsimdfry/server | 0 | 0 | 0 | 80 | 0 | no | -| /docs/__data.json | 990 | 0 | 0 | 0 | 0 | no | -| /docs/_nextsssieddgdpathxsx | 10 | 0 | 0 | 0 | 0 | no | -| /docs/_profiler/open | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.aider.conf.yml | 210 | 210 | 0 | 0 | 0 | no | -| /docs/.api/search/stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.aws/config | 260 | 260 | 0 | 0 | 0 | no | -| /docs/.bash_profile | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.bashrc | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.config/anthropic/credentials/default.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.cursor/mcp.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.docker/config.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/.env.backup | 160 | 160 | 0 | 0 | 0 | no | -| /docs/.env.dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.development | 90 | 90 | 0 | 0 | 0 | no | -| /docs/.env.docker | 80 | 80 | 0 | 0 | 0 | no | -| /docs/.env.old | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.env.production | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.env.test | 660 | 660 | 0 | 0 | 0 | no | -| /docs/.git-credentials | 300 | 300 | 0 | 0 | 0 | no | -| /docs/.git/config | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.hermes/.env | 150 | 150 | 0 | 0 | 0 | no | -| /docs/.hermes/config.yaml | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.htpasswd | 10 | 10 | 0 | 0 | 0 | no | -| /docs/.mcp.json | 70 | 70 | 0 | 0 | 0 | no | -| /docs/.next/build-manifest.json | 380 | 380 | 0 | 0 | 0 | no | -| /docs/.npmrc | 180 | 180 | 0 | 0 | 0 | no | -| /docs/.ssh/authorized_keys | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.ssh/config | 230 | 230 | 0 | 0 | 0 | no | -| /docs/.ssh/id_ecdsa | 200 | 200 | 0 | 0 | 0 | no | -| /docs/.ssh/id_rsa | 20 | 20 | 0 | 0 | 0 | no | -| /docs/.svn/entries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/.vite/manifest.json | 240 | 240 | 0 | 0 | 0 | no | -| /docs/.vscode/launch.json | 40 | 40 | 0 | 0 | 0 | no | -| /docs/.zshrc | 660 | 660 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/auth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/admin/repo/add | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/cli/references/validate | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@aharvey-login-docs/extensions/usage | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@backport-58877-to-5.2/cody/overview/install-vscode | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@batch-executor-mvp-docs/integration/aws_codecommit | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow | 300 | 300 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/install/docker-compose/google_cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/admin/observability/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@campaigns-new-flow/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | | /docs/@campaigns-new-flow/install/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/@campaigns-new-flow/user/campaigns/hello_world_campaign | 40 | 40 | 0 | 0 | 0 | no | | /docs/@campaigns-new-flow/user/managing_access.md | 0 | 0 | 0 | 40 | 0 | no | -| /docs/@campaigns-new-flow/user/search/language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/enterprise_getting_started_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/batch_changes/how-tos/creating_changesets_per_project_in_monorepos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/code_search/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/overview/enable-cody-enterprise | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@chenkc805-patch-1/cody/troubleshooting | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/admin/how-to/unfinished_migration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/explanations/reexecuting_batch_specs_multiple_times | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/batch_changes/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_insights/how-tos/creating_a_custom_dashboard_of_code_insights | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/code_search/explanations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/profiling_one-off | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@cody-pricing/dev/how-to/test_phabricator | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_navigation/explanations/features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/code_search/tutorials | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@coreyhill-legal-language-update-20240205/integration/gitpod | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@creativefisher-patch-1/admin/analytics | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/admin/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/batch_changes/references | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cloud | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/cody/explanations/code_graph_context | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/background-information/sql/migrations_overview | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/dev/how-to/add_monitoring | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@csells-patch-1/integration/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@fs/proc/self/environ | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@fs/root/.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/admin/observability | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jdorfman-patch-20231005105453/cody/custom-commands | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@jh/drop-old-sg-doc | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/admin/config/postgres-conf | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-compose | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/docker-single-container/digitalocean | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/deploy/kubernetes/kustomize/helm | 20 | 20 | 0 | 0 | 0 | no | | /docs/@main/admin/deploy/kubernetes/operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/executors/native_execution | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/external_service/gitolite | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/monorepo-issues | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/submodule-configuration//t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/how-to/update_repo_failure | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/dashboards | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/tracing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/observability/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/admin/updates/automatic | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/campaigns | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@main/cli/references/debug | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_insights/explanations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/code_navigation/how-to/configure_data_retention | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/code_search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/cody/overview/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/adr/1656412873-stop-using-bka-for-backend-tests | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/'z3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-repository/@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/architecture/life-of-a-search-query | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/insights/insight_view | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/observability/cadvisor@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/scim_postman_collection.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/security_patterns | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/dev/background-information/web/temporary_settings | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/how-to/debug_permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/dev/security/secret_formats | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@main/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@main/integration | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@main/integration/browser_extension/quickstart | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@main/user | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_navigation/how-to/configure_auto_indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/code_navigation/reference | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/code_search/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/code_navigation/how-to | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/cody/core-concepts/cody-gateway | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/bazel/code_navigation/tutorials | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/codemonitoring | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/background-information/web/browser-extension-release-process | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/dev/how-to/monitoring_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@michaellzc-patch-3/integration/dev/how-to | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/observability/alerting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/admin/permissions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/explanations/auto_indexing_inference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@mrn-docs-preview/code_navigation/references/requirements | 20 | 20 | 0 | 0 | 0 | no | | /docs/@mrn-docs-preview/config/index.md | 0 | 0 | 0 | 40 | 0 | no | -| /docs/@raznar-patch-1/cody/faq | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@raznar-patch-1/cody/overview/enable-cody-enterprise | 10 | 0 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/admin/external_service/gitlab | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@rb-getting-started-v1/dev/local_development | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@revert-57592-cody-embeddings/code_search/explanations/search_details | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-oss-remnants | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@sqs/rm-sg-autogen-docs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/admin/how-to/unfinished_migration | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/batch_changes/explanations/batch_changes_design | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@superhsu-patch-1/cody/overview/cody-with-sourcegraph | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/admin | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v2.13.5/extensions/language_servers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/admin/site_config/all | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.1.0/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.13.2/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.14.4/user/search | 50 | 50 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/campaigns/tutorials/update_base_images_in_dockerfiles | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/cli/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.23.0/code_search/explanations/features | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/dev/background-information/testing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.24.1/user/search | 80 | 80 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/external_service/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/how-to/dirty_database | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/admin/install/kubernetes/eks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/batch_changes/quickstart | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/background-information/oobmigrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.31.0/dev/how-to/monitoring_local_dev | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.35.0 | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1 | 40 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/auth/saml/azure_ad | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/external_service/gitlab | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/rebuild-corrupt-postgres-indexes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/how-to/troubleshoot-sg-extension | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/docker/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/install/migrate-backup | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/monorepo | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/updates/docker_compose | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/admin/workers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/adopt/code_search_in_monorepos | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/batch_changes/references/batch_spec_cheat_sheet | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/CHANGELOG | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/batch/remote | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/cli/references/orgs/members | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_insights/how-tos | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence/'z3 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/explanations/introduction_to_code_intelligence///t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_intelligence/references | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_monitoring/explanations/core_concepts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/how-to/search_contexts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/code_search/reference | 10 | 10 | 0 | 0 | 0 | no | | /docs/@v3.39.1/contributing/index.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/@v3.39.1/dev/background-information/ci | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/code-host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/pull_request_reviews | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sg | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/sourcegraph_extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/background-information/web/temporary_settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/ignoring_editor_config_files | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/testing_in_dogfood | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/dev/how-to/zoekt_local_dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/security | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/extensions/usage | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v3.39.1/integration/browser_search_engine | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-compose/configuration | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/docker-single-container/aws | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/deploy/machine-images/gce | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/external_service/github | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/admin/updates/server | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/batch_changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/code_navigation/explanations/uploads | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/architecture/life-of-a-repository | 70 | 70 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/background-information/observability/cadvisor | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/dev/how-to/releasing_browser_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@v4.4.2/getting-started | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@v5.0.0/code_search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@v5.0.1/code_search/reference/queries | 120 | 120 | 0 | 0 | 0 | no | -| /docs/@v5.0.6/admin/repo/pre_load_from_local_disk | 60 | 60 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/admin/deploy/scale | 30 | 30 | 0 | 0 | 0 | no | -| /docs/@web-vite-2/cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/@will/wolfi-package-docs-update | 20 | 20 | 0 | 0 | 0 | no | | /docs/@wip_v5.1.101/admin/troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/cody_gateway | 40 | 40 | 0 | 0 | 0 | no | -| /docs/@wip_v5.1.101/cody/explanations/indexing | 20 | 0 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/admin/updates/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/@wip_v5.2.0/dev | 10 | 10 | 0 | 0 | 0 | no | -| /docs/1b1aee85acc8e550b12bd82534a958.webm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/2324d837452ee44e307ccc538e.flac | 20 | 20 | 0 | 0 | 0 | no | -| /docs/5.10/admin/config/settings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/6178a74482.mka | 30 | 30 | 0 | 0 | 0 | no | -| /docs/837243013232c02b.avi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/898ecd669b41b7ea568b24db416c6aba.mkv | 40 | 40 | 0 | 0 | 0 | no | -| /docs/about | 20 | 20 | 0 | 0 | 0 | no | -| /docs/account | 30 | 30 | 0 | 0 | 0 | no | -| /docs/actuator | 120 | 120 | 0 | 0 | 0 | no | -| /docs/actuator/////////heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/actuator/configprops | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/access_control/batch_changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/admin/access_tokens/service_accounts.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/admin/access-control | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/batch-changes | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/admin/access-control/y2lom.txt | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/account.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/architecture | 840 | 760 | 0 | 0 | 0 | yes | -| /docs/admin/architecture.mdx | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/audit-log | 890 | 850 | 0 | 0 | 0 | yes | -| /docs/admin/auth | 540 | 510 | 0 | 0 | 0 | yes | -| /docs/admin/auth/builtin | 500 | 500 | 0 | 0 | 0 | yes | -| /docs/admin/auth/config/site_config | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/auth/login_form/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/auth/login-form | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/azure-ad | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/generic | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/jump-cloud | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/microsoft-adfs | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/okta | 170 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/auth/saml/one-login | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/admin/auth/troubleshooting | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/admin/azure.yaml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/bases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/comparison | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/basics/exposed-infrastructure | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/ipc | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/metadata | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/basics/qsql | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/bbo-token/heapdump | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/beta_and_experimental_features/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/billing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/changelog | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/aws | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/cloud/azure/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/cloud/otherfs/wekaio-matrix | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/aws_codecommit.schema.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/admin/code_hosts/azuredevops.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/attribute/warm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/9778ba | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/ba9778 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/color/hex/d7e3c9 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/guides | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/list/pantone | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/mood/quality | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code_hosts/ruby | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code_navigation/how-to-set-up/precise-code-navigation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/admin/code_hosts/bitbucket_cloud.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/admin/code_hosts/gitlab.schema.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/aws-codecommit | 490 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/azuredevops | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/bitbucket | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/bitbucket-server | 410 | 410 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gerrit | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gitlab | 650 | 500 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/gitolite | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/code-hosts/non-git | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/other | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/phabricator | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/rate-limits | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/code-hosts/src-serve-git | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/config/admin/config/settings.schema.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/ai | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/config/api/hprof | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/audit_logs | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/config/authorization-and-authentication | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/config/batch-changes | 510 | 470 | 0 | 0 | 0 | yes | -| /docs/admin/config/code_hosts/github | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/code_search_indexing_configuration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/package-lock.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/search.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/settings | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/admin/config/site_config/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/site-config0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x650x740x630x2f0x700x610x730x730x770x64 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/config/SkYO.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/config/wsfed/passive | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/database.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/dbconfig.yml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy_executors | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy/components/sizes/xs/@t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/drug-addiction-treatment.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/ghb.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/opiates.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-compose/oxycontin.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/docker-single-container/operations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/configure/networking | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/helm | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/deploy/kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/deploy/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/deploy/scale-index | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/deploy/scale.mdx | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/enterprise_getting_started_guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/enterprise-portal | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/entitlements | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/executors | 760 | 740 | 0 | 0 | 0 | yes | -| /docs/admin/executors/deploy_executors_kubernetes/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/executors/executor-secrets | 330 | 330 | 0 | 0 | 0 | yes | -| /docs/admin/extensions | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service | 50 | 50 | 0 | 0 | 0 | no | -| /docs/admin/external_service/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/external_service/bitbucketcloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/github | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/gitolite | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/external_service/jvm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/other_external_services | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/external_service/phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/external_service/rate_limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/external_service/src_serve_git | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/faq | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/free-tier | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/fsssiedxsssiedx | 30 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to | 640 | 620 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/converting-version-contexts-to-search-contexts | 260 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/enable-experimental-feature | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/export-search-results | 180 | 150 | 0 | 0 | 30 | yes | -| /docs/admin/how-to/host-manager/html | 30 | 0 | 0 | 0 | 0 | no | -| /docs/admin/how-to/how-to/monitoring-guide | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/how-to/internal-github-repos | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/lsif_scip_migration/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/lsif-scip-migration | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/manage-feature-flags-with-graphql | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/monitoring-guide/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/mutate-user-api | 220 | 220 | 0 | 0 | 20 | yes | -| /docs/admin/how-to/remove-repo | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/repo-not-updated | 100 | 80 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/schema-drift | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/how-to/site-admin-quickstart | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/site-admin-quickstart/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/submodule-configuration | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/troubleshoot-sg | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/how-to/unknown-error-login | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/admin/how-to/update-repo-failure | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/admin/index.php/Home/uploadify/fileList | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/install/cluster | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/install/docker-compose/docker-compose/google-cloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/kb/mt-primitives | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/name-game | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/pb/sum-say | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/python/examples/dict | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/q-for-all | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/session | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/learn/tour/tables | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/learn/views | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/licensing | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/licensing/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/markdown | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/admin/migration/3_0 | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/migration/3_7 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/5_1/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/migration/opengrok | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/admin/mims/updatecustomer.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/monitoring_dashboards | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/monorepo/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/monorepo/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/oauth-apps | 550 | 530 | 0 | 0 | 0 | yes | -| /docs/admin/observability/alerting/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/audit_log | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/health_checks/logon/LogonPoint/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/observability/logs/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/observability/metrics/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/opentelemetry/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/observability/outbound-request-log/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/organizations | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/admin/outbound-request-log | 240 | 190 | 0 | 0 | 0 | yes | -| /docs/admin/permissions | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/permissions../conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/admin/permissions/api/__data.json | 20 | 0 | 0 | 0 | 0 | no | -| /docs/admin/permissions/syncing | 370 | 350 | 0 | 0 | 0 | yes | -| /docs/admin/postgres/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/postgresql | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/programarchive_detail.php | 70 | 70 | 0 | 0 | 0 | no | -| /docs/admin/ref/all-any | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cast | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/cols | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/doth | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/drop | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/insert | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/key | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/lj | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/parse | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/rank | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/simple-exec | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/sin | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/subtract | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/uj | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/ref/update | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/ref/upsert | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/ref/while | 60 | 60 | 0 | 0 | 0 | no | -| /docs/admin/ref/xbar | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/admin/repo/add | 350 | 340 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/admin/repo/auth/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/auth/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/repo/git-config | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/admin/repo/metadata | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/admin/repo/perforce | 530 | 480 | 0 | 0 | 0 | yes | -| /docs/admin/repo/plasticscm | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/admin/repo/pre_load_from_local_disk | 40 | 40 | 0 | 0 | 0 | no | -| /docs/admin/repo/recording | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/admin/repo/update-frequency | 270 | 250 | 0 | 0 | 0 | yes | -| /docs/admin/repo/update-frequency.md//t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/admin/repo/webhooks/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/repo/webhooks/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/RSSa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/search | 420 | 360 | 0 | 0 | 30 | yes | -| /docs/admin/search/explanations/search-index | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/search/non-indexed-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/security | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/security-event-logs | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/security/audit_log | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/service-accounts | 230 | 200 | 0 | 0 | 0 | yes | -| /docs/admin/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/site_config/all | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/subscription_billing | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/subscriptions | 390 | 380 | 0 | 0 | 30 | yes | -| /docs/admin/teams | 50 | 50 | 0 | 0 | 0 | no | +| /docs/admin/code-hosts/gitlab | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/admin/how-to | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/admin/how-to/export-search-results | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/admin/how-to/mutate-user-api | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/admin/licensing | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/organizations | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/admin/repo/perforce | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/admin/search | 40 | 40 | 0 | 0 | 30 | yes | +| /docs/admin/service-accounts | 20 | 0 | 0 | 0 | 0 | yes | | /docs/admin/teams.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/admin/telemetry | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/private-metadata-allowlist | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/admin/telemetry/protocol | 140 | 140 | 0 | 0 | 10 | yes | +| /docs/admin/telemetry/protocol | 0 | 0 | 0 | 0 | 10 | yes | | /docs/admin/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/admin/updates/automatic/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/downgrading | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/grpc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/kubernetes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/migrator/upgrading-early-versions/@t.co | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/716-3e3d5b48d4a483ac.js/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/972-0b8656d4d8adc726.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/updates/static/chunks/app/layout-dc0fed6b1be3a4e4.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/user_data_deletion/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/user-data-deletion | 260 | 220 | 0 | 0 | 0 | yes | -| /docs/admin/user-surveys | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/incoming | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/admin/webhooks/outgoing | 320 | 230 | 0 | 0 | 0 | yes | -| /docs/admin/workers/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp-content/uploads/pp-files/purtp.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp-json/trx_addons/v2/get/sc_layout | 30 | 30 | 0 | 0 | 0 | no | -| /docs/admin/wp/astronomy | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/rt-tick | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/wp/solace | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/wp/ts-shrink | 20 | 20 | 0 | 0 | 0 | no | -| /docs/admin/www.sql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/admin/xscanpxcsfeet | 110 | 110 | 0 | 0 | 0 | no | -| /docs/administration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/administration/auth | 20 | 20 | 0 | 0 | 0 | no | -| /docs/adopt/code_search_in_monorepos | 30 | 0 | 0 | 0 | 0 | no | -| /docs/adopt/trial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/agentic-batch-changes | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/amp | 70 | 70 | 0 | 0 | 0 | no | -| /docs/amp/overview | 40 | 40 | 0 | 0 | 0 | no | -| /docs/analytics | 620 | 600 | 0 | 0 | 0 | yes | -| /docs/analytics/api | 380 | 370 | 0 | 0 | 0 | yes | -| /docs/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/analytics/pcw/vpn/index.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api | 2690 | 1830 | 0 | 0 | 0 | yes | -| /docs/api/__data.json | 550 | 0 | 0 | 0 | 0 | no | -| /docs/api/.env | 60 | 60 | 0 | 0 | 0 | no | -| /docs/api/account | 280 | 280 | 0 | 0 | 0 | no | -| /docs/api/env | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/graphql | 1470 | 1350 | 0 | 0 | 0 | yes | -| /docs/api/graphql/api-docs | 70 | 70 | 0 | 0 | 0 | no | -| /docs/api/graphql/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/managing-graphql-api-rate-limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/managing-search-contexts-with-api/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/graphql/reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/health | 150 | 150 | 0 | 0 | 0 | no | -| /docs/api/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp | 6590 | 5920 | 0 | 0 | 0 | yes | -| /docs/api/mcp/__data.json | 200 | 0 | 0 | 0 | 0 | no | -| /docs/api/mcp/.vscode/mcp.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/mcp/authentication | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/api/mcp/client-integrations | 640 | 630 | 0 | 0 | 0 | yes | -| /docs/api/mcp/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/static/chunks/app | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/mcp/tatic/chunks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/nks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/openapi.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/api/rest | 40 | 40 | 0 | 0 | 0 | no | -| /docs/api/search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/search_stream | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/search/stream_api | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/83-57eb53edc94ef28d.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/api/static/chunks | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/layout-a32707a53a2ba3bb.js/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/api/static/chunks/app/static/chunks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/api/stream_search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/api/stream-api | 740 | 650 | 0 | 0 | 0 | yes | -| /docs/api/v1/chat/completions | 50 | 50 | 0 | 0 | 0 | no | -| /docs/api/v1/config | 780 | 780 | 0 | 0 | 0 | no | -| /docs/api/v1/settings | 110 | 110 | 0 | 0 | 0 | no | -| /docs/api/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/apifsssiedxsssiedx | 50 | 50 | 0 | 0 | 0 | no | -| /docs/apis/store-api/resources-endpoints/products | 10 | 0 | 0 | 0 | 0 | no | -| /docs/app-config.json | 630 | 630 | 0 | 0 | 0 | no | -| /docs/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/atom.xml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/auth/access_tokens | 10 | 10 | 0 | 0 | 0 | no | -| /docs/authors | 60 | 60 | 0 | 0 | 0 | no | -| /docs/b824e50661ee430e6d3146e2eec3.flac | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch_changes/references/name-change | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes | 2030 | 1740 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-cheat-sheet | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-templating | 170 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/batch-spec-yaml-reference | 850 | 820 | 0 | 0 | 0 | yes | -| /docs/batch-changes/bulk-operations-on-changesets | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials | 270 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/configuring-credentials/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/create-a-batch-change | 540 | 540 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/batch-changes/creating-changesets-per-project-in-monorepos/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/creating-multiple-changesets-in-large-repositories | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/delete-a-batch-change | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/design | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/examples | 280 | 260 | 0 | 0 | 0 | yes | -| /docs/batch-changes/examples/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/explanations/introduction_to_batch_changes | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/faq | 580 | 500 | 0 | 0 | 0 | yes | -| /docs/batch-changes/getting-started | 40 | 40 | 0 | 0 | 0 | no | -| /docs/batch-changes/handling-errored-changesets | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/batch-changes/how-src-executes-a-batch-spec | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/batch-changes/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/packages/sourcegraph-test-helper/package.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/batch-changes/permissions-in-batch-changes | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/batch-changes/project1/package.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/batch-changes/publishing-changesets | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/batch-changes/push-only-changesets | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/batch-changes/quickstart | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/batch-changes/rebasing-changesets | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/batch-changes/reexecuting-batch-specs-multiple-times | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/batch-changes/refactor-go-comby | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/requirements | 200 | 160 | 0 | 0 | 0 | yes | -| /docs/batch-changes/search-and-replace-specific-terms | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/server-side | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/batch-changes/site-admin-configuration/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/batch-changes/tracking-existing-changesets | 460 | 420 | 0 | 0 | 0 | yes | -| /docs/batch-changes/troubleshooting | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-a-batch-change | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/batch-changes/update-base-images-in-dockerfiles | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/batch-changes/updating-go-import-statements | 230 | 210 | 0 | 0 | 0 | yes | -| /docs/batch-changes/view-batch-changes | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/build-manifest.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/build/manifest.json | 790 | 790 | 0 | 0 | 0 | no | -| /docs/cdn-cgi/rum | 240 | 240 | 0 | 0 | 0 | no | -| /docs/CHANGELOG/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/CHANGELOG/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli | 3830 | 2650 | 0 | 0 | 0 | yes | -| /docs/cli.mdfsssiedxsssiedx | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli.mdsssieddgdpathxsx | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/__data.json | 250 | 0 | 0 | 0 | 0 | no | -| /docs/cli/.git/index | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/explanations | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/env | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/versioning | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/explanations/windows | 300 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/g0rbzn8 | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cli/how-tos | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos.md/o6kpabd | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/how-tos/creating-an-access-token | 520 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/fetch-sboms | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/managing-access-tokens | 280 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/revoking-an-access-token | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/how-tos/verify-container-signatures | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart | 530 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/quickstart/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references | 340 | 310 | 0 | 0 | 30 | yes | -| /docs/cli/references//env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references//httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/abc | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/abc/variables/set | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/admin | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/api | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/auth/token | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/.git/config | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/apply | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/exec | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/forum-160-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-163-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-164-1.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-171-1.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/forum-178-1.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cli/references/batch/new | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/preview | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/remote | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/repositories | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/batch/validate | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/code-intel/upload.A | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/codeowners | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/create | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/delete | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/get | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/codeowners/update | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/edit | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/config/get | 110 | 110 | 0 | 0 | 20 | yes | -| /docs/cli/references/config/list | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cli/references/debug | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions//actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/copy | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/delete | 260 | 260 | 0 | 0 | 20 | yes | -| /docs/cli/references/extensions/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/httptrace | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extensions/list | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/cli/references/extensions/publish | 290 | 290 | 0 | 0 | 10 | yes | -| /docs/cli/references/extsvc | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/actuator/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/extsvc/create | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/edit | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/extsvc/list | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/login | 520 | 520 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsif | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/lsp | 290 | 290 | 0 | 0 | 0 | yes | -| /docs/cli/references/mcp | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs | 610 | 610 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/actuator/trace.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/create | 210 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/delete | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/env.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/orgs/get | 50 | 40 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/list | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/add | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/orgs/members/remove | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/cli/references/programarchive_detail.php | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cli/references/prompts | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/create | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/delete | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/export | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/get | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/import | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/list | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/create | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/delete | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/get | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/list | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/tags/update | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/prompts/update | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/add-metadata | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/delete-metadata | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/enable | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cli/references/repos/get | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/list | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cli/references/repos/update-metadata | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/cli/references/sbom | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/scout | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search | 200 | 190 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/cancel | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/create | 330 | 330 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/delete | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/get | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/list | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/logs | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/restart | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/search-jobs/results | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/serve-git | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/signature | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/snapshot | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/teams | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/cli/references/users | 380 | 380 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/actuator/logfile.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cli/references/users/create | 60 | 60 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/delete | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/get | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/list | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/prune | 30 | 30 | 0 | 0 | 0 | yes | -| /docs/cli/references/users/tag | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/cli/references/validate | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/cli/references/version | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/cli/scripting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/clifsssiedxsssiedx | 30 | 0 | 0 | 0 | 0 | no | -| /docs/cloud | 910 | 830 | 0 | 0 | 10 | yes | -| /docs/cloud/cloud_ent_on-prem_comparison | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cloud/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cloud/logpush-gcs | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/cloud/logpush-s3 | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/nofitications_on_cloud | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cloud/organizations/code_visibility_teams_sourcegraph_cloud | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cloud/private-connectivity-aws | 180 | 140 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-gcp | 420 | 360 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-public-lb | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cloud/private-connectivity-sourcegraph-connect | 160 | 150 | 0 | 0 | 0 | yes | -| /docs/code_insights/language_insight_quickstart/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/references/code_insights_graphql_api | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_insights/references/common_use_cases/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_insights/references/contact | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_insights/references/lombardy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/aphia.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/basic_code_intelligence/@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/explanations/sssieddgdpathxsx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/fsssiedxsssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/lsif_quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_intelligence/references/lsif | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_intelligence/tutorials/indexing_go_repo | 830 | 830 | 0 | 0 | 0 | no | -| /docs/code_monitoring/how-tos/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_navigation/explanations | 110 | 100 | 0 | 0 | 0 | no | -| /docs/code_navigation/explanations/indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_navigation/explanations/scip | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_navigation/how-to/index_a_cpp_repository | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_navigation/references | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code_search/explanations/how-search-works | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/explanations/precision-and-recall | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/adding_repositories_to_cloud | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/dependencies_search | 10 | 10 | 0 | 0 | 0 | no | +| /docs/agentic-batch-changes | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/api | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/api/mcp | 100 | 90 | 0 | 0 | 0 | yes | +| /docs/api/stream-api | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/batch-changes | 50 | 50 | 0 | 0 | 0 | yes | +| /docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/batch-changes/creating-changesets-per-project-in-monorepos | 40 | 40 | 0 | 0 | 0 | yes | +| /docs/batch-changes/examples | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/cli | 150 | 20 | 0 | 0 | 0 | yes | +| /docs/cli/explanations/windows | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/cli/how-tos/managing-access-tokens | 60 | 0 | 0 | 0 | 0 | yes | +| /docs/cli/references | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/cli/references/config/get | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/delete | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/cli/references/extensions/publish | 0 | 0 | 0 | 0 | 10 | yes | +| /docs/cli/references/version | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/cloud | 0 | 0 | 0 | 0 | 10 | yes | | /docs/code_search/how-to/exhaustive.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/code_search/how-to/opengrok | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_search/how-to/search-jobs/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code_search/reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code_search/reference/structural | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-insights | 720 | 690 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/administration-and-security-of-code-insights | 510 | 390 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/automatically-generated-data-series | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/current-limitations-of-code-insights | 290 | 280 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/data-retention | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/search-results-aggregations | 130 | 80 | 0 | 0 | 0 | yes | -| /docs/code-insights/explanations/viewing-code-insights | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/creating-a-custom-dashboard-of-code-insights | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/filtering-an-insight | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-insights/how-tos/Troubleshooting | 160 | 140 | 0 | 0 | 0 | yes | -| /docs/code-insights/language-insight-quickstart | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/code-insights/quickstart | 190 | 190 | 0 | 0 | 10 | yes | -| /docs/code-insights/references | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/common-reasons-code-insights-may-not-match-search-results | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/incomplete-data-points | 240 | 230 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/license | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/repository-scope | 150 | 130 | 0 | 0 | 20 | yes | -| /docs/code-insights/references/requirements | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/code-insights/references/search-aggregations-use-cases | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/code-insights/types/inventory-stats | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-intelligence | 190 | 190 | 0 | 0 | 0 | no | -| /docs/code-intelligence/explanations/precise_code_intelligence | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-intelligence/install-manual | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-intelligence/javascript | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-intelligence/references/indexers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-intelligence/scip/scip-java | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-monitoring | 860 | 750 | 0 | 0 | 0 | yes | -| /docs/code-monitoringsssieddgdpathxsx | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation | 2450 | 2200 | 0 | 0 | 0 | yes | -| /docs/code-navigation/__data.json | 40 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/auto-indexing | 600 | 510 | 0 | 0 | 0 | yes | +| /docs/code-insights | 10 | 10 | 0 | 0 | 0 | yes | +| /docs/code-insights/quickstart | 20 | 20 | 0 | 0 | 10 | yes | +| /docs/code-insights/references/repository-scope | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-monitoring | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/code-navigation/auto-indexing | 20 | 20 | 0 | 0 | 0 | yes | | /docs/code-navigation/automatic-indexing.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/code-navigation/envvars | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/auto-indexing-inference | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/code-navigation/explanations/precise_code_navigation | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-navigation/explanations/uploads | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/code-navigation/features | 420 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/adding-scip-to-workflows | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/combining-scip-uploads-from-ci-cd-and-auto-indexing | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/cross_repository_code_navigation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index_a_rust_repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-go-repository | 260 | 200 | 0 | 0 | 30 | yes | -| /docs/code-navigation/how-to/index-a-repository | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-navigation/how-to/index-a-typescript-and-javascript-repository | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/index-other-languages | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/code-navigation/how-to/policies-resource-usage-best-practices | 510 | 510 | 0 | 0 | 0 | yes | -| /docs/code-navigation/inference-configuration | 260 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/languages | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/precise-code-navigation | 2900 | 2650 | 0 | 0 | 0 | yes | -| /docs/code-navigation/precise-code-navigation/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-navigation/private-maven-repository-configuration | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/code-navigation/references/indexers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-navigation/rockskip | 630 | 570 | 0 | 0 | 0 | yes | -| /docs/code-navigation/search-based-code-navigation | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/code-navigation/smart-hover | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/code-navigation/syntactic-code-navigation | 150 | 130 | 0 | 0 | 0 | yes | -| /docs/code-navigation/troubleshooting | 370 | 370 | 0 | 0 | 20 | yes | -| /docs/code-navigation/writing-an-indexer | 1290 | 1220 | 0 | 0 | 0 | yes | -| /docs/code-ownership | 480 | 470 | 0 | 0 | 30 | yes | -| /docs/code-ownership/codeowners-format | 650 | 490 | 0 | 0 | 0 | yes | -| /docs/code-search | 1600 | 1450 | 0 | 0 | 20 | yes | -| /docs/code-search/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/auto_indexing/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/explanations/auto_indexing | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to-index-a-repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/index-a-new-language | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/kenya | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/malaysia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/philanthropists-in-russia | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/how-to/ukraine | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise_code_navigation/how-to/index_a_repository | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/precise-code-navigation | 50 | 50 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/references/indexers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/code-navigation/writing-an-indexer | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/compare-file-filtering | 550 | 550 | 0 | 0 | 0 | yes | -| /docs/code-search/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/explanations/search_details | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/faq | 220 | 180 | 0 | 0 | 0 | yes | -| /docs/code-search/features | 500 | 440 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/code-search/how-to/configure_repository_indexing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/code-search/how-to/opengrok | 420 | 420 | 0 | 0 | 0 | yes | -| /docs/code-search/overview | 40 | 40 | 0 | 0 | 0 | no | +| /docs/code-navigation/how-to/index-a-go-repository | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/code-navigation/troubleshooting | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-search | 100 | 60 | 0 | 0 | 0 | yes | | /docs/code-search/q2k3d70.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/code-search/queries | 3800 | 3410 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/examples | 190 | 160 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/language | 1210 | 1190 | 0 | 0 | 0 | yes | -| /docs/code-search/queries/md | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/query-assist | 270 | 200 | 0 | 0 | 0 | yes | -| /docs/code-search/reference/queries | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/semantic-search | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/types | 40 | 40 | 0 | 0 | 0 | no | -| /docs/code-search/types/commit-diff-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/types/fuzzy | 80 | 80 | 0 | 0 | 20 | yes | -| /docs/code-search/types/search-jobs | 820 | 590 | 0 | 0 | 0 | yes | -| /docs/code-search/types/structural | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/code-search/types/symbol | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/code-search/working | 60 | 60 | 0 | 0 | 0 | no | -| /docs/code-search/working/.git/index | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/s7ehu.txt | 10 | 0 | 0 | 0 | 0 | no | -| /docs/code-search/working/saved_searches/vpn/index.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/code-search/working/saved-searches | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/scip | 10 | 10 | 0 | 0 | 0 | no | -| /docs/code-search/working/search-contexts | 420 | 310 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-filters | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/code-search/working/search-subexpressions | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/code-search/working/snippets | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/code-search/zoekt | 20 | 20 | 0 | 0 | 0 | no | -| /docs/codex | 120 | 120 | 0 | 0 | 0 | no | -| /docs/cody../host-manager/html | 40 | 0 | 0 | 0 | 0 | no | -| /docs/cody/agent-skills | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/agents | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/analytics/index | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agent-skills | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agentic-context-fetching | 510 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/agentic-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/agents | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/autocomplete/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/code-search/queries | 200 | 80 | 0 | 0 | 0 | yes | +| /docs/code-search/types/fuzzy | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/code-search/types/search-jobs | 70 | 0 | 0 | 0 | 0 | yes | +| /docs/code-search/working/search-contexts | 70 | 10 | 0 | 0 | 0 | yes | +| /docs/code-search/working/snippets | 20 | 20 | 0 | 0 | 0 | yes | +| /docs/cody/capabilities/agentic-context-fetching | 10 | 10 | 0 | 0 | 0 | yes | | /docs/cody/capabilities/bring-your-own-key.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/cody/capabilities/chat | 400 | 390 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/code_review | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/code-search/context-filters | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/commands/custom-commands | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/commands/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/context-awareness | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/custom-commands | 170 | 170 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/debug-code | 320 | 300 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/debug-code/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/deep-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/edit-modes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/enterprise-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/ignore-context | 510 | 510 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/mcp | 100 | 100 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/ollama | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/openctx | 260 | 260 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/prompts | 1300 | 1180 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/proxy-setup | 400 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/capabilities/repository-memory | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/rules | 280 | 280 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/capabilities/supported-models | 670 | 630 | 0 | 0 | 0 | yes | -| /docs/cody/cli | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clie | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/client/overview | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/clients | 450 | 450 | 0 | 0 | 0 | yes | -| /docs/cody/clients/app | 350 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-cli | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/cody-with-sourcegraph | 460 | 460 | 0 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise | 880 | 810 | 0 | 0 | 0 | yes | -| /docs/cody/clients/enable-cody-enterprise/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/feature-reference | 250 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-cli | 590 | 470 | 0 | 0 | 30 | yes | -| /docs/cody/clients/install-jetbrains | 430 | 420 | 0 | 0 | 0 | yes | -| /docs/cody/clients/install-jetbrains/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-mcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/clients/install-neovim | 160 | 160 | 0 | 0 | 30 | yes | -| /docs/cody/clients/install-vscode | 1460 | 1230 | 0 | 0 | 0 | yes | -| /docs/cody/clients/mcp | 80 | 80 | 0 | 0 | 0 | no | -| /docs/cody/clients/model-configuration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/clients/openctx | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/configure/llm-providers | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts | 40 | 40 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts../host-manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/code-graph | 440 | 410 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/code-intel | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/cody-rules | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context | 1150 | 1120 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/context/context-window | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/usage-and-limits | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/context/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/deep-search | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-architecture/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/enterprise-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/keyword-search | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/llm | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/local-indexing | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/core-concepts/manager/html | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/model-selection | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/models | 60 | 30 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/670-fc162f60b3adb39e.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/core-concepts/token-limits | 830 | 790 | 0 | 0 | 0 | yes | -| /docs/cody/core-features/chat | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/core-workflows/agentic-chat | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/customization | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/customization/custom-commands | 60 | 60 | 0 | 0 | 0 | no | -| /docs/cody/customize/context-providers | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/enterprise | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/completions-configuration | 270 | 270 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/context-filters | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/context-selection | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/features | 600 | 560 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/knowledge-graph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/enterprise/model-config-examples | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration | 350 | 310 | 0 | 0 | 0 | yes | -| /docs/cody/enterprise/model-configuration/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/cody/explanations/code-graph-context | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/explanations/cody_clients | 90 | 90 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/offices-and-facilities | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/explanations/department/presentation | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/explanations/latest-updates | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/explanations/research/seminars | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/explanations/use_cases | 40 | 40 | 0 | 0 | 0 | no | -| /docs/cody/feature-reference | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/features/documentation | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/mcp | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/model-provider/azure-openai | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/models | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/about-cody-context | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/app/app_configuration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/overview/architecture | 30 | 30 | 0 | 0 | 0 | no | -| /docs/cody/overview/enable-cody-enterprise/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/overview/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/plans | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/pricing | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/prompts-guide | 410 | 400 | 0 | 0 | 0 | yes | -| /docs/cody/quickstart | 690 | 640 | 0 | 0 | 0 | yes | -| /docs/cody/skills | 130 | 130 | 0 | 0 | 0 | no | -| /docs/cody/tatic | 20 | 20 | 0 | 0 | 0 | no | -| /docs/cody/troubleshooting | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases | 10 | 10 | 0 | 0 | 0 | no | -| /docs/cody/use-cases/build-ui | 210 | 210 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/generate-unit-tests | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/cody/use-cases/vsc-tutorial | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/config/.env | 80 | 80 | 0 | 0 | 0 | no | -| /docs/config/repositories | 10 | 10 | 0 | 0 | 0 | no | -| /docs/config/site | 20 | 20 | 0 | 0 | 0 | no | -| /docs/config/site-settings | 10 | 10 | 0 | 0 | 0 | no | +| /docs/cody/clients/install-neovim | 0 | 0 | 0 | 0 | 30 | yes | +| /docs/cody/clients/install-vscode | 60 | 0 | 0 | 0 | 0 | yes | +| /docs/cody/enterprise/model-configuration | 20 | 20 | 0 | 0 | 0 | yes | | /docs/CONFIGURATION.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/context-filters | 110 | 100 | 0 | 0 | 0 | yes | -| /docs/credentials.json | 280 | 280 | 0 | 0 | 0 | no | -| /docs/custom-components.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/deep-search/api | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/deep-search/index | 20 | 20 | 0 | 0 | 0 | no | +| /docs/context-filters | 10 | 0 | 0 | 0 | 0 | yes | +| /docs/deep-search | 0 | 0 | 0 | 0 | 20 | yes | | /docs/deep-search/overview | 10 | 0 | 0 | 0 | 0 | no | -| /docs/deploy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/gcp | 10 | 10 | 0 | 0 | 0 | no | -| /docs/deploy/kubernetes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/desk | 40 | 0 | 0 | 0 | 0 | no | -| /docs/desk/mifs/user/login.jsp | 20 | 0 | 0 | 0 | 0 | no | -| /docs/dev | 210 | 210 | 0 | 0 | 0 | no | -| /docs/dev/.env | 310 | 310 | 0 | 0 | 0 | no | -| /docs/dev/adr/1657287546-consolidate-redis-store-and-redis-cache-in-a-single-instance | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/adr/1667380209-audit-log-on-top-of-structured-logging | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/adr/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/architecture/life-of-a-code-intelligence-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/adding_ping_data | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/codesigning | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/app/troubleshooting | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/indexed-ranking | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-ping | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-repository | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/architecture/life-of-a-search-query | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/batch_changes | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/go | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/bazel/server_integration_tests | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/build_p4_fusion | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/ci | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/extensions | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codeintel/queries | 40 | 0 | 0 | 0 | 0 | no | -| /docs/dev/background-information/codemonitoring | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/git_gc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/graphql_api | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/languages/bash | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability | 60 | 60 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/monitoring-generator | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/observability/prometheus | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/oobmigrations | 50 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/server | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/sql/migrations_overview | 70 | 70 | 0 | 0 | 0 | no | -| /docs/dev/background-information/tech_stack | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/background-information/telemetry/architecture | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_principles | 120 | 120 | 0 | 0 | 0 | no | -| /docs/dev/background-information/testing_web_code | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/accessibility/how-to-audit | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/build | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/web/temporary_settings | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/wolfi | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/background-information/workers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/background-information/zoekt | 40 | 40 | 0 | 0 | 0 | no | -| /docs/dev/code_style_guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/codeintel | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/contributing/accepting_contribution | 70 | 70 | 0 | 0 | 0 | no | -| /docs/dev/getting-started | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/getting-started/quickstart_4_start_docker | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_graphql_query | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/add_logging | 50 | 50 | 0 | 0 | 0 | no | -| /docs/dev/how-to/client_pr_previews | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/generate_license_key_for_testing | 30 | 10 | 0 | 0 | 0 | no | -| /docs/dev/how-to/maintain-tech-radar | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/how-to/monitoring_local_dev | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/test_phabricator | 30 | 30 | 0 | 0 | 0 | no | -| /docs/dev/how-to/use-golangci-lint | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/product/tracking_issue_template | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dev/setup | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/setup/troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/dev/web | 40 | 40 | 0 | 0 | 0 | no | -| /docs/diff-tour | 230 | 230 | 0 | 0 | 0 | yes | -| /docs/dist/manifest.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/do/actuator/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/doc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/doc/admin/beta_and_experimental_features | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docker-compose.yaml | 60 | 60 | 0 | 0 | 0 | no | -| /docs/Dockerfile | 360 | 360 | 0 | 0 | 0 | no | -| /docs/docs | 210 | 210 | 0 | 0 | 0 | no | -| /docs/docs/admin | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/architecture | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/auth/login-form | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/jvm | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/code_hosts/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/code-hosts/github | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/external_service | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/converting-version-contexts-to-search-contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/admin/how-to/export-search-results | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/admin/outbound-request-log | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/admin/pings | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/admin/repo | 70 | 70 | 0 | 0 | 0 | no | -| /docs/docs/admin/repo/plasticscm | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/api/graphql | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-templating | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/batch-spec-yaml-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/design | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/batch-changes/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/beta-and-experimental | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/cli/explanations/windows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/batch | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/cli/references/repos | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code_insights/how-tos/Troubleshooting | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-insights/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/how-to/adding-scip-to-workflows | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-navigation/writing-an-indexer | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/code-search | 160 | 160 | 0 | 0 | 0 | no | -| /docs/docs/code-search/types | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/code-search/types/search-jobs | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/saved-searches | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/code-search/working/search-filters | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/cody | 90 | 90 | 0 | 0 | 0 | no | -| /docs/docs/cody/clients/enable-cody-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/cody/faq | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/deep-search | 40 | 40 | 0 | 0 | 0 | no | -| /docs/docs/getting-started/tour | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/integration | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos | 60 | 60 | 0 | 0 | 0 | no | -| /docs/docs/integration/browser-extension/how-tos/browser-search-engine | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/integration/editor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/how-to/monitoring-guide | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability | 10 | 10 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/health-checks | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/logs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/observability/metrics | 30 | 30 | 0 | 0 | 0 | no | -| /docs/docs/self-hosted/updates/migrator/migrator-operations | 10 | 10 | 0 | 0 | 0 | no | -| /docs/dotcom | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/dotcom/indexing-open-source-code | 330 | 320 | 0 | 0 | 0 | yes | -| /docs/elmah.axd | 70 | 70 | 0 | 0 | 0 | no | +| /docs/dev | 90 | 90 | 0 | 0 | 0 | no | +| /docs/docs | 0 | 0 | 0 | 20 | 0 | no | +| /docs/docs/batch-changes/configuring-credentials | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/publishing-changesets | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/batch-changes/quickstart | 0 | 0 | 0 | 20 | 0 | no | +| /docs/docs/cli | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/deploy/kubernetes | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgres12-end-of-life-notice | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/postgresql-collation-version-mismatch-resolution | 0 | 0 | 0 | 10 | 0 | no | +| /docs/docs/self-hosted/updates/migrator/troubleshooting-upgrades | 0 | 0 | 0 | 10 | 0 | no | | /docs/en/bm25.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/etc | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions | 130 | 130 | 0 | 0 | 0 | no | -| /docs/extensions/authoring | 170 | 170 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/creating | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/local_development | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/testing_extensions | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/tutorials/lang_specific_extension_tutorial | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/authoring/ux_style_guide | 10 | 10 | 0 | 0 | 0 | no | -| /docs/extensions/deprecation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/language_servers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/extensions/principles | 40 | 40 | 0 | 0 | 0 | no | -| /docs/features/api | 10 | 10 | 0 | 0 | 0 | no | -| /docs/federation | 20 | 20 | 0 | 0 | 0 | no | -| /docs/feeds/business.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/file-source-utils.ts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/firebase-service-account.json | 120 | 120 | 0 | 0 | 0 | no | -| /docs/frontend/.env | 30 | 30 | 0 | 0 | 0 | no | -| /docs/fsssiedx'sssiedx | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting_started/connecting_integrating_your_code_host | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started | 1390 | 1360 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance | 250 | 220 | 0 | 0 | 0 | yes | -| /docs/getting-started/cloud-instance/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/github-vs-sourcegraph | 970 | 950 | 0 | 0 | 0 | yes | -| /docs/getting-started/github-vs-sourcegraph/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/oss-enterprise | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization | 280 | 270 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/badges | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/getting-started/personalization/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/quick_links | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/personalization/themes | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/getting-started/static/chunks/147-8b55de5edd4c77d2.js/logon/LogonPoint_workspace/tmindex.html | 50 | 50 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/getting-started/static/chunks/716-3e3d5b48d4a483ac.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/getting-started/tour | 350 | 330 | 0 | 0 | 0 | yes | -| /docs/getting-started/tour/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | +| /docs/features/api | 0 | 0 | 0 | 10 | 0 | no | | /docs/gptq.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/graphql | 220 | 220 | 0 | 0 | 0 | no | -| /docs/graphql/console | 20 | 20 | 0 | 0 | 0 | no | -| /docs/help/llms.txt | 10 | 10 | 0 | 0 | 0 | no | | /docs/HelpWantedIssueSummaryCommentTemplate.md | 0 | 0 | 0 | 10 | 0 | no | | /docs/high-concurrency/how-to-ensure-the-order-of-messages.md | 0 | 0 | 0 | 40 | 0 | no | -| /docs/host.key | 140 | 140 | 0 | 0 | 0 | no | -| /docs/how-to | 10 | 10 | 0 | 0 | 0 | no | -| /docs/how-to-videos/cody/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/how-to/aws-instance-sizing | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/id_dsa | 480 | 480 | 0 | 0 | 0 | no | -| /docs/id_ecdsa | 470 | 470 | 0 | 0 | 0 | no | -| /docs/id_ed25519 | 20 | 20 | 0 | 0 | 0 | no | -| /docs/id_rsa | 210 | 210 | 0 | 0 | 0 | no | -| /docs/iframe | 20 | 20 | 0 | 0 | 0 | no | -| /docs/index_dev.php/_profiler/phpinfo | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.rss | 10 | 10 | 0 | 0 | 0 | no | -| /docs/index.xml | 10 | 10 | 0 | 0 | 0 | no | -| /docs/info.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/init.php | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/integration/aws-codecommit | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/integration/azuredevops | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_cloud/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket_server/epa/epa.html | 30 | 30 | 0 | 0 | 0 | no | -| /docs/integration/bitbucket-cloud | 130 | 110 | 0 | 0 | 0 | yes | -| /docs/integration/bitbucket-server | 270 | 250 | 0 | 0 | 0 | yes | -| /docs/integration/browser_extension/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser_extension/quickstart | 10 | 10 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension | 970 | 940 | 0 | 0 | 10 | yes | -| /docs/integration/browser-extension../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/__data.json | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos | 120 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos../actuator/env | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/how-tos/browser-search-engine | 330 | 290 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/google-workspace | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/how-tos/troubleshooting | 250 | 250 | 0 | 0 | 0 | yes | | /docs/integration/browser-extension/l7cvodn/google-workspace.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/integration/browser-extension/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/browser-extension/quickstart | 100 | 90 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references | 150 | 150 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/features | 190 | 170 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/references/privacy | 190 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/browser-extension/t4la8ll | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/conf/server.xml | 10 | 0 | 0 | 0 | 0 | no | -| /docs/integration/editor | 410 | 390 | 0 | 0 | 10 | yes | -| /docs/integration/github | 330 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/gitlab | 200 | 180 | 0 | 0 | 0 | yes | -| /docs/integration/gitolite | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/integration/gitpod | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/integration/jetbrains | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/integration/logon/LogonPoint/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/manager/html | 20 | 0 | 0 | 0 | 0 | no | -| /docs/integration/migrating-firefox-extension | 90 | 70 | 0 | 0 | 0 | yes | -| /docs/integration/open_in_editor/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/open-in-editor | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/integration/phabricator | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/integration/python | 20 | 20 | 0 | 0 | 0 | no | -| /docs/integration/rust | 50 | 50 | 0 | 0 | 0 | no | -| /docs/jobs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/key.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/key.pem | 240 | 240 | 0 | 0 | 0 | no | -| /docs/key.yml | 10 | 10 | 0 | 0 | 0 | no | +| /docs/integration/editor | 0 | 0 | 0 | 0 | 10 | yes | +| /docs/integration/gitlab | 40 | 20 | 0 | 0 | 0 | yes | | /docs/l730boh.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/lab/.env | 20 | 20 | 0 | 0 | 0 | no | -| /docs/launch.json | 10 | 10 | 0 | 0 | 0 | no | -| /docs/legacy | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/living-docs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/llms-full.txt | 120 | 120 | 0 | 0 | 0 | no | -| /docs/llms.txt/index.php | 10 | 10 | 0 | 0 | 0 | no | -| /docs/login | 320 | 320 | 0 | 0 | 0 | no | -| /docs/logpush_s3 | 10 | 10 | 0 | 0 | 0 | no | -| /docs/management/heapdump | 10 | 10 | 0 | 0 | 0 | no | -| /docs/mcp | 150 | 150 | 0 | 0 | 0 | no | -| /docs/migration/oracle-opengrok-to-sourcegraph | 10 | 10 | 0 | 0 | 0 | no | -| /docs/model-deprecations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/model-provider | 410 | 380 | 0 | 0 | 0 | yes | -| /docs/models | 10 | 10 | 0 | 0 | 0 | no | | /docs/nope | 10 | 10 | 0 | 0 | 0 | no | -| /docs/notebooks | 90 | 90 | 0 | 0 | 0 | no | -| /docs/notebooks/blocks | 20 | 0 | 0 | 0 | 0 | no | -| /docs/notebooks/quickstart/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/openapi.json | 200 | 200 | 0 | 0 | 0 | no | -| /docs/own/codeowners_format/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/own/configuration-reference.md | 0 | 0 | 0 | 20 | 0 | no | -| /docs/permissions/syncing | 60 | 60 | 0 | 0 | 0 | no | -| /docs/phpinfo.php | 290 | 290 | 0 | 0 | 0 | no | -| /docs/politics/rss | 30 | 30 | 0 | 0 | 0 | no | -| /docs/portal | 450 | 450 | 0 | 0 | 0 | no | -| /docs/pricing/enterprise/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/faq | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/faqs | 450 | 410 | 0 | 0 | 0 | yes | -| /docs/pricing/plan-comparison/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | | /docs/pricing/plans.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/pricing/plans/billing-faqs | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/enterprise | 480 | 480 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/enterprise-starter | 450 | 440 | 0 | 0 | 0 | yes | -| /docs/pricing/plans/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/plans/faqs | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/123-2439620dac891cfd.js/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/972-0b8656d4d8adc726.js/logon/LogonPoint_workspace/tmindex.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/pricing/static/chunks/app/page-b7c57a616a2d245f.js/logon/LogonPoint/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/private-key | 40 | 40 | 0 | 0 | 0 | no | -| /docs/react.profiler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/react.provider@t.co | 10 | 10 | 0 | 0 | 0 | no | -| /docs/reference/triggers | 20 | 0 | 0 | 0 | 0 | no | | /docs/references/index.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/releases | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/releases/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/scip | 20 | 20 | 0 | 0 | 0 | no | -| /docs/search/query/syntax | 10 | 10 | 0 | 0 | 0 | no | -| /docs/search/reference/language | 10 | 10 | 0 | 0 | 0 | no | -| /docs/secrets.json | 60 | 60 | 0 | 0 | 0 | no | -| /docs/secrets.yml | 40 | 40 | 0 | 0 | 0 | no | -| /docs/security/data_privacy | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/advanced-config-file | 440 | 440 | 0 | 0 | 0 | yes | -| /docs/self-hosted/components/ingress/hostname | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy | 1340 | 950 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/components/clusters/aws/eks-ebs | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-compose | 520 | 400 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/aws | 470 | 470 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/azure | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/configuration | 290 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/digitalocean | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/google-cloud | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/migrate | 410 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/operations | 400 | 380 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-compose/upgrade | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/docker-single-container | 310 | 310 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/aws | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/digitalocean | 100 | 100 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/docker-single-container/google-cloud | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/instance-size | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes | 760 | 680 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/azure | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/bases/deployments | 40 | 40 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/kubernetes/configure | 500 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/eks | 120 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/eks | 410 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/gke | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/kustomize/migrate | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/operations | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/scale | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/troubleshoot | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/kubernetes/upgrade | 110 | 110 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose | 90 | 30 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/configuration | 20 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/docker-compose/upgrade | 110 | 90 | 0 | 0 | 0 | yes | +| /docs/self-hosted/deploy/kubernetes | 20 | 0 | 0 | 0 | 0 | yes | | /docs/self-hosted/deploy/kubernetes/w6vll9l.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/self-hosted/deploy/machine-images | 100 | 100 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-ami | 200 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/aws-oneclick | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/machine-images/gce | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/migrate-backup | 390 | 390 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/repositories | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/resource-estimator | 230 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale | 230 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/scale-afdocs-nonexistent-8f3a | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/single-node | 280 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/single-node/script | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/deploy/using-external-services | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/deploy/without-service-discovery | 40 | 40 | 0 | 0 | 20 | yes | -| /docs/self-hosted/email | 310 | 310 | 0 | 0 | 0 | yes | -| /docs/self-hosted/encryption | 320 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors | 370 | 370 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/custom-certificates | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors | 80 | 80 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-binary | 360 | 360 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-binary-offline | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-dind | 180 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker | 260 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-docker/__data.json | 30 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-kubernetes | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-kubernetes/__data.json | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/executors/deploy-executors-terraform | 310 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-aws | 260 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/deploy-executors-terraform-gcp | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/executors-config | 280 | 240 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/executors-troubleshooting | 350 | 290 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/firecracker | 470 | 430 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/private-registries | 110 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/executors/resource-sizing | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external_services/postgres | 160 | 160 | 0 | 0 | 0 | no | -| /docs/self-hosted/external-services/object-storage | 580 | 540 | 0 | 0 | 0 | yes | -| /docs/self-hosted/external-services/redis | 160 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/faq | 120 | 110 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to | 230 | 210 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/blobstore-debugging | 360 | 330 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/blobstore-update-notes | 190 | 190 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/clear-codeintel-data | 300 | 300 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/dirty-database | 420 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/monitoring-guide | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres-12-to-16-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/postgres14-index-corruption | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/precise-code-intel-worker-crashloopbackoff | 100 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rebuild-corrupt-postgres-indexes | 250 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/redis-configmap | 250 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/rollback-database | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/run-psql | 90 | 90 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/setup-https | 70 | 70 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/troubleshoot-pod-eviction | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/unfinished-migration | 210 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 130 | 130 | 0 | 0 | 0 | yes | -| /docs/self-hosted/http-https-configuration | 250 | 250 | 0 | 0 | 0 | yes | -| /docs/self-hosted/kubectl-apply-all.sh | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/network-filtering | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability//heapdump | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/alerting | 290 | 270 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerting-custom-consumption | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/alerts | 450 | 230 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/andinod/HPUXMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/BCN/Trango | 30 | 30 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/redis | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/chudler/xmppBot | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Fortigate | 50 | 50 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/IBM3584Mon | 70 | 70 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Infoblox | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/MySQLSSH | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NFS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NginxStatus | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/NortelMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OceanStor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/OracleMon | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/Stingray | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/community/WMIDataSource | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/dashboards | 360 | 280 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/DDN/Exascaler | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/health-checks | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/httptrace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/LearningObjects/PostgresqlMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/logs | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/metrics | 210 | 200 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/opentelemetry | 220 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/rhybudd/alerts | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/tracing | 340 | 320 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/troubleshooting | 650 | 630 | 0 | 0 | 0 | yes | -| /docs/self-hosted/observability/vmware/VirtualMachines | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/example | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/cli-reference | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/reference/device-link-providers | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zdk/start/http/plugin-modeling | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/AWS | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/ControlCenter | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/DellMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/HANA | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/NNTPMonitor | 10 | 10 | 0 | 0 | 0 | no | -| /docs/self-hosted/observability/zenoss/TrangoMonitor | 20 | 20 | 0 | 0 | 0 | no | -| /docs/self-hosted/overview | 60 | 60 | 0 | 0 | 0 | no | -| /docs/self-hosted/postgres | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgres-conf | 290 | 270 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgres12-end-of-life-notice | 180 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/postgresql-collation-version-mismatch-resolution | 170 | 170 | 0 | 0 | 0 | yes | -| /docs/self-hosted/pprof | 150 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/private-network | 160 | 160 | 0 | 0 | 0 | yes | -| /docs/self-hosted/restore | 240 | 220 | 0 | 0 | 0 | yes | -| /docs/self-hosted/sourcegraph-nginx-mermaid | 80 | 80 | 0 | 0 | 0 | yes | -| /docs/self-hosted/ssl-https-self-signed-cert-nginx | 210 | 180 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates | 560 | 510 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/automatic | 160 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator//actuator/trace | 10 | 0 | 0 | 0 | 0 | no | -| /docs/self-hosted/updates/migrator/downgrading | 50 | 50 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/migrator-operations | 450 | 410 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/schema-drift | 130 | 120 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/troubleshooting-upgrades | 140 | 140 | 0 | 0 | 0 | yes | -| /docs/self-hosted/updates/migrator/upgrading-early-versions | 300 | 150 | 0 | 0 | 0 | yes | -| /docs/self-hosted/url | 590 | 500 | 0 | 0 | 0 | yes | -| /docs/self-hosted/validation | 340 | 340 | 0 | 0 | 0 | yes | -| /docs/self-hosted/workers | 240 | 240 | 0 | 0 | 0 | yes | -| /docs/sendgrid.env | 40 | 40 | 0 | 0 | 0 | no | -| /docs/server.key | 70 | 70 | 0 | 0 | 0 | no | -| /docs/server/config/organizations | 20 | 20 | 0 | 0 | 0 | no | -| /docs/server/taskfolk | 20 | 20 | 0 | 0 | 0 | no | -| /docs/service_account.json | 210 | 210 | 0 | 0 | 0 | no | -| /docs/settings.json | 30 | 30 | 0 | 0 | 0 | no | -| /docs/setup/setupadministrator.action | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sggtm | 280 | 90 | 0 | 0 | 0 | no | -| /docs/signin | 50 | 50 | 0 | 0 | 0 | no | -| /docs/sitemap_index.xml | 20 | 20 | 0 | 0 | 0 | no | -| /docs/sla | 350 | 350 | 0 | 0 | 0 | yes | -| /docs/sla/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/sla/vpn/index.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/slack-integration | 960 | 950 | 0 | 0 | 0 | yes | -| /docs/sourcegraph-accounts | 430 | 430 | 0 | 0 | 0 | yes | -| /docs/sourcegraph.com/actuator/heapdump | 20 | 20 | 0 | 0 | 0 | no | -| /docs/spec.json | 80 | 80 | 0 | 0 | 0 | no | -| /docs/sssieddgdpathxsx | 60 | 40 | 0 | 0 | 0 | no | -| /docs/static/chunks/670-fc162f60b3adb39e.js/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/static/chunks/83-6dbbf249881c5400.js/logon/LogonPoint_workspace/tmindex.html | 40 | 40 | 0 | 0 | 0 | no | -| /docs/supported-countries | 380 | 380 | 0 | 0 | 0 | yes | -| /docs/swagger.json | 20 | 20 | 0 | 0 | 0 | no | -| /docs/symbol-search | 10 | 10 | 0 | 0 | 0 | no | -| /docs/technical-changelog | 4270 | 3830 | 0 | 0 | 0 | yes | -| /docs/technical-changelog/epa/epa.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/technical-changelog/logon/LogonPoint_workspace/tmindex.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telemetry | 10 | 10 | 0 | 0 | 0 | no | -| /docs/telescope/requests | 120 | 120 | 0 | 0 | 0 | no | -| /docs/test.php | 40 | 40 | 0 | 0 | 0 | no | +| /docs/self-hosted/deploy/without-service-discovery | 0 | 0 | 0 | 0 | 20 | yes | +| /docs/self-hosted/email | 30 | 30 | 0 | 0 | 0 | yes | +| /docs/self-hosted/executors/executors-config | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/self-hosted/updates | 40 | 0 | 0 | 0 | 0 | yes | +| /docs/sssiedn304c0d66pp70617468xsx | 0 | 0 | 0 | 20 | 0 | no | +| /docs/technical-changelog | 10 | 10 | 0 | 0 | 0 | yes | | /docs/TLS.md | 0 | 0 | 0 | 10 | 0 | no | -| /docs/tmp/scripts | 30 | 30 | 0 | 0 | 0 | no | -| /docs/tour | 10 | 10 | 0 | 0 | 0 | no | -| /docs/trace.axd | 120 | 120 | 0 | 0 | 0 | no | | /docs/troubleshooting.md | 0 | 0 | 0 | 20 | 0 | no | | /docs/Troubleshooting.md | 0 | 0 | 0 | 30 | 0 | no | -| /docs/tutorials | 340 | 330 | 0 | 0 | 0 | yes | -| /docs/tutorials/code_navigation/explanations/introduction_to_code_navigationsearch_contexts | 20 | 20 | 0 | 0 | 0 | no | -| /docs/tutorials/epa/epa.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/tutorials/vpn/index.html | 20 | 20 | 0 | 0 | 0 | no | -| /docs/user/campaigns/explanations/permissions_in_campaigns | 60 | 60 | 0 | 0 | 0 | no | -| /docs/user/code_intelligence/explanations/search_based_code_intelligence | 20 | 20 | 0 | 0 | 0 | no | -| /docs/user/code_intelligence/lsif_in_ci | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/login | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/repo | 10 | 10 | 0 | 0 | 0 | no | -| /docs/user/tour | 30 | 30 | 0 | 0 | 0 | no | -| /docs/v1/graphql | 20 | 20 | 0 | 0 | 0 | no | -| /docs/workspace | 120 | 120 | 0 | 0 | 0 | no | | /docs/xscanzspiimtq/references/repository-scope.md | 0 | 0 | 0 | 170 | 0 | no | -| /docs/xtf/resources.html | 10 | 10 | 0 | 0 | 0 | no | -| /docs/z9x8c7v6b5-debug-trigger-docs.sourcegraph.com | 360 | 360 | 0 | 0 | 0 | no | -| /docs/zoekt/architecture | 10 | 10 | 0 | 0 | 0 | no | diff --git a/viewership-metrics/reports/redirect-rules.md b/viewership-metrics/reports/redirect-rules.md index f122f57a4..601a75319 100644 --- a/viewership-metrics/reports/redirect-rules.md +++ b/viewership-metrics/reports/redirect-rules.md @@ -1,28 +1,28 @@ # Redirect rules by hits (last 90 days) -- Window: 2026-06-11T09:00:00.000Z to 2026-09-09T08:00:00.000Z (UTC) +- Window: 2026-06-12T06:00:00.000Z to 2026-09-10T05:00:00.000Z (UTC) - Host: sourcegraph.com; paths: /docs, /changelog, /blog -- Filters: Bot Management likely_human; excluding ASN Hetzner Online GmbH; excluding countries CN -- Rules: 1324 in src/data/redirects.ts; 962 live, 362 shadowed by an earlier rule with the same source (never match), 689 live with zero hits -- Hits: 35740 redirects matched a rule, of 41820 redirects on /docs paths (the rest are version and other redirects) +- Filters: Bot Management likely_human; GET; excluding ASN Hetzner Online GmbH; excluding countries CN. Requests and Visits also require JS detection passed, which excludes the first page of each visit. +- Rules: 1324 in src/data/redirects.ts; 962 live, 362 shadowed by an earlier rule with the same source (never match), 691 live with zero hits +- Hits: 35490 redirects matched a rule, of 41570 redirects on /docs paths (the rest are version and other redirects) - Hits count 3xx responses on /docs with the same filters as the page views reports; adaptive-sampled estimates. - Chains: 269 live rules redirect to another rule's source, so the browser follows more redirects (longest chain: 5 more). Chain shows the extra hops and where the user ends up. -- Sitemap: whether the rule's destination is in https://sourcegraph.com/sitemap.xml (blank when it leaves the site). 512 live rules point at an unlisted page, 12100 hits; unless Chain shows a further redirect, on /docs that is likely a soft 404. +- Sitemap: whether the rule's destination is in https://sourcegraph.com/sitemap.xml (blank when it leaves the site). 512 live rules point at an unlisted page, 12190 hits; unless Chain shows a further redirect, on /docs that is likely a soft 404. | Line | Source | Destination | Hits | Chain | Sitemap | | ---: | --- | --- | ---: | --- | --- | | 4745 | /code-search/code-navigation/precise_code_navigation | /code-navigation/precise_code_navigation | 2060 | 1 more β†’ /code-navigation/precise-code-navigation | no | -| 5585 | /code-navigation/precise_code_navigation | /code-navigation/precise-code-navigation | 1980 | | yes | -| 2193 | /code_navigation/explanations/precise_code_navigation | /code-search/code-navigation/precise_code_navigation | 1470 | 2 more β†’ /code-navigation/precise-code-navigation | no | +| 5585 | /code-navigation/precise_code_navigation | /code-navigation/precise-code-navigation | 1920 | | yes | +| 2193 | /code_navigation/explanations/precise_code_navigation | /code-search/code-navigation/precise_code_navigation | 1550 | 2 more β†’ /code-navigation/precise-code-navigation | no | | 1952 | /code_search/reference/language | /code-search/queries/language | 1200 | | yes | -| 1942 | /code_search/reference/queries | /code-search/queries | 1120 | | yes | -| 4485 | /pricing | https://sourcegraph.com/pricing | 850 | | yes | +| 1942 | /code_search/reference/queries | /code-search/queries | 1020 | | yes | +| 4485 | /pricing | https://sourcegraph.com/pricing | 830 | | yes | | 4873 | /admin/deploy/kubernetes | /self-hosted/deploy/kubernetes | 710 | | yes | -| 4769 | /code-search/code-navigation/writing_an_indexer | /code-navigation/writing_an_indexer | 630 | 1 more β†’ /code-navigation/writing-an-indexer | no | -| 5597 | /code-navigation/writing_an_indexer | /code-navigation/writing-an-indexer | 620 | | yes | -| 1290 | /code_intelligence | /code_navigation | 590 | 2 more β†’ /code-navigation | no | -| 1958 | /code_navigation | /code-search/code-navigation | 590 | 1 more β†’ /code-navigation | no | -| 4737 | /code-search/code-navigation | /code-navigation | 570 | | yes | +| 5597 | /code-navigation/writing_an_indexer | /code-navigation/writing-an-indexer | 590 | | yes | +| 1958 | /code_navigation | /code-search/code-navigation | 580 | 1 more β†’ /code-navigation | no | +| 4737 | /code-search/code-navigation | /code-navigation | 580 | | yes | +| 4769 | /code-search/code-navigation/writing_an_indexer | /code-navigation/writing_an_indexer | 580 | 1 more β†’ /code-navigation/writing-an-indexer | no | +| 1290 | /code_intelligence | /code_navigation | 550 | 2 more β†’ /code-navigation | no | | 4473 | /cody/capabilities/commands | /cody/capabilities/prompts | 500 | | yes | | 4519 | /pricing/plans | https://sourcegraph.com/pricing | 500 | | yes | | 4682 | /code-search/code-navigation/auto_indexing | /code-navigation/auto_indexing | 490 | 1 more β†’ /code-navigation/auto-indexing | no | @@ -30,60 +30,60 @@ | 2430 | /code_navigation/references/indexers | /code-search/code-navigation/writing_an_indexer#sourcegraph-recommended-indexers | 450 | 2 more β†’ /code-navigation/writing-an-indexer | no | | 2496 | /batch_changes | /batch-changes | 440 | | yes | | 5313 | /admin/code_hosts/github | /admin/code-hosts/github | 440 | | yes | -| 5824 | /admin/config | /admin | 440 | | yes | +| 5824 | /admin/config | /admin | 430 | | yes | | 4609 | /code-search/types/deep-search | /deep-search | 410 | | yes | | 1869 | /code_search | /code-search | 400 | | yes | -| 5542 | /code-navigation/auto_indexing | /code-navigation/auto-indexing | 400 | | yes | -| 5828 | /admin/repo/permissions | /admin/permissions | 370 | | yes | +| 5542 | /code-navigation/auto_indexing | /code-navigation/auto-indexing | 390 | | yes | +| 5828 | /admin/repo/permissions | /admin/permissions | 380 | | yes | | 714 | /admin/analytics | /analytics | 360 | | yes | | 1128 | /code_intelligence/explanations/precise_code_intelligence | /code_navigation/explanations/precise_code_navigation | 330 | 3 more β†’ /code-navigation/precise-code-navigation | no | | 1376 | /cody/overview | /cody/ | 330 | | yes | | 5200 | /admin/updates | /self-hosted/updates | 330 | | yes | -| 4853 | /admin/deploy | /self-hosted/deploy | 320 | | yes | +| 4853 | /admin/deploy | /self-hosted/deploy | 310 | | yes | | 5150 | /admin/observability/troubleshooting | /self-hosted/observability/troubleshooting | 310 | | yes | | 999 | /admin/install/kubernetes | /admin/deploy/kubernetes | 290 | 1 more β†’ /self-hosted/deploy/kubernetes | no | | 1115 | /code_intelligence/explanations/auto_indexing | /code_navigation/explanations/auto_indexing | 290 | 3 more β†’ /code-navigation/auto-indexing | no | | 4821 | /admin/deploy/docker-compose | /self-hosted/deploy/docker-compose | 290 | | yes | -| 4849 | /admin/deploy/docker-single-container | /self-hosted/deploy | 280 | | yes | +| 4719 | /code-search/code-navigation/how-to/index_a_go_repository | /code-navigation/how-to/index_a_go_repository | 270 | 1 more β†’ /code-navigation/how-to/index-a-go-repository | no | | 1107 | /code_intelligence/explanations/writing_an_indexer | /code_navigation/explanations/writing_an_indexer | 260 | 3 more β†’ /code-navigation/writing-an-indexer | no | | 1071 | /admin/install/docker | /self-hosted/deploy | 250 | | yes | | 1862 | /cody/custom-commands | /cody/capabilities/commands#custom-commands | 250 | 1 more β†’ /cody/capabilities/prompts | no | | 2360 | /code_navigation/explanations/auto_indexing | /code-search/code-navigation/auto_indexing | 250 | 2 more β†’ /code-navigation/auto-indexing | no | -| 4719 | /code-search/code-navigation/how-to/index_a_go_repository | /code-navigation/how-to/index_a_go_repository | 240 | 1 more β†’ /code-navigation/how-to/index-a-go-repository | no | +| 4849 | /admin/deploy/docker-single-container | /self-hosted/deploy | 240 | | yes | | 5305 | /admin/code_hosts/bitbucket_server | /admin/code-hosts/bitbucket-server | 240 | | yes | | 5758 | /self-hosted/how-to/dirty_database | /self-hosted/how-to/dirty-database | 230 | | yes | | 2531 | /batch_changes/explanations/how_src_executes_a_batch_spec | /batch-changes/how-src-executes-a-batch-spec | 220 | | yes | | 4552 | /cody/capabilities/agentic-chat | /cody/capabilities/agentic-context-fetching | 220 | | yes | | 4658 | /admin/access_control/service_accounts | /admin/service_accounts | 200 | 1 more β†’ /admin/service-accounts | no | | 4723 | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | /code-navigation/how-to/index_a_typescript_and_javascript_repository | 200 | 1 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | -| 4865 | /admin/deploy/kubernetes/configure | /self-hosted/deploy/kubernetes/configure | 200 | | yes | | 4937 | /admin/deploy/resource_estimator | /self-hosted/deploy/resource_estimator | 200 | 1 more β†’ /self-hosted/deploy/resource-estimator | no | | 5409 | /cli/how-tos/creating_an_access_token | /cli/how-tos/creating-an-access-token | 200 | | yes | +| 5609 | /code-search/working/search_contexts | /code-search/working/search-contexts | 200 | | yes | +| 1195 | /code_intelligence/how-to/index_a_cpp_repository | https://sourcegraph.com/github.com/sourcegraph/scip-clang/-/blob/README.md#usage | 180 | | no | | 2657 | /batch_changes/references/batch_spec_yaml_reference | /batch-changes/batch-spec-yaml-reference | 180 | | yes | | 4702 | /code-search/code-navigation/features | /code-navigation/features | 180 | | yes | -| 5609 | /code-search/working/search_contexts | /code-search/working/search-contexts | 180 | | yes | +| 4865 | /admin/deploy/kubernetes/configure | /self-hosted/deploy/kubernetes/configure | 180 | | yes | | 5122 | /admin/observability/dashboards | /self-hosted/observability/dashboards | 170 | | yes | | 5353 | /admin/config/site_config | /admin/config/site-config | 170 | | yes | | 5405 | /api/stream_api | /api/stream-api | 170 | | yes | | 979 | /admin/install | /admin/deploy | 160 | 1 more β†’ /self-hosted/deploy | no | | 5037 | /admin/how-to/dirty_database | /self-hosted/how-to/dirty_database | 160 | 1 more β†’ /self-hosted/how-to/dirty-database | no | | 2011 | /code_navigation/how-to/index_a_typescript_and_javascript_repository | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | 150 | 2 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | -| 5538 | /code_monitoring | /code-monitoring | 150 | | yes | | 5873 | /own/codeowners-format | /code-ownership/codeowners-format | 150 | | yes | | 2324 | /code_navigation/explanations/writing_an_indexer | /code-search/code-navigation/writing_an_indexer#writing-an-indexer | 140 | 2 more β†’ /code-navigation/writing-an-indexer | no | +| 5538 | /code_monitoring | /code-monitoring | 140 | | yes | | 838 | /campaigns/references/campaign_spec_yaml_reference | /batch_changes/references/batch_spec_yaml_reference | 130 | 1 more β†’ /batch-changes/batch-spec-yaml-reference | no | +| 4467 | /cody/clients/model-configuration | /cody/enterprise/model-configuration | 130 | | yes | | 5154 | /admin/config/postgres-conf | /self-hosted/postgres-conf | 130 | | yes | | 5522 | /code_insights/references/common_use_cases | /code-insights/references/common-use-cases | 130 | | yes | -| 5877 | /api/graphql/examples | /api/graphql | 130 | | yes | | 931 | /campaigns | /batch_changes | 120 | 1 more β†’ /batch-changes | no | -| 1195 | /code_intelligence/how-to/index_a_cpp_repository | https://sourcegraph.com/github.com/sourcegraph/scip-clang/-/blob/README.md#usage | 120 | | no | | 2850 | /batch_changes/references/faq | /batch-changes/faq | 120 | | yes | -| 4467 | /cody/clients/model-configuration | /cody/enterprise/model-configuration | 120 | | yes | | 4662 | /cody/core-concepts/cody-gateway | /model-provider | 120 | | yes | | 5146 | /admin/observability/tracing | /self-hosted/observability/tracing | 120 | | yes | | 5162 | /admin/postgres12_end_of_life_notice | /self-hosted/postgres12_end_of_life_notice | 120 | 1 more β†’ /self-hosted/postgres12-end-of-life-notice | no | | 5484 | /code_insights/explanations/data_retention | /code-insights/explanations/data-retention | 120 | | yes | | 5686 | /self-hosted/deploy/resource_estimator | /self-hosted/deploy/resource-estimator | 120 | | yes | +| 5877 | /api/graphql/examples | /api/graphql | 120 | | yes | | 4825 | /admin/deploy/docker-compose/migrate | /self-hosted/deploy/docker-compose/migrate | 110 | | yes | | 5130 | /admin/observability | /self-hosted/observability | 110 | | yes | | 5369 | /admin/how-to/lsif_scip_migration | /admin/how-to/lsif-scip-migration | 110 | | yes | @@ -106,6 +106,7 @@ | 5216 | /admin/updates/migrator/migrator-operations | /self-hosted/updates/migrator/migrator-operations | 90 | | yes | | 5285 | /admin/beta_and_experimental_features | /beta-and-experimental | 90 | | yes | | 5393 | /admin/service_accounts | /admin/service-accounts | 90 | | yes | +| 5453 | /code_insights | /code-insights | 90 | | yes | | 5633 | /integration/bitbucket_server | /integration/bitbucket-server | 90 | | yes | | 742 | /user | /getting-started | 80 | | yes | | 1200 | /code_intelligence/how-to/index_a_go_repository | /code_navigation/how-to/index_a_go_repository | 80 | 3 more β†’ /code-navigation/how-to/index-a-go-repository | no | @@ -114,7 +115,6 @@ | 5094 | /admin/how-to/upgrade-postgres-12-16-builtin-dbs | /self-hosted/how-to/upgrade-postgres-12-16-builtin-dbs | 80 | | yes | | 5204 | /admin/updates/kubernetes | https://sourcegraph.com/changelog/self-hosted/kubernetes | 80 | | yes | | 5385 | /admin/repo/update_frequency | /admin/repo/update-frequency | 80 | | yes | -| 5453 | /code_insights | /code-insights | 80 | | yes | | 5662 | /own/codeowners_format | /own/codeowners-format | 80 | 1 more β†’ /code-ownership/codeowners-format | no | | 5742 | /self-hosted/external_services/object_storage | /self-hosted/external-services/object-storage | 80 | | yes | | 2539 | /batch_changes/explanations/server_side | /batch-changes/server-side | 70 | | yes | @@ -136,12 +136,12 @@ | 5349 | /admin/config/batch_changes | /admin/config/batch-changes | 60 | | yes | | 5641 | /integration/browser_extension/how-tos/browser_search_engine | /integration/browser-extension/how-tos/browser-search-engine | 60 | | yes | | 5666 | /own/codeowners_ingestion | /own/codeowners-ingestion | 60 | 1 more β†’ /code-ownership | no | -| 5722 | /self-hosted/executors/deploy_executors_kubernetes | /self-hosted/executors/deploy-executors-kubernetes | 60 | | yes | | 5798 | /self-hosted/postgres12_end_of_life_notice | /self-hosted/postgres12-end-of-life-notice | 60 | | yes | | 5857 | /own | /code-ownership | 60 | | yes | | 5881 | /api/graphql/search | /api/stream-api | 60 | | yes | | 1204 | /code_intelligence/how-to/index_a_typescript_and_javascript_repository | /code_navigation/how-to/index_a_typescript_and_javascript_repository | 50 | 3 more β†’ /code-navigation/how-to/index-a-typescript-and-javascript-repository | no | | 1892 | /code_search/how-to/saved_searches | /code-search/working/saved_searches | 50 | 1 more β†’ /code-search/working/saved-searches | no | +| 2508 | /batch_changes/explanations/introduction_to_batch_changes | /batch-changes/ | 50 | | yes | | 2648 | /batch_changes/references/requirements | /batch-changes/requirements | 50 | | yes | | 2828 | /batch_changes/references/batch_spec_templating | /batch-changes/batch-spec-templating | 50 | | yes | | 4642 | /code_monitoring/how-tos/starting_points | /code_monitoring | 50 | 1 more β†’ /code-monitoring | no | @@ -152,7 +152,6 @@ | 5317 | /admin/code_hosts/gitlab | /admin/code-hosts/gitlab | 50 | | yes | | 5457 | /code_insights/quickstart | /code-insights/quickstart | 50 | | yes | | 5479 | /code_insights/explanations/current_limitations_of_code_insights | /code-insights/explanations/current-limitations-of-code-insights | 50 | | yes | -| 5526 | /code_insights/references/incomplete_data_points | /code-insights/references/incomplete-data-points | 50 | | yes | | 5738 | /self-hosted/external_services | /self-hosted/external-services | 50 | | yes | | 5750 | /self-hosted/how-to/blobstore_update_notes | /self-hosted/how-to/blobstore-update-notes | 50 | | yes | | 5762 | /self-hosted/how-to/dirty_database_pre_3_37 | /self-hosted/how-to/dirty-database-pre-3-37 | 50 | | yes | @@ -164,6 +163,7 @@ | 4505 | /pricing/plan-comparison | https://sourcegraph.com/pricing | 40 | | yes | | 4535 | /cody/embedded-repos | /cody | 40 | | yes | | 4728 | /code-search/code-navigation/how-to/index_other_languages | /code-navigation/how-to/index_other_languages | 40 | 1 more β†’ /code-navigation/how-to/index-other-languages | no | +| 4732 | /code-search/code-navigation/how-to/policies_resource_usage_best_practices | /code-navigation/how-to/policies_resource_usage_best_practices | 40 | 1 more β†’ /code-navigation/how-to/policies-resource-usage-best-practices | no | | 4753 | /code-search/code-navigation/rockskip | /code-navigation/rockskip | 40 | | yes | | 4785 | /admin/config/webhooks/incoming | /admin/webhooks/incoming | 40 | | yes | | 4929 | /admin/deploy/migrate-backup | /self-hosted/deploy/migrate-backup | 40 | | yes | @@ -183,9 +183,7 @@ | 1907 | /code_search/how-to/exhaustive | /code-search/types/exhaustive | 30 | | no | | 1932 | /code_search/explanations/search_details | /code-search/features | 30 | | yes | | 2183 | /code_navigation/explanations/introduction_to_code_navigation | /code-search/code-navigation | 30 | 1 more β†’ /code-navigation | no | -| 2508 | /batch_changes/explanations/introduction_to_batch_changes | /batch-changes/ | 30 | | yes | | 2543 | /batch_changes/tutorials | /batch-changes/examples | 30 | | yes | -| 2837 | /batch_changes/references/batch_spec_cheat_sheet | /batch-changes/batch-spec-cheat-sheet | 30 | | yes | | 4515 | /admin/pricing | https://sourcegraph.com/pricing | 30 | | yes | | 4670 | /how-to-videos | /tutorials | 30 | | yes | | 4674 | /how-to-videos/code-search | /tutorials#code-search-how-to-videos | 30 | | yes | @@ -199,10 +197,12 @@ | 5110 | /admin/observability/alerting | /self-hosted/observability/alerting | 30 | | yes | | 5257 | /admin/access_control/batch_changes | /admin/access-control/batch-changes | 30 | | yes | | 5475 | /code_insights/explanations/code_insights_filters | /code-insights/explanations/code-insights-filters | 30 | | yes | +| 5526 | /code_insights/references/incomplete_data_points | /code-insights/references/incomplete-data-points | 30 | | yes | | 5554 | /code-navigation/how-to/adding_scip_to_workflows | /code-navigation/how-to/adding-scip-to-workflows | 30 | | yes | | 5581 | /code-navigation/inference_configuration | /code-navigation/inference-configuration | 30 | | yes | | 5605 | /code-search/working/saved_searches | /code-search/working/saved-searches | 30 | | yes | | 5646 | /integration/browser_extension/how-tos/google_workspace | /integration/browser-extension/how-tos/google-workspace | 30 | | yes | +| 5722 | /self-hosted/executors/deploy_executors_kubernetes | /self-hosted/executors/deploy-executors-kubernetes | 30 | | yes | | 5816 | /self-hosted/updates/pure-docker | /self-hosted/deploy/docker-compose/upgrade | 30 | | yes | | 5843 | /self-hosted/updates/docker-compose | https://sourcegraph.com/changelog/self-hosted/docker-compose | 30 | | yes | | 5861 | /own/assigned-ownership | /code-ownership | 30 | | yes | @@ -220,20 +220,18 @@ | 1145 | /code_intelligence/explanations | /code_navigation/explanations | 20 | | no | | 1209 | /code_intelligence/how-to/index_other_languages | /code_navigation/how-to/index_other_languages | 20 | | no | | 1554 | /cody/core-concepts/embeddings/configure-embeddings | /cody/embeddings/configure-embeddings | 20 | | no | +| 1824 | /cody/explanations/cody_gateway | /cody/core-concepts/cody_gateway | 20 | 2 more β†’ /model-provider | no | | 1873 | /code_search/tutorials | /code-search/working/saved_searches | 20 | 1 more β†’ /code-search/working/saved-searches | no | | 1963 | /code_navigation/how-to/configure_data_retention | /code-search/code-navigation/auto_indexing#configure-auto-indexing-policies | 20 | 2 more β†’ /code-navigation/auto-indexing | no | | 1975 | /code_navigation/how-to/index_a_go_repository | /code-search/code-navigation/how-to/index_a_go_repository | 20 | 2 more β†’ /code-navigation/how-to/index-a-go-repository | no | | 2046 | /code_navigation/how-to/adding_lsif_to_workflows | /code-search/code-navigation/how-to/adding_lsif_to_workflows | 20 | | no | | 2204 | /code_navigation/explanations/uploads | /code-search/code-navigation/explanations/uploads | 20 | 1 more β†’ /code-navigation/explanations/uploads | no | | 2442 | /code_navigation/references/precise_examples | /code-search/code-navigation/precise_code_navigation#precise-navigation-examples | 20 | 2 more β†’ /code-navigation/precise-code-navigation | no | -| 2500 | /batch_changes/quickstart | /batch-changes/quickstart | 20 | | yes | | 2567 | /batch_changes/how-tos/publishing_changesets | /batch-changes/publishing-changesets | 20 | | yes | | 2846 | /batch_changes/references/troubleshooting | /batch-changes/troubleshooting | 20 | | yes | | 4493 | /pricing/plans/free | https://sourcegraph.com/pricing | 20 | | yes | | 4497 | /pricing/enterprise-starter | /pricing/plans/enterprise-starter | 20 | | yes | | 4605 | /analytics/cloud | /analytics | 20 | | yes | -| 4622 | /code_monitoring/explanations/best_practices | /code_monitoring | 20 | 1 more β†’ /code-monitoring | no | -| 4732 | /code-search/code-navigation/how-to/policies_resource_usage_best_practices | /code-navigation/how-to/policies_resource_usage_best_practices | 20 | 1 more β†’ /code-navigation/how-to/policies-resource-usage-best-practices | no | | 4801 | /admin/deploy/docker-compose/aws | /self-hosted/deploy/docker-compose/aws | 20 | | yes | | 5013 | /admin/external_services/object_storage | /self-hosted/external_services/object_storage | 20 | 1 more β†’ /self-hosted/external-services/object-storage | no | | 5041 | /admin/how-to/dirty_database_pre_3_37 | /self-hosted/how-to/dirty_database_pre_3_37 | 20 | 1 more β†’ /self-hosted/how-to/dirty-database-pre-3-37 | no | @@ -643,7 +641,6 @@ | 1805 | /cody/core-concepts/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | /cody/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | 0 | | no | | 1810 | /cody/explanations/schedule_one_off_embeddings_jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | 0 | | no | | 1815 | /cody/core-concepts/embeddings/configure-embeddings#schedule-embeddings-jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | 0 | | no | -| 1824 | /cody/explanations/cody_gateway | /cody/core-concepts/cody_gateway | 0 | 2 more β†’ /model-provider | no | | 1832 | /cody/core-concepts/cody_clients | /cody/clients | 0 | | yes | | 1836 | /cody/overview#getting-started | /cody/clients | 0 | | yes | | 1844 | /cody/core-concepts/cody_gateway#using-cody-gateway-in-sourcegraph-enterprise | /cody/core-concepts/cody-gateway#using-cody-gateway-in-sourcegraph-enterprise | 0 | 1 more β†’ /model-provider | no | @@ -739,6 +736,7 @@ | 2480 | /code_navigation/references/auto_indexing_configuration#index-job-object | /code-search/code-navigation/auto_indexing_configuration#index-job-object | 0 | 2 more β†’ /code-navigation/auto-indexing-configuration | no | | 2486 | /code_navigation/references/auto_indexing_configuration#docker-step-object | /code-search/code-navigation/auto_indexing_configuration#docker-step-object | 0 | 2 more β†’ /code-navigation/auto-indexing-configuration | no | | 2492 | /code_navigation/references/inference_configuration | /code-search/code-navigation/inference_configuration | 0 | 2 more β†’ /code-navigation/inference-configuration | no | +| 2500 | /batch_changes/quickstart | /batch-changes/quickstart | 0 | | yes | | 2504 | /batch_changes/explanations | /batch-changes/ | 0 | | yes | | 2512 | /batch_changes/explanations/permissions_in_batch_changes#code-host-interactions-in-batch-changes | /batch-changes/permissions-in-batch-changes#code-host-interactions-in-batch-changes | 0 | | yes | | 2517 | /batch_changes/explanations/permissions_in_batch_changes#repository-permissions-for-batch-changes | /batch-changes/permissions-in-batch-changes#repository-permissions-for-batch-changes | 0 | | yes | @@ -801,6 +799,7 @@ | 2819 | /batch_changes/references/batch_spec_yaml_reference#workspacesin | /batch-changes/batch-spec-yaml-reference#workspacesin | 0 | | yes | | 2823 | /batch_changes/references/batch_spec_yaml_reference#workspacesonlyfetchworkspace | /batch-changes/batch-spec-yaml-reference#workspacesonlyfetchworkspace | 0 | | yes | | 2832 | /batch_changes/references/batch_spec_templating#fields-with-template-support | /batch-changes/batch-spec-templating#fields-with-template-support | 0 | | yes | +| 2837 | /batch_changes/references/batch_spec_cheat_sheet | /batch-changes/batch-spec-cheat-sheet | 0 | | yes | | 2841 | /batch_changes/references/batch_spec_cheat_sheet#write-a-github-actions-workflow-that-includes-github-expression-syntax | /batch-changes/batch-spec-cheat-sheet#write-a-github-actions-workflow-that-includes-github-expression-syntax | 0 | | yes | | 2862 | /admin/code_hosts/bitbucketserver | /integration/bitbucket_server | 0 | 1 more β†’ /integration/bitbucket-server | no | | 3606 | /cody/clients/enable-cody-enterprise#using-a-third-party-llm-provider | /cody/clients/enable-cody-enterprise#supported-models-and-model-providers | 0 | | yes | @@ -821,6 +820,7 @@ | 4593 | /analytics/cloud#token-revocation | /analytics/api#token-revocation | 0 | | yes | | 4597 | /analytics/cloud#api-reference | /analytics/api#api-reference | 0 | | yes | | 4601 | /analytics/cloud#csv-export | /analytics/api#csv-export | 0 | | yes | +| 4622 | /code_monitoring/explanations/best_practices | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | | 4626 | /code_monitoring/explanations/core_concepts | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | | 4630 | /code_monitoring/explanations | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | | 4638 | /code_monitoring/how-tos/slack | /code_monitoring | 0 | 1 more β†’ /code-monitoring | no | @@ -976,8 +976,8 @@ | 4164 | /code_navigation/explanations/precise_code_navigation | /code-search/code-navigation/precise_code_navigation | shadowed by line 2193 | | no | | 4048 | /code_search/reference/language | /code-search/queries/language | shadowed by line 1952 | | yes | | 4038 | /code_search/reference/queries | /code-search/queries | shadowed by line 1942 | | yes | -| 3396 | /code_intelligence | /code_navigation | shadowed by line 1290 | | no | | 4054 | /code_navigation | /code-search/code-navigation | shadowed by line 1958 | | no | +| 3396 | /code_intelligence | /code_navigation | shadowed by line 1290 | | no | | 4400 | /code_navigation/references/indexers | /code-search/code-navigation/writing_an_indexer#sourcegraph-recommended-indexers | shadowed by line 2430 | | no | | 3970 | /code_search | /code-search | shadowed by line 1869 | | yes | | 3234 | /code_intelligence/explanations/precise_code_intelligence | /code_navigation/explanations/precise_code_navigation | shadowed by line 1128 | | no | @@ -988,12 +988,12 @@ | 3177 | /admin/install/docker | /self-hosted/deploy | shadowed by line 1071 | | yes | | 3963 | /cody/custom-commands | /cody/capabilities/commands#custom-commands | shadowed by line 1862 | | no | | 4330 | /code_navigation/explanations/auto_indexing | /code-search/code-navigation/auto_indexing | shadowed by line 2360 | | no | +| 3301 | /code_intelligence/how-to/index_a_cpp_repository | https://sourcegraph.com/github.com/sourcegraph/scip-clang/-/blob/README.md#usage | shadowed by line 1195 | | no | | 3085 | /admin/install | /admin/deploy | shadowed by line 979 | | no | | 4107 | /code_navigation/how-to/index_a_typescript_and_javascript_repository | /code-search/code-navigation/how-to/index_a_typescript_and_javascript_repository | shadowed by line 2011 | | no | | 4294 | /code_navigation/explanations/writing_an_indexer | /code-search/code-navigation/writing_an_indexer#writing-an-indexer | shadowed by line 2324 | | no | | 2944 | /campaigns/references/campaign_spec_yaml_reference | /batch_changes/references/batch_spec_yaml_reference | shadowed by line 838 | | no | | 3037 | /campaigns | /batch_changes | shadowed by line 931 | | no | -| 3301 | /code_intelligence/how-to/index_a_cpp_repository | https://sourcegraph.com/github.com/sourcegraph/scip-clang/-/blob/README.md#usage | shadowed by line 1195 | | no | | 3494 | /cody/overview/install-neovim | /cody/clients/install-neovim | shadowed by line 1388 | | yes | | 3306 | /code_intelligence/how-to/index_a_go_repository | /code_navigation/how-to/index_a_go_repository | shadowed by line 1200 | | no | | 3113 | /admin/install/kubernetes/operations | /admin/deploy/kubernetes/operations | shadowed by line 1007 | | no | @@ -1023,6 +1023,7 @@ | 3251 | /code_intelligence/explanations | /code_navigation/explanations | shadowed by line 1145 | | no | | 3315 | /code_intelligence/how-to/index_other_languages | /code_navigation/how-to/index_other_languages | shadowed by line 1209 | | no | | 3655 | /cody/core-concepts/embeddings/configure-embeddings | /cody/embeddings/configure-embeddings | shadowed by line 1554 | | no | +| 3925 | /cody/explanations/cody_gateway | /cody/core-concepts/cody_gateway | shadowed by line 1824 | | no | | 3974 | /code_search/tutorials | /code-search/working/saved_searches | shadowed by line 1873 | | no | | 4059 | /code_navigation/how-to/configure_data_retention | /code-search/code-navigation/auto_indexing#configure-auto-indexing-policies | shadowed by line 1963 | | no | | 4071 | /code_navigation/how-to/index_a_go_repository | /code-search/code-navigation/how-to/index_a_go_repository | shadowed by line 1975 | | no | @@ -1261,7 +1262,6 @@ | 3906 | /cody/core-concepts/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | /cody/embeddings/configure-embeddings#lifecycle-of-an-embeddings-policy | shadowed by line 1805 | | no | | 3911 | /cody/explanations/schedule_one_off_embeddings_jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | shadowed by line 1810 | | no | | 3916 | /cody/core-concepts/embeddings/configure-embeddings#schedule-embeddings-jobs | /cody/embeddings/configure-embeddings#schedule-embeddings-jobs | shadowed by line 1815 | | no | -| 3925 | /cody/explanations/cody_gateway | /cody/core-concepts/cody_gateway | shadowed by line 1824 | | no | | 3933 | /cody/core-concepts/cody_clients | /cody/clients | shadowed by line 1832 | | yes | | 3937 | /cody/overview#getting-started | /cody/clients | shadowed by line 1836 | | yes | | 3945 | /cody/core-concepts/cody_gateway#using-cody-gateway-in-sourcegraph-enterprise | /cody/core-concepts/cody-gateway#using-cody-gateway-in-sourcegraph-enterprise | shadowed by line 1844 | | no | From 3d99d0866e04fcb24eb3316d665de6e68c597f50 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Fri, 11 Sep 2026 11:12:59 -0600 Subject: [PATCH 16/16] Move traffic reports to reports/traffic Script, README and committed report outputs live in one directory, alongside reports/branches. --- package.json | 2 +- {viewership-metrics => reports/traffic}/README.md | 4 ++-- .../reports => reports/traffic}/page-views-by-count.md | 0 .../reports => reports/traffic}/page-views-by-errors.md | 0 .../reports => reports/traffic}/page-views-by-path.md | 0 .../reports => reports/traffic}/page-views-by-redirects.md | 0 .../traffic}/page-views-report.mjs | 6 +++--- .../reports => reports/traffic}/redirect-rules.md | 0 8 files changed, 6 insertions(+), 6 deletions(-) rename {viewership-metrics => reports/traffic}/README.md (98%) rename {viewership-metrics/reports => reports/traffic}/page-views-by-count.md (100%) rename {viewership-metrics/reports => reports/traffic}/page-views-by-errors.md (100%) rename {viewership-metrics/reports => reports/traffic}/page-views-by-path.md (100%) rename {viewership-metrics/reports => reports/traffic}/page-views-by-redirects.md (100%) rename {viewership-metrics => reports/traffic}/page-views-report.mjs (99%) rename {viewership-metrics/reports => reports/traffic}/redirect-rules.md (100%) diff --git a/package.json b/package.json index 44dbcc0c2..6fdeab2c8 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "check-links": "node dev/check-links.mjs", "check-filenames": "node dev/check-filenames.mjs", "check-images": "node dev/check-images.mjs", - "page-views-report": "node viewership-metrics/page-views-report.mjs", + "page-views-report": "node reports/traffic/page-views-report.mjs", "generate-mermaid-logos": "node dev/generate-aws-icons.mjs", "baseai": "baseai", "sync": "npx baseai@latest deploy -m memory-sg-docs-live", diff --git a/viewership-metrics/README.md b/reports/traffic/README.md similarity index 98% rename from viewership-metrics/README.md rename to reports/traffic/README.md index 6e1b10e6b..ad6a9c3e1 100644 --- a/viewership-metrics/README.md +++ b/reports/traffic/README.md @@ -1,4 +1,4 @@ -# Viewership metrics +# Traffic reports Page view, redirect and error counts for `/docs`, `/changelog` and `/blog` on sourcegraph.com, from Cloudflare's GraphQL Analytics API. @@ -17,7 +17,7 @@ Cloudflare keeps 90 days of history, so `--days` maxes out at 90. ## Reports -Written to `reports/` (gitignored). Every page report has the same rows, +Written to this directory and committed. Every page report has the same rows, sorted differently: | File | Sorted by | diff --git a/viewership-metrics/reports/page-views-by-count.md b/reports/traffic/page-views-by-count.md similarity index 100% rename from viewership-metrics/reports/page-views-by-count.md rename to reports/traffic/page-views-by-count.md diff --git a/viewership-metrics/reports/page-views-by-errors.md b/reports/traffic/page-views-by-errors.md similarity index 100% rename from viewership-metrics/reports/page-views-by-errors.md rename to reports/traffic/page-views-by-errors.md diff --git a/viewership-metrics/reports/page-views-by-path.md b/reports/traffic/page-views-by-path.md similarity index 100% rename from viewership-metrics/reports/page-views-by-path.md rename to reports/traffic/page-views-by-path.md diff --git a/viewership-metrics/reports/page-views-by-redirects.md b/reports/traffic/page-views-by-redirects.md similarity index 100% rename from viewership-metrics/reports/page-views-by-redirects.md rename to reports/traffic/page-views-by-redirects.md diff --git a/viewership-metrics/page-views-report.mjs b/reports/traffic/page-views-report.mjs similarity index 99% rename from viewership-metrics/page-views-report.mjs rename to reports/traffic/page-views-report.mjs index 0a6ace82c..af063c439 100644 --- a/viewership-metrics/page-views-report.mjs +++ b/reports/traffic/page-views-report.mjs @@ -5,7 +5,7 @@ * * Counts human page views (HTML 200s), redirects, 404s and 5xx errors on * sourcegraph.com for /docs, /changelog and /blog over the last 90 days - * and writes Markdown reports to reports/ sorted by path, request count, + * and writes Markdown reports next to this script sorted by path, request count, * redirect count and error count, plus how often each redirect rule in * src/data/redirects.ts was followed. See README.md. * @@ -55,8 +55,8 @@ const HOUR_MS = 60 * 60 * 1000; const DAY_MS = 24 * HOUR_MS; const SCRIPT_DIR = path.dirname(fileURLToPath(import.meta.url)); -const REPO_ROOT = path.dirname(SCRIPT_DIR); -const REPORTS_DIR = path.join(SCRIPT_DIR, 'reports'); +const REPO_ROOT = path.resolve(SCRIPT_DIR, '..', '..'); +const REPORTS_DIR = SCRIPT_DIR; const REDIRECTS_FILE = path.join(REPO_ROOT, 'src', 'data', 'redirects.ts'); // One `{source: '...', destination: '...' | CONSTANT}` entry in redirects.ts. diff --git a/viewership-metrics/reports/redirect-rules.md b/reports/traffic/redirect-rules.md similarity index 100% rename from viewership-metrics/reports/redirect-rules.md rename to reports/traffic/redirect-rules.md