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

Side by Side Diff: common/proto/logdog/svcconfig/config.proto

Issue 1967273002: LogDog: Implement RegisterPrefix RPC. (Closed) Base URL: https://github.com/luci/luci-go@logdog-butler-register-coordinator-endpoint
Patch Set: Updated patchset dependency Created 4 years, 7 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
« no previous file with comments | « common/logdog/types/streamsecret.go ('k') | common/proto/logdog/svcconfig/config.pb.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « common/logdog/types/streamsecret.go ('k') | common/proto/logdog/svcconfig/config.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698