Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: common/proto/milo/annotations.proto

Issue 2078603002: milo: fix running steps (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@milo-pending
Patch Set: address comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015 The LUCI Authors. All rights reserved. 1 // Copyright (c) 2015 The LUCI Authors. All rights reserved.
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
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698