# Write utilization now available in ISR Observability

**Published:** July 16, 2026 | **Authors:** Mark Knichel

---

The [ISR Observability page](https://vercel.com/d?to=%2F%5Bteam%5D%2F%5Bproject%5D%2Fobservability%2Fisr&title=ISR+Observability) now shows [Observability Plus](https://vercel.com/docs/observability/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.

![The ISR Observability page showing the new write utilization column.](//images.ctfassets.net/e5382hct74si/4oHZeA6afyZZvodzsvbm06/ca2331d3bbfa6bd21256a7da16ac0c9e/Light__1_.png)
*The ISR Observability page showing the new write utilization column.*

You can also compute write utilization using the Vercel CLI, or use agents with the [cdn-caching](https://www.skills.sh/vercel/vercel-plugin/cdn-caching) skill to investigate.

```bash
# Find the total number of cached requests for each page
vercel 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 writes
vercel metrics vercel.isr_operation.write_units -S <team> -p <project> \
  -f "environment eq 'production'" --group-by route -a sum --since 24h
```

Learn more about [Incremental Static Regeneration](https://vercel.com/docs/incremental-static-regeneration) or follow our guide on [how to reduce ISR regenerations and costs](https://vercel.com/kb/guide/how-to-reduce-isr-revalidation-costs).

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)