You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/05/27 09:55:33 UTC

[skywalking-kubernetes-event-exporter] branch main updated: Remove filter for event reason, only filter by whether service name is empty or not (#10)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-kubernetes-event-exporter.git


The following commit(s) were added to refs/heads/main by this push:
     new 350f0df  Remove filter for event reason, only filter by whether service name is empty or not (#10)
350f0df is described below

commit 350f0df3b919f2f5a9e41ff6ad9c51d7a9e1d5bc
Author: Zhenxu <ke...@apache.org>
AuthorDate: Thu May 27 17:55:27 2021 +0800

    Remove filter for event reason, only filter by whether service name is empty or not (#10)
---
 assets/default-config.yaml | 2 +-
 examples/debug.yaml        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/assets/default-config.yaml b/assets/default-config.yaml
index 27753d3..d3bd1f6 100644
--- a/assets/default-config.yaml
+++ b/assets/default-config.yaml
@@ -17,7 +17,7 @@
 #
 
 filters:
-  - reason: "Started|Killing"     # filter events of the specified reason, regular expression like "Killing|Killed" is supported.
+  - reason: ""     # filter events of the specified reason, regular expression like "Killing|Killed" is supported.
     message: ""    # filter events of the specified message, regular expression like "Pulling container.*" is supported.
     minCount: 1    # filter events whose count is >= the specified value.
     type: ""       # filter events of the specified type, regular expression like "Normal|Error" is supported.
diff --git a/examples/debug.yaml b/examples/debug.yaml
index 603867d..af73fba 100644
--- a/examples/debug.yaml
+++ b/examples/debug.yaml
@@ -17,7 +17,7 @@
 #
 
 filters:
-  - reason: "Started|Killing"     # filter events of the specified reason, regular expression like "Killing|Killed" is supported.
+  - reason: ""     # filter events of the specified reason, regular expression like "Killing|Killed" is supported.
     message: ""    # filter events of the specified message, regular expression like "Pulling container.*" is supported.
     minCount: 1    # filter events whose count is >= the specified value.
     type: ""       # filter events of the specified type, regular expression like "Normal|Error" is supported.