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

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: Add missing test. 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
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 "transport.proto"; 9 import "transport.proto";
10 import "storage.proto"; 10 import "storage.proto";
(...skipping 21 matching lines...) Expand all
32 string project = 1; 32 string project = 1;
33 33
34 // The name of the authentication group for administrators. 34 // The name of the authentication group for administrators.
35 string admin_auth_group = 10; 35 string admin_auth_group = 10;
36 // The name of the authentication group for backend services. 36 // The name of the authentication group for backend services.
37 string service_auth_group = 11; 37 string service_auth_group = 11;
38 38
39 // A list of origin URLs that are allowed to perform CORS RPC calls. 39 // A list of origin URLs that are allowed to perform CORS RPC calls.
40 repeated string rpc_allow_origins = 20; 40 repeated string rpc_allow_origins = 20;
41 41
42 // The maximum amount of time after a prefix has been registered when log
43 // streams may also be registered under that prefix.
44 //
45 // After the expiration period has passed, new log stream registration will
46 // fail.
47 //
48 // Project or stream configurations may override this by providing >= 0 values
nodir 2016/05/17 02:45:59 s/stream/prefix/?
dnj (Google) 2016/05/17 14:44:33 Done.
49 // for prefix expiration. The smallest configured expiration will be applied.
50 google.protobuf.Duration prefix_expiration = 21;
51
42 // The full path of the archival Pub/Sub topic. 52 // The full path of the archival Pub/Sub topic.
43 // 53 //
44 // The Coordinator must have permission to publish to this topic. 54 // The Coordinator must have permission to publish to this topic.
45 string archive_topic = 30; 55 string archive_topic = 30;
46 56
47 // The amount of time after an archive request has been dispatched before it 57 // The amount of time after an archive request has been dispatched before it
48 // should be executed. 58 // should be executed.
49 // 59 //
50 // Since terminal messages can arrive out of order, the archival request may 60 // Since terminal messages can arrive out of order, the archival request may
51 // be kicked off before all of the log stream data has been loaded into 61 // be kicked off before all of the log stream data has been loaded into
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 // back. 143 // back.
134 // 144 //
135 // Enabling this option will consume roughly twice the archival space, as each 145 // Enabling this option will consume roughly twice the archival space, as each
136 // stream's data will be archived once as a series of log entries and once as 146 // stream's data will be archived once as a series of log entries and once as
137 // a binary file. 147 // a binary file.
138 // 148 //
139 // Streams without an explicit binary file extension will default to ".bin" if 149 // Streams without an explicit binary file extension will default to ".bin" if
140 // this is enabled. 150 // this is enabled.
141 bool always_create_binary = 13; 151 bool always_create_binary = 13;
142 } 152 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698