mirror of
https://github.com/supabase/supabase.git
synced 2026-09-06 18:11:51 +08:00
## Summary - Renames the **Telemetry** nav section to **Monitoring and Debugging** (nav label + sidebar title) - Rewrites the section overview (`telemetry.mdx`) as a clean navigation page using `ContentListings` — three panels (Debugging / Monitoring / AI & automation) with no how-to prose - Adds new `telemetry.data.ts` content-listings data file with three groups registered in `index.ts` - Adds a new **Debugging** guide (`debugging.mdx`) — request-stack model, symptom-to-layer router with troubleshooting links for every service, logging guidance - Adds cross-links between `debugging.mdx`, `logs.mdx`, and `advanced-log-filtering.mdx` - Adds a new **AI agents and MCP** page (`ai-agents.mdx`) — MCP tools table, `get_logs` usage, debugging skill workflow - Restructures sidebar into three groups: **Debugging** / **Monitoring** / **AI & automation** ## Motivation - No central entry point existed for debugging — content was scattered across products with no index - The overview page had almost no links for agents to follow - The section name "Telemetry" caused confusion (also used for CLI usage telemetry) - Unblocks the `supabase` debugging skill, which routes agents to this section as its source of truth ## Test plan - [ ] `/docs/guides/telemetry` — three ContentListings panels render, no prose how-to text - [ ] `/docs/guides/telemetry.md` (markdown) — clean link list, navigable by LLMs - [ ] `/docs/guides/telemetry/debugging` — renders correctly, symptom table links resolve - [ ] `/docs/guides/telemetry/ai-agents` — new page renders correctly - [ ] Sidebar shows 3 groups: Debugging / Monitoring / AI & automation - [ ] All cross-links between debugging, logs, and advanced-log-filtering resolve <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Summary - **New Features** - Added new documentation coverage for AI agent–assisted monitoring and debugging, including an observability-driven troubleshooting workflow. - **Documentation** - Updated the “Telemetry” area to “Monitoring and Debugging” with a refreshed landing page and reorganized sections (Debugging, Monitoring, and AI). - Revised the debugging and logs guides to improve step-by-step guidance and highlight advanced log filtering. - **Navigation** - Renamed and restructured the top-level navigation entry to reflect the new Monitoring and Debugging content layout. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: Jeremias Menichelli <jmenichelli@gmail.com>
168 lines
4.5 KiB
TypeScript
168 lines
4.5 KiB
TypeScript
'use client'
|
|
|
|
import { MenuId } from '~/components/Navigation/NavigationMenu/NavigationMenu'
|
|
import type { ICommonItem } from '~/components/reference/Reference.types'
|
|
import type { Json } from '~/features/helpers.types'
|
|
import { usePathname } from 'next/navigation'
|
|
import { useEffect, useState } from 'react'
|
|
|
|
import { menuState } from '../../../hooks/useMenuState'
|
|
|
|
export function getPathWithoutHash(relativePath: string) {
|
|
return new URL(relativePath, 'http://placeholder').pathname
|
|
}
|
|
|
|
/**
|
|
* Recursively filter common sections and their sub items based on
|
|
* what is available in their spec
|
|
*/
|
|
export function deepFilterSections<T extends ICommonItem>(
|
|
sections: T[],
|
|
specFunctionIds: string[]
|
|
): T[] {
|
|
return sections
|
|
.filter(
|
|
(section) =>
|
|
section.type === 'category' ||
|
|
section.type === 'markdown' ||
|
|
specFunctionIds.includes(section.id)
|
|
)
|
|
.flatMap((section) => {
|
|
if ('items' in section) {
|
|
const items = deepFilterSections(section.items, specFunctionIds)
|
|
|
|
// Only include this category (heading) if it has subitems
|
|
if (items.length > 0) {
|
|
return {
|
|
...section,
|
|
items,
|
|
}
|
|
}
|
|
|
|
return []
|
|
}
|
|
return section
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Imports common sections file dynamically.
|
|
*
|
|
* Dynamic imports allow for code splitting which
|
|
* dramatically reduces app bundle size.
|
|
*
|
|
* See https://webpack.js.org/api/module-methods/#dynamic-expressions-in-import
|
|
*/
|
|
export function useCommonSections(
|
|
commonSectionsFile: string,
|
|
{ enabled = true }: { enabled: boolean }
|
|
) {
|
|
const [commonSections, setCommonSections] = useState<ICommonItem[]>()
|
|
|
|
useEffect(() => {
|
|
async function fetchCommonSections() {
|
|
const commonSections = await import(
|
|
/* webpackInclude: /common-.*\.json$/ */
|
|
/* webpackMode: "lazy" */
|
|
`~/spec/${commonSectionsFile}`
|
|
)
|
|
setCommonSections(commonSections.default)
|
|
}
|
|
fetchCommonSections()
|
|
}, [commonSectionsFile])
|
|
|
|
if (!enabled) {
|
|
return null
|
|
}
|
|
|
|
return commonSections
|
|
}
|
|
|
|
/**
|
|
* Imports spec file dynamically.
|
|
*
|
|
* Dynamic imports allow for code splitting which
|
|
* dramatically reduces app bundle size.
|
|
*
|
|
* See https://webpack.js.org/api/module-methods/#dynamic-expressions-in-import
|
|
*/
|
|
export function useSpec(specFile?: string) {
|
|
const [spec, setSpec] = useState<Json>()
|
|
|
|
useEffect(() => {
|
|
if (!specFile) {
|
|
return
|
|
}
|
|
async function fetchSpec() {
|
|
const spec = await import(
|
|
/* webpackInclude: /supabase_.*\.ya?ml$/ */
|
|
/* webpackMode: "lazy" */
|
|
`~/spec/${specFile}`
|
|
)
|
|
setSpec(spec.default)
|
|
}
|
|
fetchSpec()
|
|
}, [specFile])
|
|
|
|
return spec
|
|
}
|
|
|
|
export const getMenuId = (pathname: string | null) => {
|
|
pathname = (pathname ??= '').replace(/^\/guides\//, '')
|
|
|
|
switch (true) {
|
|
case pathname.startsWith('ai') && !pathname.startsWith('ai-tools'):
|
|
return MenuId.Ai
|
|
case pathname.startsWith('api'):
|
|
return MenuId.Api
|
|
case pathname.startsWith('auth'):
|
|
return MenuId.Auth
|
|
case pathname.startsWith('cron'):
|
|
return MenuId.Cron
|
|
case pathname.startsWith('database'):
|
|
return MenuId.Database
|
|
case pathname.startsWith('deployment'):
|
|
return MenuId.Deployment
|
|
case pathname.startsWith('functions'):
|
|
return MenuId.Functions
|
|
case pathname.startsWith('getting-started'):
|
|
return MenuId.GettingStarted
|
|
case pathname.startsWith('graphql'):
|
|
return MenuId.Graphql
|
|
case pathname.startsWith('integrations'):
|
|
return MenuId.Integrations
|
|
case pathname.startsWith('local-development'):
|
|
return MenuId.LocalDevelopment
|
|
case pathname.startsWith('ai-tools'):
|
|
return MenuId.AiTools
|
|
case pathname.startsWith('monitoring-and-debugging'):
|
|
return MenuId.Telemetry
|
|
case pathname.startsWith('platform'):
|
|
return MenuId.Platform
|
|
case pathname.startsWith('queues'):
|
|
return MenuId.Queues
|
|
case pathname.startsWith('realtime'):
|
|
return MenuId.Realtime
|
|
case pathname.startsWith('resources'):
|
|
return MenuId.Resources
|
|
case pathname.startsWith('security'):
|
|
return MenuId.Security
|
|
case pathname.startsWith('self-hosting'):
|
|
return MenuId.SelfHosting
|
|
case pathname.startsWith('storage'):
|
|
return MenuId.Storage
|
|
case pathname.startsWith('/contributing'):
|
|
return MenuId.Contributing
|
|
default:
|
|
return MenuId.GettingStarted
|
|
}
|
|
}
|
|
|
|
export const useCloseMenuOnRouteChange = () => {
|
|
const pathname = usePathname()
|
|
|
|
useEffect(() => {
|
|
menuState.setMenuMobileOpen(false)
|
|
}, [pathname])
|
|
}
|