@@ -261,6 +261,21 @@ Single Resource Triggers
261261
262262For triggers that fire only on Pod errors, see :ref: `Crashing Pod Triggers `.
263263
264+ .. note ::
265+
266+ By default, Robusta processes only **Pod ** change events that are related to failures or modifications in the **Pod ** spec.
267+ Other types of **Pod ** changes are considered less relevant and are filtered out to reduce noise.
268+
269+ To process **all Pod ** change events, add the following configuration to your `generated_values.yaml ` file.
270+
271+ .. code-block :: yaml
272+
273+ kubewatch :
274+ additional_env_vars :
275+ - name : ADVANCED_FILTERS
276+ value : " false"
277+
278+
264279 .. jinja ::
265280 :inline-ctx: { "resource_name" : "ReplicaSet", "related_actions" : ["related_pods"] }
266281 :header_update_levels:
@@ -296,6 +311,21 @@ For triggers that fire only on Pod errors, see :ref:`Crashing Pod Triggers`.
296311 :header_update_levels:
297312 :file: playbook-reference/triggers/_k8s-generic-triggers.jinja
298313
314+ .. note ::
315+
316+ By default, Robusta processes only **Event Create ** events with the type ``Warning ``.
317+ **Events ** with the type ``Normal `` are considered less relevant and are filtered out to reduce noise,
318+ except for ``Normal `` events that indicate Pod evictions.
319+
320+ To process all Kubernetes **Event ** change events, add the following configuration to your ``generated_values.yaml `` file.
321+
322+ .. code-block :: yaml
323+
324+ kubewatch :
325+ additional_env_vars :
326+ - name : ADVANCED_FILTERS
327+ value : " false"
328+
299329 .. jinja ::
300330 :inline-ctx: { "resource_name" : "HorizontalPodAutoscaler", "related_actions" : [] }
301331 :header_update_levels:
@@ -321,6 +351,20 @@ For triggers that fire only on Pod errors, see :ref:`Crashing Pod Triggers`.
321351 :header_update_levels:
322352 :file: playbook-reference/triggers/_k8s-generic-triggers.jinja
323353
354+ .. note ::
355+
356+ By default, Robusta processes only **Job ** change events that are related to failures or modifications in the **Job ** spec.
357+ Other types of **Job ** changes are considered less relevant and are filtered out to reduce noise.
358+
359+ To process **all Job ** change events, add the following configuration to your ``generated_values.yaml `` file.
360+
361+ .. code-block :: yaml
362+
363+ kubewatch :
364+ additional_env_vars :
365+ - name : ADVANCED_FILTERS
366+ value : " false"
367+
324368 .. jinja ::
325369 :inline-ctx: { "resource_name" : "Namespace", "related_actions" : [] }
326370 :header_update_levels:
0 commit comments