diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-09-21 02:37:00 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-09-21 04:34:20 -0700 |
commit | 0f8807884e316f60e7828c53a43ee6bd18f7348b (patch) | |
tree | cd2e92885fde1ff6839f00afbe9806aa6517e135 | |
parent | 49ad335af2f5bd46b0eda35f2eb7e5ac85896343 (diff) |
charts: Wall=??s if proc_stat->start is > boottime
Since libvmon samples the sys_wants before proc_wants, it's
entirely possible the proc_stat->start will be later than
sys_stat->boottime by the time a given process gets sampled.
Simply treat this analogous to being unable to sample the start,
either of which will only leave the Wall as ??s in the highly
ephemeral short-lived process scenario. In the > boottime case,
the next sample for the same process would have start <= boottime
-rw-r--r-- | src/charts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charts.c b/src/charts.c index 6566f0a..fc33612 100644 --- a/src/charts.c +++ b/src/charts.c @@ -795,7 +795,7 @@ static void draw_columns(vwm_charts_t *charts, vwm_chart_t *chart, vwm_column_t case VWM_COLUMN_PROC_WALL: /* User Sys Wall times */ if (!row) str_len = snpf(str, sizeof(str), "Wall"); - else if (!proc_stat->start) + else if (!proc_stat->start || proc_stat->start > sys_stat->boottime) str_len = snpf(str, sizeof(str), "??s"); else str_len = snpf(str, sizeof(str), "%.2fs", |