Write utilization now available in ISR Observability
Mirrored from Vercel — AI for archival readability. Support the source by reading on the original site.
The ISR Observability page now shows Observability Plus subscribers a write utilization metric, helping identify routes that regenerate often but receive few requests. Write utilization is the ratio of cached requests to ISR writes. For routes with low write utilization, consider increasing the revalidation interval or switching to on-demand revalidation to reduce costs.


You can also compute write utilization using the Vercel CLI, or use agents with the cdn-caching skill to investigate.
# Find the total number of cached requests for each pagevercel metrics vercel.request.count -S <team> -p <project> \ -f "environment eq 'production' and (cache_result eq 'HIT' or cache_result eq 'STALE')" \ --group-by route -a sum --since 24h# Find pages with high ISR writesvercel metrics vercel.isr_operation.write_units -S <team> -p <project> \ -f "environment eq 'production'" --group-by route -a sum --since 24hFetching the two metrics behind write utilization.
Learn more about Incremental Static Regeneration or follow our guide on how to reduce ISR regenerations and costs.
Discussion (0)
Sign in to join the discussion. Free account, 30 seconds — email code or GitHub.
Sign in →No comments yet. Sign in and be the first to say something.