syntax = "proto3"; | |
package boottimeproto; | |
message Checkpoint { | |
string name = 1; | |
int64 wall_time_ms = 2; | |
int64 mono_time_ms = 3; | |
} | |
message Duration { | |
string name = 1; | |
int64 duration_ms = 2; | |
} | |
message BootTime { | |
string name = 1; | |
repeated Checkpoint checkpoints = 2; | |
repeated Duration durations = 3; | |
bool is_rebooting = 4; | |
} |