fix(obs): split SigNoz health and public routes

This commit is contained in:
ogt
2026-07-15 03:03:22 +08:00
parent 12a9aa6cca
commit 9a9d1464a5
21 changed files with 246 additions and 34 deletions

View File

@@ -485,9 +485,13 @@ class Settings(BaseSettings):
default="http://192.168.0.112:8080",
description="Kali security scanner URL",
)
SIGNOZ_URL: str = Field(
default="http://192.168.0.188:3301",
description="SigNoz observability URL",
SIGNOZ_INTERNAL_URL: str = Field(
default="http://192.168.0.110:8080",
description="Canonical internal SigNoz query and health URL",
)
SIGNOZ_PUBLIC_URL: str = Field(
default="https://signoz.wooo.work",
description="Public SigNoz UI base URL used only for user-facing deep links",
)
CLICKHOUSE_URL: str = Field(
default="http://192.168.0.188:8123",