chore: add clickhouse as db for logs on agent and search
ci-agent / build (push) Failing after 22s

This commit is contained in:
d3m0k1d
2026-04-03 23:23:43 +03:00
parent 27e82f80f1
commit d96f952d73
9 changed files with 595 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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"`
}