feat(pipeline): add POST /backfill-refs endpoint to retroactively inject source back-references

This commit is contained in:
Mathias Bergqvist
2026-04-23 16:50:00 +02:00
parent 55fa0b503a
commit 1605624668
4 changed files with 211 additions and 0 deletions

View File

@@ -68,6 +68,7 @@ func main() {
mux.HandleFunc("POST /write", h.Write)
mux.HandleFunc("POST /ingest", h.Ingest)
mux.HandleFunc("POST /ingest-path", h.IngestPath)
mux.HandleFunc("POST /backfill-refs", h.BackfillRefs)
addr := ":" + port
watchIntervalLog := "disabled"