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

Unified Diff: client/internal/logdog/butler/output/doc.go

Issue 1211053004: LogDog: Add Butler Output package. (Closed) Base URL: https://github.com/luci/luci-go@logdog-review-streamserver
Patch Set: Relocate butlerproto to common, document. Created 5 years, 1 month 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 | « no previous file | client/internal/logdog/butler/output/log/doc.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/internal/logdog/butler/output/doc.go
diff --git a/client/internal/logdog/butler/output/doc.go b/client/internal/logdog/butler/output/doc.go
new file mode 100644
index 0000000000000000000000000000000000000000..a4616525b7eb9a28557b3d6887a6c50edcc65979
--- /dev/null
+++ b/client/internal/logdog/butler/output/doc.go
@@ -0,0 +1,15 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Package output contains interfaces and implementations for Butler Outputs,
+// which are responsible for delivering Butler protobufs to LogDog collection
+// endpoints.
+//
+// Output instance implementations must be goroutine-safe. The Butler may elect
+// to output multiple messages at the same time.
+//
+// The package current provides the following implementations:
+// - pubsub: Write logs to Google Cloud Pub/Sub.
+// - log: (Debug/testing) data is dumped to the installed Logger instance.
+package output
« no previous file with comments | « no previous file | client/internal/logdog/butler/output/log/doc.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698