Added hack support for logs streaming cruft

This commit is contained in:
Milos Gajdos
2019-11-30 12:39:29 +00:00
parent 7f1dea72f2
commit ecdadef633
5 changed files with 112 additions and 24 deletions

View File

@@ -34,8 +34,8 @@ func NewLog(opts ...Option) Log {
// Write writes logs into logger
func (l *defaultLog) Write(v ...interface{}) {
l.Buffer.Put(fmt.Sprint(v...))
golog.Print(v...)
l.Buffer.Put(fmt.Sprint(v...))
}
// Read reads logs and returns them
@@ -53,10 +53,10 @@ func (l *defaultLog) Read(opts ...ReadOption) []Record {
}
// only if we specified valid count constraint
// do we do some serious if-else kung-fu
// if since has been given we return *count* number of
// logs since the requested timestamp;
// otherwise we retourn last count number of logs
// do we end up doing some serious if-else kung-fu
// if since constraint has been provided
// we return *count* number of logs since the given timestamp;
// otherwise we return last count number of logs
if options.Count > 0 {
switch len(entries) > 0 {
case true:
@@ -80,3 +80,25 @@ func (l *defaultLog) Read(opts ...ReadOption) []Record {
return records
}
// Stream returns channel for reading log records
func (l *defaultLog) Stream(stop chan bool) <-chan Record {
// get stream channel from ring buffer
stream := l.Buffer.Stream(stop)
records := make(chan Record)
fmt.Println("requested log stream")
// stream the log records
go func() {
for entry := range stream {
records <- Record{
Timestamp: entry.Timestamp,
Value: entry.Value,
Metadata: make(map[string]string),
}
}
}()
return records
}

View File

@@ -22,6 +22,8 @@ type Log interface {
Read(...ReadOption) []Record
// Write writes logs to logger
Write(...interface{})
// Stream logs
Stream(chan bool) <-chan Record
}
// Record is log record entry