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:25:56 UTC

[skywalking-kubernetes-event-exporter] branch config created (now 65be50e)

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

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


      at 65be50e  Remove filter for event reason, only filter by whether service name is empty or not

This branch includes the following new commits:

     new 65be50e  Remove filter for event reason, only filter by whether service name is empty or not

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[skywalking-kubernetes-event-exporter] 01/01: Remove filter for event reason, only filter by whether service name is empty or not

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 65be50ebdf471ac9f9810836b6642d5e8fb5f628
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Thu May 27 17:25:41 2021 +0800

    Remove filter for event reason, only filter by whether service name is empty or not
---
 assets/default-config.yaml | 2 +-
 examples/debug.yaml        | 6 +++---
 2 files changed, 4 insertions(+), 4 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..c3d0f9f 100644
--- a/examples/debug.yaml
+++ b/examples/debug.yaml
@@ -17,15 +17,15 @@
 #
 
 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.
     action: ""     # filter events of the specified action, regular expression is supported.
-    kind: "Pod|Service"       # filter events of the specified kind, regular expression like "Pod|Service" is supported.
+    kind: ""       # filter events of the specified kind, regular expression like "Pod|Service" is supported.
     namespace: "default"  # filter events from the specified namespace, regular expression like "default|bookinfo" is supported, empty means all namespaces.
     name: ""       # filter events of the specified involved object name, regular expression like ".*bookinfo.*" is supported.
-    service: "[^\\s]{1,}"  # filter events belonging to services whose name is not empty.
+    service: ""  # filter events belonging to services whose name is not empty.
     exporters:     # events satisfy this filter can be exported into several exporters that are defined in the `exporters` section below.
       - console