OLD | NEW |
---|---|
1 syntax = "proto3"; | 1 syntax = "proto3"; |
agable
2015/08/12 22:18:08
See comment on earlier patchset: this file shouldn
jshu
2015/08/14 20:47:56
whoops, don't know how that got here haha
| |
2 | 2 |
3 // ts_mon's config file in /etc/chrome-infra/ts-mon.json is a JSON-encoded | 3 // ts_mon's config file in /etc/chrome-infra/ts-mon.json is a JSON-encoded |
4 // ConfigFile message. | 4 // ConfigFile message. |
5 // Note: this .proto file isn't currently used to encode/decode the config file, | 5 // Note: this .proto file isn't currently used to encode/decode the config file, |
6 // it's just here as a reference. | 6 // it's just here as a reference. |
7 message ConfigFile { | 7 message ConfigFile { |
8 // Url to post monitoring metrics to. file:// URLs are supported as well. | 8 // Url to post monitoring metrics to. file:// URLs are supported as well. |
9 string endpoint = 1; | 9 string endpoint = 1; |
10 | 10 |
11 // Path to a pkcs8 json credential file. | 11 // Path to a pkcs8 json credential file. |
12 string credentials = 2; | 12 string credentials = 2; |
13 } | 13 } |
OLD | NEW |