Connect Axiom with Vercel
Easily monitor data from requests, functions, and web vitals in one place to get the deepest observability experience for your Vercel projects.
Connect Axiom with Vercel to get the deepest observability experience for your Vercel projects.
Easily monitor data from requests, functions, and web vitals in one place. 100% live and 100% of your data, no sampling.
Axiom’s Vercel app ships with a pre-built dashboard and pre-installed monitors so you can be in complete control of your projects with minimal effort.
If you use Axiom Vercel integration, annotations are automatically created for deployments.
What is Vercel?
Vercel is a platform for frontend frameworks and static sites, built to integrate with your headless content, commerce, or database.
Vercel provides a frictionless developer experience to take care of the hard things: deploying instantly, scaling automatically, and serving personalized content around the globe.
Vercel makes it easy for frontend teams to develop, preview, and ship delightful user experiences, where performance is the default.
Sending logs to Axiom
Simply install the Axiom Vercel app from here and be streaming logs and web vitals within minutes!
App Overview
Request and function logs
For both requests and serverless functions, Axiom automatically installs a log drain in your Vercel account to capture data live.
As users interact with your website, various logs will be produced. Axiom captures all these logs and ingests them into the vercel
dataset. You can stream and analyze these logs live, or use our pre-build Vercel Dashboard to get an overview of all the important metrics. When you’re ready, you can fork our dashboard and start building your own!
For function logs, if you call console.log
, console.warn
or console.error
in your function, the output will also be captured and made available as part of the log. You can use our extended query language, APL, to easily search these logs.
Web vitals
Axiom supports capturing and analyzing Web Vital data directly from your user’s browser without any sampling and with more data than is available elsewhere. It is perfect to pair with Vercel’s in-built analytics when you want to get really deep into a specific problem or debug issues with a specific audience (user-agent, location, region, etc).
NOTE: Web Vitals are only currently supported for Next.js websites. Expanded support is coming soon!
Installation
Perform the following steps to install Web Vitals:
- In your Vercel project, run
npm install --save next-axiom
. - In
next.config.js
, wrap your NextJS config inwithAxiom
as follows:
This will proxy the Axiom ingest call to improve deliverability.
- For Web Vitals, navigate to
app/layout.tsx
and add theAxiomWebVitals
component:
Note: WebVitals are sent only from production deployments.
- Deploy your site and watch data coming into your Axiom dashboard.
- To send logs from different parts of your app, make use of the provided logging functions. For example:
Client Components
For Client Components, replace the log
prop usage with the useLogger
hook:
Server Components
For Server Components, create a logger and make sure to call flush before returning:
Route Handlers
For Route Handlers, wrapping your Route Handlers in withAxiom
will add a logger to your request and automatically log exceptions:
Using Next.js 12 for Web Vitals
If you’re using Next.js version 12, follow the instructions below to integrate Axiom for logging and capturing Web Vitals data.
In your pages/_app.js
or pages/_app.ts
and add the following line:
Upgrading to Next.js 13 from Next.js 12
If you plan on upgrading to Next.js 13, you’ll need to make specific changes to ensure compatibility:
- Upgrade the next-axiom package to version
1.0.0
or higher: - Make sure any exported variables have the
NEXT_PUBLIC_ prefix
, for example,,NEXT_PUBLIC_AXIOM_TOKEN
. - In client components, use the
useLogger
hook instead of thelog
prop. - For server-side components, you need to create an instance of the
Logger
and flush the logs before the component returns. - For Web Vitals tracking, you’ll replace the previous method of capturing data. Remove the
reportWebVitals()
line and instead integrate theAxiomWebVitals
component into your layout.
Vercel Function logs 4KB limit
The Vercel 4KB log limit refers to a restriction placed by Vercel on the size of log output generated by serverless functions running on their platform. The 4KB log limit means that each log entry produced by your function should be at most 4 Kilobytes in size.
If your log output is larger than 4KB, you might experience truncation or missing logs. To log above this limit, you can send your function logs using next-axiom.
Parse JSON on the message field
If you use a logging library in your Vercel project that prints JSON, your message field will contain a stringified and therefore escaped JSON object.
- If your Vercel logs are encoded as JSON, they will look like this:
- The JSON data in your message would be:
You can parse the JSON using the parse_json function and run queries against the values in the message field.
Example
- You can select the field to insert into new columns using the project operator
More Examples
- If you have null values in your data you can use the isnotnull() function
- Check out our APL Documentation on how to use more functions and run your own queries against your Vercel logs.
Migrate from Vercel app to next-axiom
In May 2024, Vercel introduced higher costs for using Vercel Log Drains. Because the Axiom Vercel app depends on Log Drains, using the next-axiom library can be the cheaper option to analyze telemetry data for higher volume projects.
To migrate from the Axiom Vercel app to the next-axiom library, follow these steps:
- Delete the existing log drain from your Vercel project.
- Delete
NEXT_PUBLIC_AXIOM_INGEST_ENDPOINT
from the environment variables of your Vercel project. For more information, see the Vercel documentation. - Create a new dataset in Axiom, and create a new advanced API token with ingest permissions for that dataset.
- Add the following environment variables to your Vercel project:
NEXT_PUBLIC_AXIOM_DATASET
is the name of the Axiom dataset where you want to send data.NEXT_PUBLIC_AXIOM_TOKEN
is the Axiom API token you have generated.
- In your terminal, go to the root folder of your Next.js app, and then run
npm install --save next-axiom
to install the latest version of next-axiom. - In the
next.config.ts
file, wrap your Next.js configuration inwithAxiom
:
For more configuration options, see the documentation in the next-axiom GitHub repository.
Was this page helpful?