|
163 | 163 | </createProcedure> |
164 | 164 | <sql dbms="postgresql" splitStatements="true" stripComments="true"> |
165 | 165 | <![CDATA[ |
166 | | - INSERT INTO utm_logstash_filter (id, logstash_filter, filter_name, filter_group_id, system_owner, module_name, is_active, filter_version) |
| 166 | +
|
| 167 | + INSERT INTO utm_data_types (id, data_type, data_type_name, data_type_description, last_update, included, system_owner) |
| 168 | + VALUES (49, 'suricata', 'Suricata', 'Used to filter logs and apply alerting rules related to Suricata integration', '2025-08-22 21:35:38.627000', true, true); |
| 169 | +
|
| 170 | + INSERT INTO utm_logstash_filter (id, logstash_filter, filter_name, filter_group_id, system_owner, module_name, is_active, filter_version, data_type_id) |
167 | 171 | VALUES (1530, $$filter { |
168 | 172 |
|
169 | 173 | # Suricata filter version 1.0.4 |
|
577 | 581 | remove_field => ["original_log_message", "suricata_json"] |
578 | 582 | } |
579 | 583 | } |
580 | | -}$$, 'suricata', null, true, 'SURICATA', false, '2.0.0'); |
| 584 | +}$$, 'suricata', null, true, 'SURICATA', false, '2.0.0', 49); |
581 | 585 | ]]> |
582 | 586 | </sql> |
583 | 587 | <sql dbms="postgresql" splitStatements="true" stripComments="true"> |
|
591 | 595 | INSERT INTO utm_index_pattern (id, pattern, pattern_module, pattern_system, is_active) |
592 | 596 | VALUES (68,'log-suricata-*', 'SURICATA', true, true); |
593 | 597 |
|
594 | | - INSERT INTO utm_data_source_config (data_type, data_type_name, system_owner, included) |
595 | | - VALUES ( 'suricata', 'Suricata', true, true); |
596 | | -
|
597 | 598 | INSERT INTO utm_menu (id, name, url, parent_id, type, dashboard_id, position, menu_active, menu_action, menu_icon, module_name_short) |
598 | 599 | VALUES (266, 'Suricata', 'discover/log-analyzer?patternId=63&indexPattern=log-suricata-*', 200, 1, null, 66, false, false, null, 'SURICATA'); |
599 | 600 |
|
|
0 commit comments