abc81e60c8
Single Go binary with embedded Bootstrap 3 + jQuery UI, querying logs.raw over the ClickHouse HTTP interface as the readonly logreader user. Runs behind oauth2-proxy; the app does no auth itself. Server-side enforced time bounds (15m default, 72h max), parameterized queries, raw-SQL WHERE fragment wrapped with enforced bounds and LIMIT, tail polling with a clamped cursor, facets, healthz. Woodpecker build/test plus tag-driven image push to artifactapi docker-internal.
8 lines
143 B
Go
8 lines
143 B
Go
// Package web embeds the UI so the server binary is self-contained.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
//go:embed index.html static
|
|
var FS embed.FS
|