Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2015 The LUCI Authors. All rights reserved. | 1 // Copyright (c) 2015 The LUCI Authors. All rights reserved. |
|
Ryan Tseng
2016/06/16 20:21:13
run "go generate" here. (Pretty sure comments are
nodir
2016/06/16 21:08:04
Done.
| |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto3"; | 5 syntax = "proto3"; |
| 6 | 6 |
| 7 package milo; | 7 package milo; |
| 8 | 8 |
| 9 import "google/protobuf/timestamp.proto"; | 9 import "google/protobuf/timestamp.proto"; |
| 10 | 10 |
| 11 // Status is the expressed root step of this step or substep. | 11 // Status is the expressed root step of this step or substep. |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 166 // `completed` to the percentage value. | 166 // `completed` to the percentage value. |
| 167 message Progress { | 167 message Progress { |
| 168 // The total number of progress units. If missing or zero, no progress is | 168 // The total number of progress units. If missing or zero, no progress is |
| 169 // expressed. | 169 // expressed. |
| 170 int32 total = 1; | 170 int32 total = 1; |
| 171 // The number of completed progress units. This must always be less than or | 171 // The number of completed progress units. This must always be less than or |
| 172 // equal to `total`. If omitted, it is implied to be zero. | 172 // equal to `total`. If omitted, it is implied to be zero. |
| 173 int32 completed = 2; | 173 int32 completed = 2; |
| 174 } | 174 } |
| 175 | 175 |
| 176 // LogdogLink is a LogDog stream link. | 176 // LogdogStream is a LogDog stream link. |
| 177 message LogdogStream { | 177 message LogdogStream { |
| 178 // The stream's server. If omitted, the server is the same server that this | 178 // The stream's server. If omitted, the server is the same server that this |
| 179 // annotation stream is homed on. | 179 // annotation stream is homed on. |
| 180 string server = 1; | 180 string server = 1; |
| 181 // The log Prefix. If empty, the prefix is the same prefix as this annotation | 181 // The log Prefix. If empty, the prefix is the same prefix as this annotation |
| 182 // stream. | 182 // stream. |
| 183 string prefix = 2; | 183 string prefix = 2; |
| 184 // The log name. | 184 // The log name. |
| 185 string name = 3; | 185 string name = 3; |
| 186 } | 186 } |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 202 | 202 |
| 203 // The quest name. | 203 // The quest name. |
| 204 string quest = 2; | 204 string quest = 2; |
| 205 | 205 |
| 206 // The attempt number. | 206 // The attempt number. |
| 207 int64 attempt = 3; | 207 int64 attempt = 3; |
| 208 | 208 |
| 209 // The execution number. | 209 // The execution number. |
| 210 int64 execution = 4; | 210 int64 execution = 4; |
| 211 } | 211 } |
| OLD | NEW |