2020-10-30 13:30:11 +00:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "storj.io/storj/satellite/internalpb";
|
|
|
|
|
2020-10-30 15:31:08 +00:00
|
|
|
package satellite.audithistory;
|
2020-10-30 13:30:11 +00:00
|
|
|
|
|
|
|
import "gogo.proto";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
|
|
|
|
message AuditHistory {
|
|
|
|
repeated AuditWindow windows = 1;
|
|
|
|
double score = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AuditWindow {
|
|
|
|
google.protobuf.Timestamp window_start = 1 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
|
|
|
int32 online_count = 2;
|
|
|
|
int32 total_count = 3;
|
|
|
|
}
|