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

Unified Diff: appengine/cmd/milo/logdog/logDogStream.go

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Rebarse Created 4 years, 5 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/cmd/milo/logdog/logDogBuild.go ('k') | appengine/cmd/milo/swarming/build.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/cmd/milo/logdog/logDogStream.go
diff --git a/appengine/cmd/milo/logdog/logDogStream.go b/appengine/cmd/milo/logdog/logDogStream.go
index 265c2a45cfdbbb494a1cab88290de9399e806351..270d0fca8cd1d4640796b3ef5eae0523324f972e 100644
--- a/appengine/cmd/milo/logdog/logDogStream.go
+++ b/appengine/cmd/milo/logdog/logDogStream.go
@@ -5,8 +5,6 @@
package logdog
import (
- "fmt"
-
miloProto "github.com/luci/luci-go/common/proto/milo"
)
@@ -20,11 +18,6 @@ type Streams struct {
Streams map[string]*Stream
}
-// GetFullPath returns the canonical URL of the logdog stream.
-func (s *Stream) GetFullPath() string {
- return fmt.Sprintf("https://%s/%s/+/%s", s.Server, s.Prefix, s.Path)
-}
-
// Stream represents a single LogDog style stream, which can contain either
// annotations (assumed to be MiloProtos) or text. Other types of annotations are
// not supported.
« no previous file with comments | « appengine/cmd/milo/logdog/logDogBuild.go ('k') | appengine/cmd/milo/swarming/build.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698