1
2
3
4
5
6
7
8
9
| -- RCS 站点轮询出站审计(http-audit.whitelist-only=true 时需命中规则才写 sys_http_audit_log)
| SET NAMES utf8mb4;
|
| INSERT INTO `sys_http_audit_rule` (
| `rule_type`, `match_mode`, `pattern`, `direction`,
| `request_max_chars`, `response_max_chars`, `enabled`, `record_all`, `sort_order`, `remark`, `deleted`
| ) VALUES
| ('URI', 'PREFIX', '/cv/station/getTaskNo', 'OUT', -1, -1, 1, 0, 110, 'RCS GET /cv/station/getTaskNo', 0),
| ('URI', 'PREFIX', '/cv/station/getError', 'OUT', -1, -1, 1, 0, 111, 'RCS /cv/station/getError', 0);
|
|