You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2022/07/29 12:11:06 UTC

[skywalking] branch master updated: Add a new layer for MYSQL (#9407)

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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new f35a5c41ab Add a new layer for MYSQL (#9407)
f35a5c41ab is described below

commit f35a5c41ab20b68c60fbb655a00aa28a77fb5ce3
Author: yswdqz <74...@users.noreply.github.com>
AuthorDate: Fri Jul 29 20:10:52 2022 +0800

    Add a new layer for MYSQL (#9407)
    
    Layer==MySQL Server, also known as mysqld, is a single multithreaded program that does most of the work in a MySQL installation.
---
 .../java/org/apache/skywalking/oap/server/core/analysis/Layer.java | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/Layer.java b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/Layer.java
index edbcadeb8b..d73259f196 100644
--- a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/Layer.java
+++ b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/Layer.java
@@ -116,7 +116,12 @@ public enum Layer {
     /**
      * Kubernetes service
      */
-    K8S_SERVICE(17, true);
+    K8S_SERVICE(17, true),
+
+    /**
+     * MySQL Server, also known as mysqld, is a single multithreaded program that does most of the work in a MySQL installation. 
+     */
+    MYSQL(18, true);
 
     private final int value;
     /**