Files
supabase/apps/docs/content/guides/telemetry/log-field-reference.mdx
2026-05-26 13:43:00 +00:00

37 lines
1.2 KiB
Plaintext

---
id: 'logs-field-reference'
title: 'Logs field reference'
description: 'Supabase Logs field reference'
---
Refer to the full field reference for each available source below. To access each nested key, you need to perform the [necessary unnesting joins](/docs/guides/telemetry/advanced-log-filtering#unnesting-arrays)
<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>