Files
logviewer/web/static/logviewer.css
T
unkin-agent abc81e60c8
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
Add logviewer: web UI for the ClickHouse log store
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.
2026-08-23 16:39:22 +10:00

15 lines
644 B
CSS

.mono, #log-table td.msg, #log-table td.col-ts, .detail-table td {
font-family: Menlo, Monaco, Consolas, "Liberation Mono", monospace;
font-size: 12px;
}
#log-table td { vertical-align: top; word-break: break-all; }
#log-table .col-ts { white-space: nowrap; width: 190px; }
#log-table .col-src { width: 260px; }
#log-table .col-sev { width: 80px; }
#log-table tbody tr.log-row { cursor: pointer; }
#log-table tr.detail-row td { background: #f7f7f9; }
.detail-table { margin-bottom: 4px; }
.detail-table th { width: 160px; }
.sev-error, .sev-fatal, .sev-crit { }
#tail-toggle.active, #sql-toggle.active { background: #337ab7; color: #fff; }