![](/_next/image?url=https%3A%2F%2Fvercel.com%2Fapi%2Fv1%2Fintegrations%2Fassets%2Foac_xgYu4QpxtLtlw2j0aShehpWe%2Fimages%2Fcb272580e40ef059f9ec20d32eea5e8296174f9b.png&w=3840&q=75)
![](/_next/image?url=https%3A%2F%2Fvercel.com%2Fapi%2Fv1%2Fintegrations%2Fassets%2Foac_xgYu4QpxtLtlw2j0aShehpWe%2Fimages%2F012f919a5686d16c6c0ce07a8d6e05506cefe7ac.png&w=3840&q=75)
![](/_next/image?url=https%3A%2F%2Fvercel.com%2Fapi%2Fv1%2Fintegrations%2Fassets%2Foac_xgYu4QpxtLtlw2j0aShehpWe%2Fimages%2F12908ac28a4197376f97322e864941497db0ba29.png&w=3840&q=75)
![](/_next/image?url=https%3A%2F%2Fvercel.com%2Fapi%2Fv1%2Fintegrations%2Fassets%2Foac_xgYu4QpxtLtlw2j0aShehpWe%2Fimages%2Fa45585f31f3f9003f710f44282701f5df47a0f5f.png&w=3840&q=75)
Overview
Send logs from your Vercel apps to GraphJSON for easy debugging, troubleshooting and alerting.
Works great with Vercel
- Adds observability to your Vercel apps
- View logs from any and all projects
- Full blown SQL notebook to slice, dice and visualize your data
- Set alerts for anomalous behaviors
- Search for specific logs with easy to use filter groups
- Get Started Free with 50k free events forever
Instructions
FAQ
Where are my logs?
Vercel wraps all your console logs in the context of the request. They're buried in the message in your log event metadata. This is the stdout dump from your lambda runs. AWS gives us some metadata about the request in the report section along with the stdout string.
You can thus extract the stdout using a JSON extract function, eg.
SELECT timestamp, JSONExtractString(json, 'message') as stdoutFROM logsLIMIT 10
How do I find my errors
For errors, each event has a message field with ERROR in it. Thus to find all logs with errors, we simply need to add a LIKE filter
SELECT timestamp, JSONExtractString(json, 'message') as stdoutFROM logsWHERE JSONExtractString(json, 'message') LIKE '%ERROR%'LIMIT 10
Pro / Enterprise
This integration offers additional features for Pro and Enterprise plans.