Overview page has stopped tracking execution counts

My Overview page is no longer showing the correct count of successful/failed prod executions. It’s trending toward zero, so it seems to have started within the past 7 days. I’m not sure if it is also affecting the average execution time metric but I assume it is. It seems to have coincided with me adding Time Saved nodes to most of my workflows and then publishing them. It can be seen from the screenshot below that just today I have several hundred executions, not including the past 6 days.

Information on your n8n setup

  • n8n version: 2.3.5
  • Database (default: SQLite): postgresql
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app): docker
  • Operating system: Ubuntu 22.04

Based on the search results, this issue might be related to execution data pruning or environment variable settings. Here’s what to check:

- Verify your `EXECUTIONS_DATA_MAX_AGE` and `EXECUTIONS_DATA_PRUNE_MAX_COUNT` values [docs.n8n.io]( Execution data | n8n Docs )

- Check if pruning is accidentally deleting recent executions by setting `EXECUTIONS_DATA_PRUNE=false` temporarily

- Review workflow settings to ensure execution data saving isn’t disabled for successful runs

If the issue persists after checking these, consider opening a GitHub issue as similar cases were reported [github.com](No longer shows executions · Issue #7373 · n8n-io/n8n · GitHub).

On my side the same issue:

on my side:

EXECUTIONS_DATA_MAX_AGE=8760
EXECUTIONS_DATA_PRUNE_MAX_COUNT=0

And that happened after update (but i'm not pretty sure after which version)

Disabling pruning did not resolve the issue. I will open an issue on GitHub.