Files
releases/plugins/logs/buffer.go
T
Torin Sandall c5106fa49d Remove decision log buffer limit
This change removes the default decision log buffer limit to avoid
unintentionally dropping decision logs. If users are concerned about
memory usage they can set the limit, but by default they will not be
surprised by log discards.

Signed-off-by: Torin Sandall <torinsandall@gmail.com>
2018-06-18 11:32:22 -07:00

65 lines
1.2 KiB
Go

// Copyright 2018 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package logs
import (
"container/list"
)
// logBuffer implements a circular FIFO buffer for the plugin that caps memory
// usage at the configured limit. If the buffer size is exceeded, events from
// the front of the buffer are dropped.
type logBuffer struct {
usage int64
limit int64
l *list.List
}
type logBufferElem struct {
bs []byte
}
func newLogBuffer(limit int64) *logBuffer {
return &logBuffer{
limit: limit,
usage: 0,
l: list.New(),
}
}
func (lb *logBuffer) Push(bs []byte) (dropped int) {
size := int64(len(bs))
if lb.limit > 0 {
for elem := lb.l.Front(); elem != nil && (lb.usage+size > lb.limit); elem = elem.Next() {
drop := elem.Value.(logBufferElem).bs
lb.l.Remove(elem)
lb.usage -= int64(len(drop))
dropped++
}
}
elem := logBufferElem{bs}
lb.l.PushBack(elem)
lb.usage += size
return dropped
}
func (lb *logBuffer) Pop() []byte {
elem := lb.l.Front()
if elem != nil {
e := elem.Value.(logBufferElem)
lb.usage -= int64(len(e.bs))
lb.l.Remove(elem)
return e.bs
}
return nil
}
func (lb *logBuffer) Len() int {
return lb.l.Len()
}