Vercel Pro or Enterprise plan is required
Explore documentation
Vercel Better Stack integration
Start logging in 2 minutes
Automatically collect logs from your Vercel projects:
- Go to Vercel Better Stack integration.
- Click
Add integration
and follow the simple steps there. - You should see your logs in Better Stack → Live tail.
- Check out your metrics in the Vercel dashboard.
Optional structured logging
Take advantage of full-stack structured logging in 3 steps.
1. Install
Install Better Stack Next.js NPM package:
npm install @logtail/next
2. Setup
Set up Better Stack Next.js client in next.config.js
:
const { withLogtail } = require('@logtail/next');
module.exports = withLogtail({
// Your existing config
});
Import Better Stack Next.js logger:
const { log } = require('@logtail/next');
3. Start logging 🎉
Use structured logging in client, edge, or server-side files:
log.error("Something bad happened.");
log.info("Log message with structured logging.", {
item: "Orange Soda",
price: 100.00
});
You should see your logs in Better Stack → Live tail.
Next.js version 12.1.4 or higher is required.
Need help?
Please let us know at hello@betterstack.com.
We're happy to help! 🙏
Need to customize which logs to send?
Set up a Vercel Log drain instead!
Advanced usage
Web Vitals
Forward Web Vitals metrics provided by Vercel to Better Stack.
Set up metrics reporting in pages/_app.js
:
export { reportWebVitals } from '@logtail/next';
Handlers
Get logger with automatic log flushing and built-in exception logging.
Wrap your Next.js route handlers with Better Stack:
const { withLogtail, LogtailAPIRequest } = require('@logtail/next');
async function handler(req: LogtailAPIRequest, res: NextApiResponse) {
req.log.info("Hello Logtail!");
res.status(200).text("OK");
}
export default withLogtail(handler);
Log levels
Better Stack Next.js client provides four log levels: debug
, info
, warn
, and error
.
Stop sending debug
logs to Better Stack:
export LOGTAIL_LOG_LEVEL=info
Server-side props
Take advantage of automatic log flushing and built-in exception logging.
Wrap your server-side props with Better Stack:
const { withLogtailGetServerSideProps } = require('@logtail/next');
export const getServerSideProps = withLogtailGetServerSideProps(
async ({ req, log }) => {
log.info("Hello Logtail!");
return {
props: {
},
}
}
);