Back to Supabase

Logs field reference

apps/docs/content/guides/monitoring-and-debugging/log-field-reference.mdx

1.26.081.1 KB
Original Source

Refer to the full field reference for each available source below. To access each nested key, you need to perform the necessary unnesting joins

<SharedData data="logConstants"> {(logConstants) => ( <Tabs scrollable size="small" type="underlined" defaultActiveId="edge_logs" queryGroup="source"> {logConstants.schemas.map((schema) => ( <TabPanel id={schema.reference} key={schema.reference} label={schema.name}> <table> <thead> <tr> <th className="font-bold">Path</th> <th className="font-bold">Type</th> </tr> </thead> <tbody> {schema.fields .sort((a, b) => a.path - b.path) .map((field) => ( <tr key={field.path}> <td className="font-mono">{field.path}</td> <td className="font-mono">{field.type}</td> </tr> ))} </tbody> </table> </TabPanel> ))} </Tabs> )} </SharedData>