- 4-container stack: ClickHouse, platform (Rocky 9), bot-detector, dashboard - Platform builds sentinel on Rocky (CGO+libpcap native), correlator static - mod-reqin-log compiled with apxs on Rocky (matching RPM build target) - ClickHouse init script patches credentials for test env (sed-based) - 8-phase test runner: schema, traffic gen, pipeline, dashboard API, bot-detector, sentinel - All 13 checks pass, 3 non-blocking warnings (empty dicts, log paths) SQL schema fixes discovered during integration: - 02_dictionaries: IPv6CIDR → String (not a valid ClickHouse type) - 03_anubis_tables: dict_anubis_ua missing has_ip/rule_id/category attrs - 03_anubis_tables: dict_anubis_country FLAT() → COMPLEX_KEY_HASHED() (String key) - 09_audit_table: CODEC before DEFAULT → DEFAULT before CODEC Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
60 lines
2.2 KiB
SQL
60 lines
2.2 KiB
SQL
-- =============================================================================
|
|
-- 02_dictionaries.sql — ASN geo dictionary + bot reference tables
|
|
-- =============================================================================
|
|
|
|
-- -----------------------------------------------------------------------------
|
|
-- IPLocate ASN geo-location dictionary
|
|
-- CSV file must be placed at: /var/lib/clickhouse/user_files/iplocate-ip-to-asn.csv
|
|
-- -----------------------------------------------------------------------------
|
|
DROP DICTIONARY IF EXISTS ja4_processing.dict_iplocate_asn;
|
|
|
|
CREATE DICTIONARY IF NOT EXISTS ja4_processing.dict_iplocate_asn
|
|
(
|
|
network String,
|
|
asn UInt32,
|
|
country_code String,
|
|
name String,
|
|
org String,
|
|
domain String
|
|
)
|
|
PRIMARY KEY network
|
|
SOURCE(FILE(path '/var/lib/clickhouse/user_files/iplocate-ip-to-asn.csv' format 'CSVWithNames'))
|
|
LAYOUT(IP_TRIE())
|
|
LIFETIME(MIN 3600 MAX 7200);
|
|
|
|
|
|
-- -----------------------------------------------------------------------------
|
|
-- Bot network CIDR reference table (ReplacingMergeTree for upserts)
|
|
-- -----------------------------------------------------------------------------
|
|
CREATE TABLE IF NOT EXISTS ja4_processing.ref_bot_networks
|
|
(
|
|
network String,
|
|
bot_name LowCardinality(String),
|
|
is_legitimate UInt8,
|
|
last_update DateTime
|
|
)
|
|
ENGINE = ReplacingMergeTree(last_update)
|
|
ORDER BY (network, bot_name);
|
|
|
|
|
|
-- -----------------------------------------------------------------------------
|
|
-- Bot IP flat table (CSV file engine)
|
|
-- CSV file must be placed at: /var/lib/clickhouse/user_files/bot_ip.csv
|
|
-- -----------------------------------------------------------------------------
|
|
CREATE TABLE IF NOT EXISTS ja4_processing.bot_ip
|
|
(
|
|
ip String
|
|
)
|
|
ENGINE = File(CSV, 'bot_ip.csv');
|
|
|
|
|
|
-- -----------------------------------------------------------------------------
|
|
-- Bot JA4 flat table (CSV file engine)
|
|
-- CSV file must be placed at: /var/lib/clickhouse/user_files/bot_ja4.csv
|
|
-- -----------------------------------------------------------------------------
|
|
CREATE TABLE IF NOT EXISTS ja4_processing.bot_ja4
|
|
(
|
|
ja4 String
|
|
)
|
|
ENGINE = File(CSV, 'bot_ja4.csv');
|