| // Copyright 2021 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| syntax = "proto3"; | |
| package build.rbe; | |
| import "google/protobuf/timestamp.proto"; | |
| import "api/stats/stats.proto"; | |
| // Schema for RBE metrics. | |
| // Next field number: 4 | |
| message RbeMetrics { | |
| // UUID per build. | |
| string build_id = 1; | |
| // Upload time. | |
| google.protobuf.Timestamp created_at = 2; | |
| // RBE metrics. | |
| stats.Stats stats = 3; | |
| } |