Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | |
| 3 // that can be found in the LICENSE file. | |
| 4 | |
| 5 // Machine Provider config schema. | |
| 6 | |
| 7 package machine_provider; | |
| 8 | |
| 9 | |
| 10 // Machine Provider Configuration | |
| 11 message SettingsCfg { | |
| 12 // Enable ts_mon based monitoring. | |
| 13 optional bool enable_ts_monitoring = 1; | |
| 14 } | |
| OLD | NEW |