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

Unified Diff: appengine/logdog/coordinator/logPrefix.go

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/logdog/coordinator/hierarchy/hierarchy.go ('k') | appengine/logdog/coordinator/logStream.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/logdog/coordinator/logPrefix.go
diff --git a/appengine/logdog/coordinator/logPrefix.go b/appengine/logdog/coordinator/logPrefix.go
index 9571d00ae8e5a65315f51160ce17cf3f8ad05c6a..4618688acb6608e47d5c263dbdc2eff698fed807 100644
--- a/appengine/logdog/coordinator/logPrefix.go
+++ b/appengine/logdog/coordinator/logPrefix.go
@@ -32,14 +32,17 @@ type LogPrefix struct {
Schema string
// Created is the time when this stream was created.
- Created time.Time
+ Created time.Time `gae:",noindex"`
// Prefix is this log stream's prefix value. Log streams with the same prefix
// are logically grouped.
//
// This value should not be changed once populated, as it will invalidate the
// HashID.
- Prefix string
+ Prefix string `gae:",noindex"`
+
+ // Source is the (indexed) set of source strings sent by the prefix registrar.
+ Source []string
// Secret is the Butler secret value for this prefix. All streams within
// the prefix share this secret value.
« no previous file with comments | « appengine/logdog/coordinator/hierarchy/hierarchy.go ('k') | appengine/logdog/coordinator/logStream.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698