Netlify Logs
Stream serverless function logs from Netlify into Gonzo for real-time analysis, filtering, and AI-powered insights.
Quick Start
netlify login
netlify link
netlify logs:function <function-name> \
| jq --unbuffered -R '
select(length > 0) |
(index(" ")) as $i |
if $i then
{level: .[:$i] | ascii_downcase, message: .[($i+1):]}
else
{level: "info", message: .}
end |
(.message | fromjson? // null) as $json |
if $json then . + $json else . end |
select(.message | length > 0)
' \
| gonzoPrerequisites
Log Types
Log type
CLI access
Gonzo compatible
What it captures
Usage Patterns
Multiple Functions
Platform Latency
Structured Logging Tips
Troubleshooting
Symptom
Cause & fix
Last updated