| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto3"; | 5 syntax = "proto3"; |
| 6 | 6 |
| 7 package svcconfig; | 7 package svcconfig; |
| 8 | 8 |
| 9 import "archival.proto"; | 9 import "archival.proto"; |
| 10 import "storage.proto"; | 10 import "storage.proto"; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 // A list of origin URLs that are allowed to perform CORS RPC calls. | 37 // A list of origin URLs that are allowed to perform CORS RPC calls. |
| 38 repeated string rpc_allow_origins = 20; | 38 repeated string rpc_allow_origins = 20; |
| 39 | 39 |
| 40 // The maximum amount of time after a prefix has been registered when log | 40 // The maximum amount of time after a prefix has been registered when log |
| 41 // streams may also be registered under that prefix. | 41 // streams may also be registered under that prefix. |
| 42 // | 42 // |
| 43 // After the expiration period has passed, new log stream registration will | 43 // After the expiration period has passed, new log stream registration will |
| 44 // fail. | 44 // fail. |
| 45 // | 45 // |
| 46 // Project or stream configurations may override this by providing >= 0 values | 46 // Project configurations or stream prefix regitrations may override this by |
| 47 // for prefix expiration. The smallest configured expiration will be applied. | 47 // providing >= 0 values for prefix expiration. The smallest configured |
| 48 // expiration will be applied. |
| 48 google.protobuf.Duration prefix_expiration = 21; | 49 google.protobuf.Duration prefix_expiration = 21; |
| 49 | 50 |
| 50 // The full path of the archival Pub/Sub topic. | 51 // The full path of the archival Pub/Sub topic. |
| 51 // | 52 // |
| 52 // The Coordinator must have permission to publish to this topic. | 53 // The Coordinator must have permission to publish to this topic. |
| 53 string archive_topic = 30; | 54 string archive_topic = 30; |
| 54 | 55 |
| 55 // The amount of time after an archive request has been dispatched before it | 56 // The amount of time after an archive request has been dispatched before it |
| 56 // should be executed. | 57 // should be executed. |
| 57 // | 58 // |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 // back. | 136 // back. |
| 136 // | 137 // |
| 137 // Enabling this option will consume roughly twice the archival space, as each | 138 // Enabling this option will consume roughly twice the archival space, as each |
| 138 // stream's data will be archived once as a series of log entries and once as | 139 // stream's data will be archived once as a series of log entries and once as |
| 139 // a binary file. | 140 // a binary file. |
| 140 // | 141 // |
| 141 // Streams without an explicit binary file extension will default to ".bin" if | 142 // Streams without an explicit binary file extension will default to ".bin" if |
| 142 // this is enabled. | 143 // this is enabled. |
| 143 bool render_all_streams = 13; | 144 bool render_all_streams = 13; |
| 144 } | 145 } |
| OLD | NEW |