mirror of
https://github.com/supabase/supabase.git
synced 2026-07-01 18:54:20 +08:00
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
37 lines
1.2 KiB
Plaintext
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>
|