Chromium Code Reviews| Index: go/src/infra/monitoring/messages/alerts.go |
| diff --git a/go/src/infra/monitoring/messages/alerts.go b/go/src/infra/monitoring/messages/alerts.go |
| index c9dcdc1bf91c1c118beaea5c7f2b8974a35387e1..9fa0062cf0865a3ef9709062c9a4f52ec684bca9 100644 |
| --- a/go/src/infra/monitoring/messages/alerts.go |
| +++ b/go/src/infra/monitoring/messages/alerts.go |
| @@ -84,10 +84,12 @@ type BuildFailure struct { |
| // AlertedBuilder represents an individual builder. |
| type AlertedBuilder struct { |
| - Name string |
| - URL string |
| - FirstFailure EpochTime `json:"first_failure"` |
| - LatestFailure EpochTime `json:"latest_failure"` |
| + Name string |
| + URL string |
| + // Build number of first failure. |
|
Vadim Sh.
2015/05/06 21:40:19
nit: FirstFailure is build number ...
same for La
seanmccullough
2015/05/06 22:16:20
Done.
|
| + FirstFailure int64 `json:"first_failure"` |
| + // Build number of latest failure. |
| + LatestFailure int64 `json:"latest_failure"` |
| } |
| // Reason contains information about why the Alert was triggered. |