feat(ops-api/site-mappings): provision monitoring DB pool and readiness check

Open a separate pgx pool for the monitoring database, wire it into the
SiteDomainMappingService, and surface its health in /readyz. Point compose
at the dedicated monitoring-postgres service and align local/dev configs
with the per-instance ports. Also reformat the site_domain_mapping types
with gofmt while the files are touched.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-29 17:10:48 +08:00
parent 665405763c
commit bef55bd11f
9 changed files with 84 additions and 65 deletions
+6 -6
View File
@@ -65,11 +65,11 @@ type AuditLogFilter struct {
}
type SiteDomainMapping struct {
ID int64
ID int64
RegistrableDomain string
SiteKey string
SiteName string
IsActive bool
CreatedAt time.Time
UpdatedAt time.Time
SiteKey string
SiteName string
IsActive bool
CreatedAt time.Time
UpdatedAt time.Time
}