We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501a283 commit 20f5d68Copy full SHA for 20f5d68
ydb/core/viewer/viewer_nodes.h
@@ -954,10 +954,10 @@ class TJsonNodes : public TViewerPipeClient {
954
InvalidateNodes();
955
}
956
if (UptimeSeconds > 0 && FieldsAvailable.test(+ENodeFields::SystemState)) {
957
- ui64 limitSeconds = TInstant::Now().Seconds() - UptimeSeconds;
+ ui64 limitMilliSeconds = TInstant::Now().MilliSeconds() - UptimeSeconds * 1000;
958
TNodeView nodeView;
959
for (TNode* node : NodeView) {
960
- if (node->SystemState.GetStartTime() >= limitSeconds) {
+ if (node->SystemState.GetStartTime() >= limitMilliSeconds) {
961
nodeView.push_back(node);
962
963
0 commit comments