Fix cluster node value in event stream configuration to include instance number
taylorwalton committed
Nov 21, 2025 at 12:27 UTC
1a8da503e80a4513a934401450584103ea44c09d
1 file changed
+1
-1
backend/app/customer_provisioning/services/graylog.py
+1
-1
@@ -138,7 +138,7 @@ def build_event_stream_config(
138
"inverted": False,
139
"value": request.customer_code,
140
},
141
- {"field": "cluster_node", "type": 1, "inverted": False, "value": f"wazuh.worker.{sanitized_name}"},
141
+ {"field": "cluster_node", "type": 1, "inverted": False, "value": f"wazuh.worker.{sanitized_name}.1"},
142
],
143
matching_type="OR",
144
remove_matches_from_default_stream=True,