package storage import "time" type LogEntry struct { Timestamp time.Time `ch:"timestamp"` Level string `ch:"level"` Service string `ch:"service"` Agent string `ch:"agent"` Message string `ch:"message"` }