Documentation ¶
Overview ¶
Package butler is the main engine for the Butler executable. It is an internal package to support go.chromium.org/luci/logdog/client/cmd/logdog_butler.
Index ¶
Constants ¶
const ( // DefaultMaxBufferAge is the default amount of time that a log entry may // be buffered before being dispatched. DefaultMaxBufferAge = time.Duration(5 * time.Second) // DefaultOutputWorkers is the default number of output workers to use. DefaultOutputWorkers = 16 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Butler ¶
type Butler struct {
// contains filtered or unexported fields
}
Butler is the Butler application structure. The Butler runs until closed. During operation, it acts as a service manager and data router, routing: - Messages from Streams to the attached Output. - Streams from a StreamServer to the Stream list (AddStream).
func (*Butler) Activate ¶
func (b *Butler) Activate()
Activate notifies the Butler that its current stream load is sufficient. This enables it to exit Run when it reaches a stream count of zero. Prior to activation, the Butler would block in Run regardless of stream count.
func (*Butler) AddStream ¶
func (b *Butler) AddStream(rc io.ReadCloser, p *streamproto.Properties) error
AddStream adds a Stream to the Butler. This is goroutine-safe.
If no error is returned, the Butler assumes ownership of the supplied stream. The stream will be closed when processing is finished.
If an error is occurred, the caller is still the owner of the stream and is responsible for closing it.
func (*Butler) AddStreamServer ¶
func (b *Butler) AddStreamServer(streamServer streamserver.StreamServer)
AddStreamServer adds a StreamServer to the Butler. This is goroutine-safe and may be called anytime before or during Butler execution.
After this call completes, the Butler assumes ownership of the StreamServer.
func (*Butler) Streams ¶
func (b *Butler) Streams() []types.StreamName
Streams returns a sorted list of stream names that have been registered to the Butler.
type Config ¶
type Config struct { // Output is the output instance to use for log dispatch. Output output.Output // OutputWorkers is the number of simultaneous goroutines that will be used // to output Butler log data. If zero, DefaultOutputWorkers will be used. OutputWorkers int // Project is the project that the log stream will be bound to. Project types.ProjectName // Prefix is the log stream common prefix value. Prefix types.StreamName // GlobalTags are a set of global log stream tags to apply to individual // streams on registration. Individual stream tags will override tags with // the same key. GlobalTags streamproto.TagMap // BufferLogs, if true, instructs the butler to buffer collected log data // before sending it to Output. BufferLogs bool // If buffering logs, this is the maximum amount of time that a log will // be buffered before being marked for dispatch. If this is zero, // DefaultMaxBufferAge will be used. MaxBufferAge time.Duration // TeeStdout, if not nil, is the Writer that will be used for streams // requesting STDOUT tee. TeeStdout io.Writer // TeeStderr, if not nil, is the Writer that will be used for streams // requesting STDERR tee. TeeStderr io.Writer // IOKeepAliveInterval configures the Butler to perform I/O pings. // // The Butler will monitor I/O events on all of its subordinate streams. If // a stream receives I/O, and no streams marked "IOKeepAlive" have written // I/O in this period, an I/O keep-alive event will be written to all // "IOKeepAlive" streams. IOKeepAliveInterval time.Duration // IOKeepAliveWriter is an io.Writer to send keep-alive updates through. This // must be set for I/O keep-alive to be active. IOKeepAliveWriter io.Writer }
Config is the set of Butler configuration parameters.
Directories ¶
Path | Synopsis |
---|---|
Package bootstrap handles Butler-side bootstrapping functionality.
|
Package bootstrap handles Butler-side bootstrapping functionality. |
Package bundler is responsible for efficiently transforming aggregate stream data into Butler messages for export.
|
Package bundler is responsible for efficiently transforming aggregate stream data into Butler messages for export. |
Package output contains interfaces and implementations for Butler Outputs, which are responsible for delivering Butler protobufs to LogDog collection endpoints.
|
Package output contains interfaces and implementations for Butler Outputs, which are responsible for delivering Butler protobufs to LogDog collection endpoints. |
log
Package log implements the "log" Output.
|
Package log implements the "log" Output. |
pubsub
Package pubsub implements the "pubsub" Output.
|
Package pubsub implements the "pubsub" Output. |