Full rebrand across cosmetic branding, code identifiers, and infrastructure/data-plane naming, using the supplied Cairn OBS logo package. Cosmetic: favicon/logo swap (also closes a stale license-audit finding -- the old favicon was SvelteKit's unreplaced scaffold logo), new centered welcome landing page, larger/legible sidebar logo, page titles, CLAUDE.md/README/docs prose. Code identifiers: Go module path github.com/sentry/sentry -> github.com/cairnobs/cairnobs across all 13 modules and ~91 files (protoc regenerated); Rust crates sentry-agent/sentry-parser/sentry-search -> cairnobs-*; CLI sentryctl -> cairnobsctl; Terraform provider fully renamed (sentry_dashboard etc. -> cairnobs_dashboard, provider type, env vars); every session/auth cookie name; agent config paths and Windows service identity. Deliberately preserved: the gRPC wire protocol's protobuf packages (sentry.logs.v1, sentry.agent.v1) and their Go import directory (proto/sentry/...) -- renaming the wire-level package would break every currently-deployed agent binary (confirmed two real hosts, including mail.inbuxa.com, are actively streaming through this exact contract) until rebuilt and redeployed in lockstep with an ingest cutover. Only the Go module path wrapping the generated code changes. Infrastructure: every docker-compose container name (root and three component-level compose files); the Helm chart (directory, Chart.yaml, named-template helpers, all templates, values.yaml image repos); Kubernetes Operator (CRD group sentry.io -> cairnobs.io, both CRD YAML files, Go identifiers, RBAC markers); the coupled enterprise/tenantcrd package. Caught and fixed real path-coupling bugs along the way: the Helm chart's search/ingest volume mounts and the dev-only-credential detection constant vs. docker-compose.yml's literal values had to move together or a security warning would have silently stopped firing. Data plane: Postgres database sentry_metadata -> cairnobs_metadata and role sentry -> cairnobs; ClickHouse database sentry -> cairnobs; Kafka topic sentry.logs.raw -> cairnobs.logs.raw and its consumer groups. Source-level defaults, docker-compose.yml, and every migrate.sh/ provision script default updated together; already-applied migration files left untouched per this repo's immutable-migration convention. Verified at every layer: all 13 Go modules build/vet/test clean, both Rust workspaces (agent, search) build/clippy/test clean, npm run check/ build clean, docker compose config validates on all four compose files. Live-verified against a real docker stack multiple times through this work, including a final fresh-volume run confirming the actual renamed Postgres database/role, ClickHouse database, and Kafka topic all work end to end with a real login and query, zero console errors.
193 lines
6.9 KiB
Go
193 lines
6.9 KiB
Go
// Command enterprise-ingest is the multi-tenant-aware alternative to
|
|
// running `ingest -mode=consumer` -- reads the same shared
|
|
// sentry.logs.raw Redpanda topic ingest/cmd/ingest's agent-facing
|
|
// server half (PushBatch) produces onto (see that binary's doc
|
|
// comment), but writes each record into its own tenant's dedicated
|
|
// ClickHouse database (enterprise/internal/chwriter) instead of the one
|
|
// shared table `ingest -mode=consumer` always writes to.
|
|
//
|
|
// Why a second binary, not a flag on ingest/cmd/ingest: ingest is AGPL
|
|
// core and must never import enterprise/ (hack/check-tenant-boundary.sh
|
|
// enforces this) -- there is no way for ingest's own binary to
|
|
// construct an enterprise-supplied chwriter.Registry (which needs
|
|
// rbacstore's per-tenant ClickHouse credentials) without that import.
|
|
// enterprise/ importing ingest/ is the allowed direction, so this
|
|
// binary lives here instead, reusing ingest/consumer.Consumer's own
|
|
// flush loop unchanged with a tenant-aware writer swapped in -- the
|
|
// exact same "second binary" shape as enterprise/cmd/enterprise-api
|
|
// next to api/cmd/api.
|
|
//
|
|
// A real multi-tenant deployment runs this binary INSTEAD OF (not
|
|
// alongside) `ingest -mode=consumer` -- `ingest -mode=server` (the
|
|
// agent-facing half, which tags records with a tenant_id via
|
|
// TenantResolver) keeps running unchanged and unconditionally either
|
|
// way; only which process consumes sentry.logs.raw and where it writes
|
|
// changes.
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log/slog"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
"strings"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/jackc/pgx/v5/pgxpool"
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
"github.com/cairnobs/cairnobs/enterprise/internal/chwriter"
|
|
"github.com/cairnobs/cairnobs/enterprise/internal/ingestconfig"
|
|
"github.com/cairnobs/cairnobs/enterprise/internal/rbacstore"
|
|
"github.com/cairnobs/cairnobs/ingest/consumer"
|
|
)
|
|
|
|
// dataSourceRefreshInterval matches search/src/tenants.rs's
|
|
// REFRESH_INTERVAL -- both close the same disclosed asymmetry
|
|
// (/docs/security/threat-model.md's "Read this first") on their
|
|
// respective storage engines, so they use the same staleness bound.
|
|
const dataSourceRefreshInterval = time.Minute
|
|
|
|
func main() {
|
|
logger := slog.New(slog.NewJSONHandler(os.Stdout, nil))
|
|
|
|
cfg, err := ingestconfig.Load()
|
|
if err != nil {
|
|
logger.Error("loading config", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
for _, w := range cfg.DevCredentialWarnings() {
|
|
logger.Warn(w)
|
|
}
|
|
|
|
if len(os.Args) > 1 && os.Args[1] == "-healthcheck" {
|
|
os.Exit(runHealthcheck(cfg.HTTPListenAddr))
|
|
}
|
|
|
|
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
|
|
defer stop()
|
|
|
|
pgDSN := fmt.Sprintf("postgres://%s:%s@%s/%s", cfg.Postgres.Username, cfg.Postgres.Password, cfg.Postgres.Addr, cfg.Postgres.Database)
|
|
pgPool, err := pgxpool.New(ctx, pgDSN)
|
|
if err != nil {
|
|
logger.Error("opening postgres pool", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
defer pgPool.Close()
|
|
if err := pgPool.Ping(ctx); err != nil {
|
|
logger.Error("pinging postgres", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
rbac := rbacstore.NewStore(pgPool)
|
|
|
|
// Same source of truth chrunner.Registry (the read side) already
|
|
// uses -- active+credentialed tenants only, see
|
|
// rbacstore.ListProvisionedDataSources's doc comment. A tenant
|
|
// that's mid-provisioning simply has no writer in the registry
|
|
// below, so chwriter.Registry.WriteBatch refuses it the same way
|
|
// chrunner.Registry.RunSQL already refuses an unprovisioned tenant
|
|
// on the read side. lister is reused below for periodic refresh,
|
|
// not just this one startup call.
|
|
lister := tenantDataSourceLister(rbac)
|
|
chwSources, err := lister(ctx)
|
|
if err != nil {
|
|
logger.Error("listing provisioned data sources", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
logger.Info("loaded tenant data sources", "count", len(chwSources))
|
|
|
|
registry, err := chwriter.New(ctx, cfg.ClickHouseAddr, chwSources)
|
|
if err != nil {
|
|
logger.Error("building tenant write registry", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
defer registry.Close()
|
|
|
|
c := consumer.New(logger, consumer.Config{
|
|
Brokers: cfg.Redpanda.Brokers, Topic: cfg.Redpanda.Topic, ConsumerGroup: cfg.Redpanda.ConsumerGroup,
|
|
BatchMaxSize: cfg.Batch.MaxSize, FlushIntervalMS: cfg.Batch.FlushIntervalMS,
|
|
}, registry)
|
|
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("GET /healthz", func(w http.ResponseWriter, _ *http.Request) { w.WriteHeader(http.StatusOK) })
|
|
srv := &http.Server{Addr: cfg.HTTPListenAddr, Handler: mux}
|
|
|
|
g, ctx := errgroup.WithContext(ctx)
|
|
// Closes the staleness gap disclosed in
|
|
// /docs/security/threat-model.md as an asymmetry with search's
|
|
// tenants.ActiveTenantTracker: the writer map built above was a
|
|
// startup-only snapshot until this call -- now it re-lists and
|
|
// reconciles every dataSourceRefreshInterval, stopping when ctx is
|
|
// cancelled (same shutdown path c.Run below uses).
|
|
registry.StartRefreshing(ctx, lister, dataSourceRefreshInterval, logger)
|
|
g.Go(func() error { return c.Run(ctx) })
|
|
g.Go(func() error {
|
|
logger.Info("enterprise-ingest healthz listening", "addr", cfg.HTTPListenAddr)
|
|
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
g.Go(func() error {
|
|
<-ctx.Done()
|
|
shutdownCtx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
return srv.Shutdown(shutdownCtx)
|
|
})
|
|
|
|
logger.Info("enterprise-ingest started")
|
|
if err := g.Wait(); err != nil {
|
|
logger.Error("enterprise-ingest exited with error", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// tenantDataSourceLister adapts rbacstore's row shape into
|
|
// []chwriter.DataSource -- shared between the initial synchronous load
|
|
// above (must succeed before this binary does anything) and
|
|
// chwriter.Registry.StartRefreshing's periodic re-list, so the two
|
|
// never drift into checking different things.
|
|
func tenantDataSourceLister(rbac *rbacstore.Store) chwriter.SourceLister {
|
|
return func(ctx context.Context) ([]chwriter.DataSource, error) {
|
|
sources, err := rbac.ListProvisionedDataSources(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
chwSources := make([]chwriter.DataSource, 0, len(sources))
|
|
for _, s := range sources {
|
|
if s.ClickHouseUsername == nil || s.ClickHousePassword == nil {
|
|
continue // ListProvisionedDataSources already filters these out; defensive only.
|
|
}
|
|
chwSources = append(chwSources, chwriter.DataSource{
|
|
TenantID: s.TenantID, Database: s.ClickHouseDatabaseName,
|
|
Username: *s.ClickHouseUsername, Password: *s.ClickHousePassword,
|
|
})
|
|
}
|
|
return chwSources, nil
|
|
}
|
|
}
|
|
|
|
// runHealthcheck mirrors every other binary in this repo's
|
|
// -healthcheck self-check mode -- execs the binary against itself
|
|
// rather than using an external tool (see e.g. api/cmd/api/main.go's
|
|
// runHealthcheck doc comment).
|
|
func runHealthcheck(listenAddr string) int {
|
|
addr := listenAddr
|
|
if strings.HasPrefix(addr, ":") {
|
|
addr = "localhost" + addr
|
|
}
|
|
client := http.Client{Timeout: 3 * time.Second}
|
|
resp, err := client.Get("http://" + addr + "/healthz")
|
|
if err != nil {
|
|
return 1
|
|
}
|
|
defer resp.Body.Close()
|
|
if resp.StatusCode != http.StatusOK {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|