Regenerate proto cruft

This commit is contained in:
Milos Gajdos
2019-11-27 18:38:26 +00:00
parent 7deafbc5ce
commit b01357058a
3 changed files with 60 additions and 31 deletions

View File

@@ -31,11 +31,11 @@ message StatsResponse {
// LogRequest queries service for logs
message LogRequest {
// count is the count of events
uint64 count = 1;
int64 count = 1;
// relative time in seconds
// before the current time
// from which to show logs
uint64 since = 2;
int64 since = 2;
// stream logs continuously
bool stream = 3;
}