Architecture: - ja4_logs: raw log ingestion (http_logs_raw, http_logs, mv_http_logs) - ja4_processing: analytics, aggregation, ML, dictionaries, audit Configuration (env vars): - CLICKHOUSE_DB_LOGS (default: ja4_logs) - CLICKHOUSE_DB_PROCESSING (default: ja4_processing) Changes: - SQL migrations (10 files): all mabase_prod refs → ja4_logs or ja4_processing with correct cross-database references (MVs, views, dicts) - deploy_schema.sh: substitutes DB names from env vars at deploy time - Python shared settings: added CLICKHOUSE_DB_LOGS + CLICKHOUSE_DB_PROCESSING - Dashboard routes (19 files): replaced ~80 hardcoded mabase_prod refs with settings.CLICKHOUSE_DB_LOGS / settings.CLICKHOUSE_DB_PROCESSING - Bot-detector: DB → CLICKHOUSE_DB_PROCESSING, fetch_rules.py configurable - Correlator: DSN example updated to ja4_logs - Docker-compose + .env files: new env vars with defaults - All documentation updated (14 markdown files) All tests pass: sentinel 10/10, correlator 67.1%, bot-detector 11, dashboard 20, ja4_common 18 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
1001 B
SQL
22 lines
1001 B
SQL
-- =============================================================================
|
|
-- 09_audit_table.sql — SOC audit log table for dashboard activity tracking
|
|
-- Referenced as ja4_processing.audit_logs in dashboard/backend/routes/audit.py
|
|
-- =============================================================================
|
|
|
|
CREATE TABLE IF NOT EXISTS ja4_processing.audit_logs
|
|
(
|
|
`timestamp` DateTime DEFAULT now(),
|
|
`user_name` LowCardinality(String) DEFAULT 'soc_user',
|
|
`action` LowCardinality(String),
|
|
`entity_type` LowCardinality(String) DEFAULT '',
|
|
`entity_id` String DEFAULT '',
|
|
`entity_count` UInt32 DEFAULT 0,
|
|
`details` String CODEC(ZSTD(3)) DEFAULT '',
|
|
`client_ip` String DEFAULT ''
|
|
)
|
|
ENGINE = MergeTree
|
|
PARTITION BY toDate(timestamp)
|
|
ORDER BY (timestamp, user_name, action)
|
|
TTL toDate(timestamp) + INTERVAL 90 DAY
|
|
SETTINGS index_granularity = 8192;
|