The rename commit before this one covered module paths and the obvious user-facing strings; this is the rest of it -- the places where "sentry" was a default value, a filename, or a picture rather than a word in a sentence. Defaults that changed: CLICKHOUSE_DATABASE (sentry -> cairnobs), POSTGRES_DATABASE (sentry_metadata -> cairnobs_metadata), and POSTGRES_USERNAME (sentry -> cairnobs), across api/alerting/ingest and the enterprise binaries, plus the compose files and migrate scripts that create those objects. These are *defaults*, so a deployment that sets them explicitly is unaffected -- but any deployment relying on the old defaults must have its environment updated before it picks this up, or it will come up pointing at a database that doesn't exist. Also: the light-mode logo variants (the dark ones existed alone, so the landing page and sidebar rendered a dark mark on a light background), regenerated favicons, and the docs/README/threat-model prose that still said Sentry.
121 lines
4.2 KiB
Go
121 lines
4.2 KiB
Go
// Package ingestconfig loads enterprise-ingest's configuration from
|
|
// environment variables -- same convention as every other Go service in
|
|
// this repo. Named ingestconfig, not config, to avoid colliding with
|
|
// enterprise/internal/config (enterprise-auth's own, differently-shaped
|
|
// config) within the same module -- mirrors enterprise/internal/
|
|
// apiconfig's own naming reasoning exactly.
|
|
package ingestconfig
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type Config struct {
|
|
// HTTPListenAddr serves only /healthz -- this binary's actual job
|
|
// (Redpanda -> per-tenant ClickHouse) has no other HTTP surface,
|
|
// same "just enough for Docker's HEALTHCHECK" shape as every other
|
|
// binary in this repo's -healthcheck self-check mode.
|
|
HTTPListenAddr string
|
|
// ClickHouseAddr is the shared physical ClickHouse server's native
|
|
// address -- every tenant's connection (enterprise/internal/
|
|
// chwriter.Registry) dials this same address, just with different
|
|
// per-tenant credentials rbacstore already has on file from
|
|
// enterprise-api -provision-tenant. Mirrors apiconfig.Config.
|
|
// ClickHouseAddr's own doc comment.
|
|
ClickHouseAddr string
|
|
Postgres PostgresConfig
|
|
Redpanda RedpandaConfig
|
|
Batch BatchConfig
|
|
}
|
|
|
|
type PostgresConfig struct {
|
|
Addr string
|
|
Database string
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
type RedpandaConfig struct {
|
|
Brokers []string
|
|
Topic string
|
|
ConsumerGroup string
|
|
}
|
|
|
|
type BatchConfig struct {
|
|
MaxSize int
|
|
FlushIntervalMS int
|
|
}
|
|
|
|
// devOnlyCredential is docker-compose.yml's zero-config default for
|
|
// every Postgres/ClickHouse password in this repo -- see
|
|
// api/internal/config.Config.DevCredentialWarnings for the full
|
|
// reasoning (duplicated here per this repo's no-shared-code-between-
|
|
// services convention).
|
|
const devOnlyCredential = "cairnobs-dev-only"
|
|
|
|
// DevCredentialWarnings reports whether the configured Postgres
|
|
// credential still equals the literal dev-only default --
|
|
// cmd/enterprise-ingest/main.go logs it loudly at startup. A warning,
|
|
// not a startup-refusing error: local dev's zero-config
|
|
// docker-compose.yml path legitimately leaves it at this value.
|
|
func (c Config) DevCredentialWarnings() []string {
|
|
if c.Postgres.Password == devOnlyCredential {
|
|
return []string{"POSTGRES_PASSWORD is still the default dev-only value -- set a real password before this is reachable outside local dev"}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Load() (Config, error) {
|
|
cfg := Config{
|
|
HTTPListenAddr: getenv("HTTP_LISTEN_ADDR", ":8084"),
|
|
ClickHouseAddr: getenv("CLICKHOUSE_ADDR", "localhost:9000"),
|
|
Postgres: PostgresConfig{
|
|
Addr: getenv("POSTGRES_ADDR", "localhost:5432"),
|
|
Database: getenv("POSTGRES_DATABASE", "cairnobs_metadata"),
|
|
Username: getenv("POSTGRES_USERNAME", "cairnobs"),
|
|
Password: getenv("POSTGRES_PASSWORD", ""),
|
|
},
|
|
Redpanda: RedpandaConfig{
|
|
Brokers: strings.Split(getenv("REDPANDA_BROKERS", "localhost:9092"), ","),
|
|
// Same default topic ingest/internal/config uses -- this
|
|
// binary reads the identical shared cairnobs.logs.raw topic
|
|
// ingest/cmd/ingest's server half (agent-facing PushBatch)
|
|
// produces onto; there's no per-tenant topic, see
|
|
// ingest/internal/grpcserver's doc comment.
|
|
Topic: getenv("REDPANDA_TOPIC", "cairnobs.logs.raw"),
|
|
// A distinct consumer group from ingest/cmd/ingest's own
|
|
// default ("cairnobs-ingest") -- this binary and a
|
|
// single-tenant `ingest -mode=consumer` must never share a
|
|
// group (each message would only ever reach one of them,
|
|
// silently splitting traffic) even though in practice a
|
|
// real multi-tenant deployment runs this binary *instead
|
|
// of*, not alongside, `ingest -mode=consumer`.
|
|
ConsumerGroup: getenv("REDPANDA_CONSUMER_GROUP", "cairnobs-enterprise-ingest"),
|
|
},
|
|
}
|
|
|
|
maxSize, err := strconv.Atoi(getenv("CONSUMER_BATCH_MAX_SIZE", "500"))
|
|
if err != nil {
|
|
return Config{}, fmt.Errorf("CONSUMER_BATCH_MAX_SIZE: %w", err)
|
|
}
|
|
cfg.Batch.MaxSize = maxSize
|
|
|
|
flushMS, err := strconv.Atoi(getenv("CONSUMER_BATCH_FLUSH_INTERVAL_MS", "2000"))
|
|
if err != nil {
|
|
return Config{}, fmt.Errorf("CONSUMER_BATCH_FLUSH_INTERVAL_MS: %w", err)
|
|
}
|
|
cfg.Batch.FlushIntervalMS = flushMS
|
|
|
|
return cfg, nil
|
|
}
|
|
|
|
func getenv(key, fallback string) string {
|
|
if v := os.Getenv(key); v != "" {
|
|
return v
|
|
}
|
|
return fallback
|
|
}
|