Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Monitor ¶
type Monitor interface { // Start returns a channel of log messages which are sent // every time a log message occurs Start() <-chan []byte // Stop de-registers the sink from the InterceptLogger // and closes the log channels Stop() }
Monitor provides a mechanism to stream logs using go-hclog InterceptLogger and SinkAdapter. It allows streaming of logs at a different log level than what is set on the logger.
func NewMonitor ¶
func NewMonitor(buf int, logger log.InterceptLogger, opts *log.LoggerOptions) (Monitor, error)
NewMonitor creates a new Monitor. Start must be called in order to actually start streaming logs. buf is the buffer size of the channel that sends log messages.
Click to show internal directories.
Click to hide internal directories.