better
This commit is contained in:
@@ -5,9 +5,11 @@ import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"log"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"git.tornberg.me/go-otel/internal/storage"
|
||||
"git.tornberg.me/go-otel/internal/websocket"
|
||||
|
||||
"go.opentelemetry.io/collector/consumer"
|
||||
@@ -21,13 +23,18 @@ type Collector struct {
|
||||
historySize int
|
||||
history *ring.Ring
|
||||
historyMutex sync.RWMutex
|
||||
store storage.Store
|
||||
subscribers map[chan websocket.HistoryEntry]func(websocket.HistoryEntry) bool
|
||||
subMutex sync.Mutex
|
||||
}
|
||||
|
||||
func New(broadcaster websocket.Broadcaster, historySize int) *Collector {
|
||||
func New(broadcaster websocket.Broadcaster, historySize int, store storage.Store) *Collector {
|
||||
return &Collector{
|
||||
broadcaster: broadcaster,
|
||||
historySize: historySize,
|
||||
history: ring.New(historySize),
|
||||
store: store,
|
||||
subscribers: make(map[chan websocket.HistoryEntry]func(websocket.HistoryEntry) bool),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,15 +43,59 @@ func (c *Collector) SetBroadcaster(broadcaster websocket.Broadcaster) {
|
||||
}
|
||||
|
||||
func (c *Collector) addToHistory(dataType websocket.DataType, data interface{}) {
|
||||
c.historyMutex.Lock()
|
||||
defer c.historyMutex.Unlock()
|
||||
|
||||
c.history.Value = websocket.HistoryEntry{
|
||||
entry := websocket.HistoryEntry{
|
||||
Type: string(dataType),
|
||||
Timestamp: time.Now().UnixNano(),
|
||||
Data: data,
|
||||
}
|
||||
|
||||
c.historyMutex.Lock()
|
||||
c.history.Value = entry
|
||||
c.history = c.history.Next()
|
||||
c.historyMutex.Unlock()
|
||||
|
||||
if c.store != nil {
|
||||
// Asynchronously append to store to avoid blocking ingestion
|
||||
go func() {
|
||||
if err := c.store.Append(context.Background(), entry); err != nil {
|
||||
log.Printf("failed to append to store: %v", err)
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
||||
c.notifySubscribers(entry)
|
||||
}
|
||||
|
||||
func (c *Collector) notifySubscribers(entry websocket.HistoryEntry) {
|
||||
c.subMutex.Lock()
|
||||
defer c.subMutex.Unlock()
|
||||
|
||||
for ch, filter := range c.subscribers {
|
||||
if filter(entry) {
|
||||
select {
|
||||
case ch <- entry:
|
||||
// Successfully sent
|
||||
default:
|
||||
// Channel blocked, skip
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Collector) Subscribe(filter func(websocket.HistoryEntry) bool) (chan websocket.HistoryEntry, func()) {
|
||||
ch := make(chan websocket.HistoryEntry, 1)
|
||||
c.subMutex.Lock()
|
||||
c.subscribers[ch] = filter
|
||||
c.subMutex.Unlock()
|
||||
|
||||
cleanup := func() {
|
||||
c.subMutex.Lock()
|
||||
delete(c.subscribers, ch)
|
||||
c.subMutex.Unlock()
|
||||
close(ch)
|
||||
}
|
||||
|
||||
return ch, cleanup
|
||||
}
|
||||
|
||||
func (c *Collector) GetHistory() []websocket.HistoryEntry {
|
||||
@@ -60,6 +111,47 @@ func (c *Collector) GetHistory() []websocket.HistoryEntry {
|
||||
return history
|
||||
}
|
||||
|
||||
func (c *Collector) SearchHistory(ctx context.Context, query string, limit int) ([]websocket.HistoryEntry, error) {
|
||||
if limit <= 0 {
|
||||
limit = 50
|
||||
}
|
||||
|
||||
if c.store != nil {
|
||||
return c.store.Search(ctx, query, limit)
|
||||
}
|
||||
|
||||
// Fallback to in-memory if no store
|
||||
history := c.GetHistory()
|
||||
var filtered []websocket.HistoryEntry
|
||||
// Lowercase query for case-insensitive search
|
||||
lowerQuery := strings.ToLower(query)
|
||||
|
||||
for _, entry := range history {
|
||||
if query == "" {
|
||||
filtered = append(filtered, entry)
|
||||
} else {
|
||||
// Basic string filter for in-memory
|
||||
data, _ := json.Marshal(entry.Data)
|
||||
if strings.Contains(strings.ToLower(string(data)), lowerQuery) {
|
||||
filtered = append(filtered, entry)
|
||||
}
|
||||
}
|
||||
// Keep it simple and just filter all then limit, since historySize is usually small
|
||||
}
|
||||
|
||||
// Respect limit and return latest messages first
|
||||
if len(filtered) > limit {
|
||||
filtered = filtered[len(filtered)-limit:]
|
||||
}
|
||||
|
||||
// Reverse to match Store's Search behavior (latest first)
|
||||
for i, j := 0, len(filtered)-1; i < j; i, j = i+1, j-1 {
|
||||
filtered[i], filtered[j] = filtered[j], filtered[i]
|
||||
}
|
||||
|
||||
return filtered, nil
|
||||
}
|
||||
|
||||
func (c *Collector) ConsumeTraces(ctx context.Context, td ptrace.Traces) error {
|
||||
marshaler := &ptrace.JSONMarshaler{}
|
||||
buf, err := marshaler.MarshalTraces(td)
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
package collector
|
||||
|
||||
import (
|
||||
"context"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"git.tornberg.me/go-otel/internal/websocket"
|
||||
)
|
||||
|
||||
type mockStore struct {
|
||||
entries []websocket.HistoryEntry
|
||||
}
|
||||
|
||||
func (m *mockStore) Append(ctx context.Context, entry websocket.HistoryEntry) error {
|
||||
m.entries = append(m.entries, entry)
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mockStore) GetHistory(ctx context.Context, limit int) ([]websocket.HistoryEntry, error) {
|
||||
return m.entries, nil
|
||||
}
|
||||
|
||||
func (m *mockStore) Search(ctx context.Context, query string, limit int) ([]websocket.HistoryEntry, error) {
|
||||
return m.entries, nil
|
||||
}
|
||||
|
||||
func TestCollectorWithStore(t *testing.T) {
|
||||
store := &mockStore{}
|
||||
coll := New(nil, 10, store)
|
||||
|
||||
coll.addToHistory(websocket.DataTypeLogs, map[string]interface{}{"msg": "test"})
|
||||
|
||||
// Give it a moment since it's asynchronous
|
||||
timeout := time.After(100 * time.Millisecond)
|
||||
for {
|
||||
select {
|
||||
case <-timeout:
|
||||
t.Fatal("timed out waiting for entry to be appended to store")
|
||||
default:
|
||||
if len(store.entries) > 0 {
|
||||
goto OK
|
||||
}
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
}
|
||||
}
|
||||
|
||||
OK:
|
||||
if store.entries[0].Type != "logs" {
|
||||
t.Errorf("expected type 'logs', got %s", store.entries[0].Type)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user