blob: e6f0576f38e159fbd82e88fee33c4142b383d311 [file] [log] [blame]
syntax = "proto3";
package boottimeproto;
message Checkpoint {
string name = 1;
int64 wall_time = 2;
int64 mono_time = 3;
}
message Duration {
string name = 1;
int64 duration = 2;
}
message BootTime {
string name = 1;
repeated Checkpoint checkpoints = 2;
repeated Duration durations = 3;
bool is_rebooting = 4;
}