mirror of
https://github.com/supabase/supabase.git
synced 2026-09-08 19:08:44 +08:00
<!-- CURSOR_AGENT_PR_BODY_BEGIN --> ## Stack Draft stack extracted from `docs/monitoring`. Merge bottom-up. The troubleshooting *catalog* rewrite (`content/troubleshooting` and the Diagnosing UI) stays out of scope. 1. #49503 move inspect and advisors 2. #49501 split Studio logs from ClickHouse queries 3. #49500 treat reports as signal dashboards 4. #49502 add Observe the data hub 5. #49506 add agent setup components 6. #49504 add hire-an-agent templates 7. **#49505** restructure observability nav, overview, Detecting, and flatten Observe the data ← **this PR** ## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? Docs update. Top layer in the observability stack. ## What is the current behavior? The section is still titled Monitoring and Debugging, with a Debugging / Monitoring split that does not match the new pages. The debugging guide is still the master layer-isolation + symptom table. Observe the data is split into “what data” vs “where to observe it,” which duplicates the source pages. ## What is the new behavior? - Section title is Observability - Overview groups Observe the data, Detect and resolve, Hire an agent, and Export - **Observe the data is flattened by source.** Logs, Metrics API, Database, Advisors, and Reports each list where to read that source. There is no separate MCP/API/CLI/Studio nav group. - **Observe vs Detecting:** Observe is the catalog (what exists, how to access it). Detecting is how to *use* those sources to pick up a Health / Security / Performance / Usage signal. Named errors skip to Diagnosing. - Studio Logs sits under Logs. Reports sits beside the other sources. - Troubleshooting stays in the global menu and also appears as Diagnosing under Detect and resolve ## Additional context This is the last PR in the stack. Together the seven PRs reconstruct the `docs/monitoring` observability IA and guide content, without shipping the troubleshooting catalog overhaul. <!-- CURSOR_AGENT_PR_BODY_END --> <div><a href="https://cursor.com/agents/bc-a3cb5ece-925b-4046-b58a-5d69e9a9d794?cursor_ref=pr_footer&cursor_cta=open_in_web"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-web-dark.png"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/assets/images/open-in-web-light.png"><img alt="Open in Web" width="114" height="28" src="https://cursor.com/assets/images/open-in-web-dark.png"></picture></a> <a href="https://cursor.com/background-agent?bcId=bc-a3cb5ece-925b-4046-b58a-5d69e9a9d794&cursor_ref=pr_footer&cursor_cta=open_in_cursor"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-cursor-dark.png"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/assets/images/open-in-cursor-light.png"><img alt="Open in Cursor" width="131" height="28" src="https://cursor.com/assets/images/open-in-cursor-dark.png"></picture></a> </div> --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Saxon Fletcher <SaxonF@users.noreply.github.com> Co-authored-by: Nik Richers <nik@validmind.ai>
170 lines
4.6 KiB
TypeScript
170 lines
4.6 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('observability'):
|
|
return MenuId.Telemetry
|
|
case pathname.startsWith('troubleshooting'):
|
|
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])
|
|
}
|