-
Notifications
You must be signed in to change notification settings - Fork 712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bouncing the probe garbles view #2646
Comments
Thanks the for clear instructions on how to reproduce this one @rade - I was noticing a similar behaviour before but never figured there was such a simple pattern to it! The two issues you mentioned are indeed separate although they share the cause:
Now we know how to reproduce the issue, I'll try to solve it one of the following days :) |
Hmm. I could swear my scope was up to date, but trying to reproduce the issue just now, I only see the 2nd problem. |
|
[moved 2. to #2708] |
If the scope-app API unexpectedly restarts it has no report at hand until it receives one from the probe and sends the node count 0 for all topologies to the frontend. Once the report arrives, it will send the proper count. What happened was the frontend did hide Processes for a short time till the node count recovered. This moved the topology selection to the always visible Containers (hide_if_empty == false) while keeping the graph as is. Once the node count recovers, Processes comes back but the selection is still at Containers. This fixes to keep the selected topology visible at all time even if the API returns a node count of 0. This allows to keep looking at the graph. The topology will disappear once the user selected a different topology while a backend response is received. Fixes #2646
If the scope-app API unexpectedly restarts, it has no report at hand (until it gets one from the probe) and sends node count 0 to the frontend for all topologies. Once the report arrives, it will send the proper count. What happened was the frontend did hide Processes for a short time till the node count recovered. This moved the topology selection to the always visible Containers (hide_if_empty == false) while keeping the graph as is. Once the node count recovers, Processes comes back but the selection is still at Containers. We now keep the selected topology visible at all time even if the API returns a node count of 0. This recovers nicely when the correct node counts come in. Once the user selects a different topology while and a backend response arrives, it disappears. Fixes #2646
Notice that a) this is a mixture of old and new nodes, and b) the topology selector says 'Containers' even though what is shown is processes.
The text was updated successfully, but these errors were encountered: