Hi Rick,
I recently updated to 8.3 and I've noticed the reappearance of an old UI issue in the Admin page. The timer never changes from 0 seconds for longer running requests. It will just toggle between the red zero and the green idle as the page refreshes.

Most likely that's requests hitting the server that are either just hitting or are already done. This is not unusual for apps that have short requests times.
+++ Rick ---
Understood, but at the time I took that screenshot I was testing a long-running data export request and it never changed from 0.
Check your dev tools and see what's happening with the JSON request. Make sure that the refresh timeout is set to a reasonable value too. (2-3 seconds)
The devtools should show you if there's some sort of problem with refreshing the table data.
+++ Rick ---

Thanks. The page refresh is at the standard 3000ms. I'll see what shows up in dev tools.
No errors or clues in dev tools.
If you go to the network tab, do you see the page refreshing every three seconds?
Yes, it does show the page refreshing.
Just to be clear, status is the only column that does not seem to update properly. Hits, time, average, memory all change over time.
Hmmm... not sure what would cause that to happen. If a request is 'stuck' the timer should still be going up. And if there's no request the value would be 0
, which should show idle. The 0.00
seems to suggest the value is not 0
but a very small value that doesn't show in the precision and somehow doesn't reset because it shows as zero. I'd have to review the code to see where the value is changed, but I'm pretty sure when the value is 0M
it shows as idle
.
Only thing I can think of is that the time is so small it's non-zero - that's why it shows. It is a decimal value, so there's a possibility of a rounding errors somewhere.
+++ Rick ---
I'm going to send you a little movie directly.
I took a look at the video and it looks like the duration counter is not working at all - no matter what time it's taking it always shows 0.00s for you.
I'm going to have to take look and see what's happening but my guess is some sort of number formatting issue where the value is formatting to 0 when it's actually some fractional value.
Thanks,
+++ Rick ---