1
0
mirror of https://github.com/amir20/dozzle.git synced 2026-01-03 11:35:00 +01:00

fix: fixes timestamps for finished containers in agent (#3509)

This commit is contained in:
Amir Raminfar
2025-01-06 07:12:02 -08:00
committed by GitHub
parent dae2877bdb
commit 756b212826
7 changed files with 204 additions and 176 deletions

View File

@@ -12,7 +12,7 @@ message Container {
string image = 3;
string status = 4; // deprecated
string state = 5;
string ImageId = 6;
string ImageId = 6; // deprecated
google.protobuf.Timestamp created = 7;
google.protobuf.Timestamp started = 8;
string health = 9;
@@ -22,6 +22,7 @@ message Container {
repeated ContainerStat stats = 13;
string group = 14;
string command = 15;
google.protobuf.Timestamp finished = 16;
}
message ContainerStat {