1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 22:39:18 +01:00

chore: adds fully loaded to agent proto (#3787)

This commit is contained in:
Amir Raminfar
2025-04-09 17:33:44 -07:00
committed by GitHub
parent 6bb3777a64
commit a514168e45
7 changed files with 110 additions and 99 deletions

View File

@@ -207,6 +207,7 @@ func (s *server) FindContainer(ctx context.Context, in *pb.FindContainerRequest)
Finished: timestamppb.New(container.FinishedAt),
MemoryLimit: container.MemoryLimit,
CpuLimit: container.CPULimit,
FullyLoaded: container.FullyLoaded,
},
}, nil
}
@@ -254,6 +255,7 @@ func (s *server) ListContainers(ctx context.Context, in *pb.ListContainersReques
Command: container.Command,
MemoryLimit: container.MemoryLimit,
CpuLimit: container.CPULimit,
FullyLoaded: container.FullyLoaded,
})
}
@@ -300,6 +302,7 @@ func (s *server) StreamContainerStarted(in *pb.StreamContainerStartedRequest, ou
Finished: timestamppb.New(container.FinishedAt),
MemoryLimit: container.MemoryLimit,
CpuLimit: container.CPULimit,
FullyLoaded: container.FullyLoaded,
},
})
case <-out.Context().Done():