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/11/22 02:31:51 UTC

[skywalking-showcase] branch main updated (e2fcc94 -> 7764a6f)

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

kezhenxu94 pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git.


 discard e2fcc94  Add missing group name for event exporter
     new 7764a6f  Add missing group name for event exporter

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e2fcc94)
            \
             N -- N -- N   refs/heads/main (7764a6f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 deploy/platform/kubernetes/feature-event/resources.yaml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

[skywalking-showcase] 01/01: Add missing group name for event exporter

Posted by ke...@apache.org.
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-showcase.git

commit 7764a6fb4fdbd19430d04fbb4aaebc624aede2bf
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Mon Nov 22 10:27:25 2021 +0800

    Add missing group name for event exporter
---
 deploy/platform/kubernetes/feature-event/resources.yaml | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/deploy/platform/kubernetes/feature-event/resources.yaml b/deploy/platform/kubernetes/feature-event/resources.yaml
index 40c7158..56f5edc 100644
--- a/deploy/platform/kubernetes/feature-event/resources.yaml
+++ b/deploy/platform/kubernetes/feature-event/resources.yaml
@@ -43,15 +43,26 @@ metadata:
 data:
   config.yaml: |
     filters:
-      - namespace: ${NAMESPACE}|${NAMESPACE}-agentless
+      - namespace: ${NAMESPACE}
         exporters:
           - skywalking
+      - namespace: ${NAMESPACE}-agentless
+        exporters:
+          - skywalking-agentless
 
     exporters:
       skywalking:
         template:
           source:
-            service: "{{ .Service.Name }}"
+            service: agent::"{{ .Service.Name }}"
+            serviceInstance: "{{ .Pod.Name }}"
+            endpoint: ""
+          message: "{{ .Event.Message }}"
+        address: "oap:11800"
+      skywalking-agentless:
+        template:
+          source:
+            service: agentless::"{{ .Service.Name }}"
             serviceInstance: "{{ .Pod.Name }}"
             endpoint: ""
           message: "{{ .Event.Message }}"