Re: [PR] Optimize to final type [skywalking-java]

2023-11-14 Thread via GitHub


ruqinhu commented on PR #648:
URL: https://github.com/apache/skywalking-java/pull/648#issuecomment-1811957393

   > In theory, it is. But usually, the compiler and JIT would do that 
automatically, as they detected no one is going to change that, it is safe to 
cache during process.
   > 
   > And the codes you changed seem to be not called in high frequency.
   
   
org.apache.skywalking.apm.agent.core.plugin.loader.InterceptorInstanceLoader#load
 seem to  called in high frequency.
   
   Remove not used check, because Class.forName not find class, will throw 
ClassNotFoundException instead of null.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Fix wrong plugin structure [skywalking-go]

2023-11-14 Thread via GitHub


lujiajing1126 commented on code in PR #150:
URL: https://github.com/apache/skywalking-go/pull/150#discussion_r1393778468


##
tools/go-agent/instrument/plugins/instrument.go:
##
@@ -107,9 +108,8 @@ func (i *Instrument) CouldHandle(opts *api.CompileOptions) 
bool {
// check the version of the framework could handler
version, err := i.tryToFindThePluginVersion(opts, ins)
if err != nil {
-   // Local package (e.g. replaced toolkit) does not have 
version.
-   // So when the version is not detected, we should not 
skip it.
-   logrus.Warnf("the plugin %s %s", ins.Name(), err)
+   logrus.Warnf("ignore the plugin %s, because %s", 
ins.Name(), err)
+   continue

Review Comment:
   > I remember this is used to handle the check for missing version 
information when `replacing` in `go.mod`, @Alipebt could you help to re-check?
   
   I found the solution (w/ `go/build`.IsLocalImport) is not correct. Let me 
find another way



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Fix wrong plugin structure [skywalking-go]

2023-11-14 Thread via GitHub


lujiajing1126 commented on code in PR #150:
URL: https://github.com/apache/skywalking-go/pull/150#discussion_r1393778468


##
tools/go-agent/instrument/plugins/instrument.go:
##
@@ -107,9 +108,8 @@ func (i *Instrument) CouldHandle(opts *api.CompileOptions) 
bool {
// check the version of the framework could handler
version, err := i.tryToFindThePluginVersion(opts, ins)
if err != nil {
-   // Local package (e.g. replaced toolkit) does not have 
version.
-   // So when the version is not detected, we should not 
skip it.
-   logrus.Warnf("the plugin %s %s", ins.Name(), err)
+   logrus.Warnf("ignore the plugin %s, because %s", 
ins.Name(), err)
+   continue

Review Comment:
   > I remember this is used to handle the check for missing version 
information when `replacing` in `go.mod`, @Alipebt could you help to re-check?
   
   I found the solution is not correct. Let me find another way



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-go) branch fix-wrong-dir-structure updated (d47d56f -> 584a5b3)

2023-11-14 Thread lujiajing
This is an automated email from the ASF dual-hosted git repository.

lujiajing pushed a change to branch fix-wrong-dir-structure
in repository https://gitbox.apache.org/repos/asf/skywalking-go.git


from d47d56f  remove unused getwd
 add 584a5b3  fix lint

No new revisions were added by this update.

Summary of changes:
 plugins/trace-activation/instrument.go | 60 --
 1 file changed, 20 insertions(+), 40 deletions(-)



Re: [PR] Fix wrong plugin structure [skywalking-go]

2023-11-14 Thread via GitHub


mrproliu commented on code in PR #150:
URL: https://github.com/apache/skywalking-go/pull/150#discussion_r1393722290


##
tools/go-agent/instrument/plugins/instrument.go:
##
@@ -107,9 +108,8 @@ func (i *Instrument) CouldHandle(opts *api.CompileOptions) 
bool {
// check the version of the framework could handler
version, err := i.tryToFindThePluginVersion(opts, ins)
if err != nil {
-   // Local package (e.g. replaced toolkit) does not have 
version.
-   // So when the version is not detected, we should not 
skip it.
-   logrus.Warnf("the plugin %s %s", ins.Name(), err)
+   logrus.Warnf("ignore the plugin %s, because %s", 
ins.Name(), err)
+   continue

Review Comment:
   I remember this is used to handle the check for missing version information 
when `replacing` in `go.mod`, @Alipebt could you help to re-check?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-go) branch fix-wrong-dir-structure updated (2d9e964 -> d47d56f)

2023-11-14 Thread lujiajing
This is an automated email from the ASF dual-hosted git repository.

lujiajing pushed a change to branch fix-wrong-dir-structure
in repository https://gitbox.apache.org/repos/asf/skywalking-go.git


from 2d9e964  fix wrong plugin structure
 add d47d56f  remove unused getwd

No new revisions were added by this update.

Summary of changes:
 tools/go-agent/instrument/plugins/instrument.go | 3 ---
 1 file changed, 3 deletions(-)



[PR] Fix wrong plugin structure [skywalking-go]

2023-11-14 Thread via GitHub


lujiajing1126 opened a new pull request, #150:
URL: https://github.com/apache/skywalking-go/pull/150

   In https://github.com/apache/skywalking-go/pull/104, trace related APIs are 
introduced for developers.
   
   But the plugin strucuture is not correct, this leads to empty version in the 
`VersionChecker`
   
   ```go
   func (i *Instrument) VersionChecker(version string) bool {
   // the version is always empty
return true
   }
   ```
   
   Besides, in order to make E2E work in PR #104, the result of version parser 
is ignored. This make toolkit APIs work by change. So even if we use an 
official release, e.g. `github.com/apache/skywalking-go v0.3.0`. The version is 
empty.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-go) 01/01: fix wrong plugin structure

2023-11-14 Thread lujiajing
This is an automated email from the ASF dual-hosted git repository.

lujiajing pushed a commit to branch fix-wrong-dir-structure
in repository https://gitbox.apache.org/repos/asf/skywalking-go.git

commit 2d9e9649457c75e12ec2501c56272629642efff6
Author: Megrez Lu 
AuthorDate: Wed Nov 15 14:36:57 2023 +0800

fix wrong plugin structure
---
 go.work.sum| 16 ++
 plugins/trace-activation/instrument.go | 62 ++
 .../{ => trace}/add_log_intercepter.go |  0
 .../{ => trace}/async_finish_intercepter.go|  0
 .../{ => trace}/async_log_intercepter.go   |  0
 .../{ => trace}/async_prepare_intercepter.go   |  0
 .../{ => trace}/async_tag_intercepter.go   |  0
 .../{ => trace}/capture_intercepter.go |  0
 .../{ => trace}/continue_intercepter.go|  0
 .../{ => trace}/correlation_get_intercepter.go |  0
 .../{ => trace}/correlation_set_intercepter.go |  0
 .../{ => trace}/create_entryspan_intercepter.go|  0
 .../{ => trace}/create_exitspan_intercepter.go |  0
 .../{ => trace}/create_localspan_intercepter.go|  0
 .../{ => trace}/get_segmentid_intercepter.go   |  0
 .../{ => trace}/get_spanid_intercepter.go  |  0
 .../{ => trace}/get_traceid_intercepter.go |  0
 .../{ => trace}/set_component_interceptor.go   |  0
 .../{ => trace}/set_name_intercepter.go|  0
 .../{ => trace}/set_tag_intercepter.go |  0
 .../{ => trace}/stopspan_intercepter.go|  0
 test/plugins/scenarios/plugin_exclusion/go.sum | 33 
 tools/go-agent/instrument/plugins/instrument.go| 14 +++--
 23 files changed, 89 insertions(+), 36 deletions(-)

diff --git a/go.work.sum b/go.work.sum
index 74ee681..566b746 100644
--- a/go.work.sum
+++ b/go.work.sum
@@ -829,8 +829,6 @@ github.com/evanphx/json-patch/v5 v5.6.0/go.mod 
h1:G79N1coSVB93tBe7j6PhzjmR3/2Vvl
 github.com/exoscale/egoscale v0.46.0/go.mod 
h1:mpEXBpROAa/2i5GC0r33rfxG+TxSEka11g1PIXt9+zc=
 github.com/exoscale/egoscale v0.67.0 
h1:qgWh7T5IZGrNWtg6ib4dr+76WThvB+odTtGG+DGbXF8=
 github.com/exoscale/egoscale v0.67.0/go.mod 
h1:wi0myUxPsV8SdEtdJHQJxFLL/wEw9fiw9Gs1PWRkvkM=
-github.com/fasthttp/router v1.0.2 
h1:rdYdcAmwOLqWuFgc4afa409SYmuw4t0A66K5Ib+GT3I=
-github.com/fasthttp/router v1.0.2/go.mod 
h1:Myk/ofrwtfiLSCIfbE44+e+PyP3mR6JhZg3AYzqwJI0=
 github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 
h1:Ghm4eQYC0nEPnSJdVkTrXpu9KtoVCSo1hg7mtI7G9KU=
 github.com/fatih/camelcase v1.0.0 
h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=
 github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
@@ -1146,7 +1144,6 @@ github.com/kisielk/errcheck v1.5.0 
h1:e8esj/e4R+SAOwFwN+n3zr0nYeCyeweozKfO23MvHz
 github.com/kisielk/gotool v1.0.0 
h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=
 github.com/klauspost/asmfmt v1.3.2 
h1:4Ri7ox3EwapiOjCki+hw14RyKk201CN4rzyCJRFLpK4=
 github.com/klauspost/asmfmt v1.3.2/go.mod 
h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE=
-github.com/klauspost/compress v1.8.2/go.mod 
h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
 github.com/klauspost/compress v1.10.5/go.mod 
h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
 github.com/klauspost/compress v1.11.3/go.mod 
h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
 github.com/klauspost/compress v1.11.13/go.mod 
h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
@@ -1154,7 +1151,6 @@ github.com/klauspost/compress v1.15.9 
h1:wKRjX6JRtDdrE9qwa4b/Cip7ACOshUI4smpCQan
 github.com/klauspost/compress v1.15.12 
h1:YClS/PImqYbn+UILDnqxQCZ3RehC9N318SU3kElDUEM=
 github.com/klauspost/compress v1.15.12/go.mod 
h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
 github.com/klauspost/cpuid v1.2.1 
h1:vJi+O/nMdFt0vqm8NZBI6wzALWdA2X+egi0ogNyrC/w=
-github.com/klauspost/cpuid v1.2.1/go.mod 
h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
 github.com/knadh/koanf v1.4.4/go.mod 
h1:Hgyjp4y8v44hpZtPzs7JZfRAW5AhN7KfZcwv1RYggDs=
 github.com/knadh/koanf v1.5.0 h1:q2TSd/3Pyc/5yP9ldIrSdIz26MCcyNQzW0pEAugLPNs=
 github.com/koding/multiconfig v0.0.0-20171124222453-69c27309b2d7 
h1:SWlt7BoQNASbhTUD0Oy5yysI2seJ7vWuGUp///OM4TM=
@@ -1416,6 +1412,8 @@ github.com/pelletier/go-toml v1.9.5/go.mod 
h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCko
 github.com/performancecopilot/speed v3.0.0+incompatible 
h1:2WnRzIquHa5QxaJKShDkLM+sc0JPuwhXzK8OYOyt3Vg=
 github.com/peterbourgon/diskv v2.0.1+incompatible 
h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=
 github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ=
+github.com/philhofer/fwd v1.1.2 h1:bnDivRJ1EWPjUIRXV5KfORO897HTbpFAQddBdE8t7Gw=
+github.com/philhofer/fwd v1.1.2/go.mod 
h1:qkPdfjR2SIEbspLqpe1tO4n5yICnr2DY7mqEx2tUTP0=
 github.com/pierrec/lz4 v2.6.0+incompatible 
h1:Ix9yFKn1nSPBLFl/yZknTp8TU5G4Ps0JDmguYK6iH1A=
 github.com/pierrec/lz4/v4 v4.1.15 
h1:MO0/ucJhngq7299dKLwIMtgTfbkoSPF6AoMYDd8Q4q0=
 github.com/pierrec/lz4/v4 v4.1.15/go.mod 

(skywalking-go) branch fix-wrong-dir-structure created (now 2d9e964)

2023-11-14 Thread lujiajing
This is an automated email from the ASF dual-hosted git repository.

lujiajing pushed a change to branch fix-wrong-dir-structure
in repository https://gitbox.apache.org/repos/asf/skywalking-go.git


  at 2d9e964  fix wrong plugin structure

This branch includes the following new commits:

 new 2d9e964  fix wrong plugin structure

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.




Re: [I] [Feature] Support Nginx monitoring. [skywalking]

2023-11-14 Thread via GitHub


wu-sheng commented on issue #11534:
URL: https://github.com/apache/skywalking/issues/11534#issuecomment-1811776728

   Yes, monitoring output error level logs totally make sense.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Feature] Support Nginx monitoring. [skywalking]

2023-11-14 Thread via GitHub


weixiang1862 commented on issue #11534:
URL: https://github.com/apache/skywalking/issues/11534#issuecomment-1811770278

   Error Log Count metric is extracted from nginx `error.log`, this may be 
meaningful to user.

   
![image](https://github.com/apache/skywalking/assets/16346644/e90dca5a-3c3b-4799-8cb4-d8310f60ad6c)
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump up dependencies [skywalking-swck]

2023-11-14 Thread via GitHub


hanahmily commented on PR #102:
URL: https://github.com/apache/skywalking-swck/pull/102#issuecomment-1811768472

   > In this PR I only bump up grpc and golang.org/x/net to fix critical CVEs, 
there is another one that has many breaking changes and needs code changes, may 
need help from @hanahmily or @dashanji
   > 
   > HIGH   swck:502610bUnknown 
[CVE-2023-45142](https://github.com/advisories/GHSA-rcjv-mgp8-qvmr) 
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp   v0.20.0 -> 
v0.44.0
   
   This issue 
(https://github.com/kubernetes-sigs/custom-metrics-apiserver/issues/160) was 
caused by breaking changes introduced by the 
https://pkg.go.dev/go.opentelemetry.io/otel package. Our current strategy is to 
monitor the status of the upstream until the issue is resolved.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Feature] add new lal with k8s configmap [skywalking]

2023-11-14 Thread via GitHub


wu-sheng closed issue #11547: [Feature] add new lal with k8s configmap
URL: https://github.com/apache/skywalking/issues/11547


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[I] [Feature] add new lal with k8s configmap [skywalking]

2023-11-14 Thread via GitHub


crazychengmm opened a new issue, #11547:
URL: https://github.com/apache/skywalking/issues/11547

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no 
similar feature requirement.
   
   
   ### Description
   
   If skywalking start with docker in k8s, is it prossible to add new 
lol(xyz.yaml) with k8s configmap?
   Or i need add xyz.yaml to resource, rebuild the mirror?
   
   
![image](https://github.com/apache/skywalking/assets/23517542/175d0135-c73a-493b-a3c2-3d20afa4162b)
   
   
   ### Use case
   
   _No response_
   
   ### Related issues
   
   _No response_
   
   ### Are you willing to submit a pull request to implement this on your own?
   
   - [X] Yes I am willing to submit a pull request on my own!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
notifications-unsubscr...@skywalking.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking) branch master updated: Fix JDBC Log query order. (#11544)

2023-11-14 Thread wusheng
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 eaac1c3ec4 Fix JDBC Log query order. (#11544)
eaac1c3ec4 is described below

commit eaac1c3ec44094b2810c65d7d087e646f1128f02
Author: weixiang1862 <652048...@qq.com>
AuthorDate: Wed Nov 15 10:20:20 2023 +0800

Fix JDBC Log query order. (#11544)
---
 docs/en/changes/changes.md  | 1 +
 .../oap/server/storage/plugin/jdbc/common/dao/JDBCLogQueryDAO.java  | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md
index cfa8befdb9..5c360c2e14 100644
--- a/docs/en/changes/changes.md
+++ b/docs/en/changes/changes.md
@@ -38,6 +38,7 @@
 * Fix cannot query zipkin traces with `annotationQuery` parameter in the JDBC 
related storage.
 * Fix `limit` doesn't work for `findEndpoint` API in ES storage.
 * Isolate MAL CounterWindow cache by metric name.
+* Fix JDBC Log query order.
 
  UI
 
diff --git 
a/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/common/dao/JDBCLogQueryDAO.java
 
b/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/common/dao/JDBCLogQueryDAO.java
index 52dc2cbc96..7c96b59f1e 100644
--- 
a/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/common/dao/JDBCLogQueryDAO.java
+++ 
b/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/common/dao/JDBCLogQueryDAO.java
@@ -122,7 +122,7 @@ public class JDBCLogQueryDAO implements ILogQueryDAO {
 )
 );
 }
-final var comparator = Order.DES.equals(queryOrder) ?
+final var comparator = Order.ASC.equals(queryOrder) ?
 comparing(Log::getTimestamp) :
 comparing(Log::getTimestamp).reversed();
 



Re: [PR] Fix JDBC Log query order. [skywalking]

2023-11-14 Thread via GitHub


wu-sheng merged PR #11544:
URL: https://github.com/apache/skywalking/pull/11544


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-showcase) branch main updated: Update to dark mode

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new d3d13af  Update to dark mode
d3d13af is described below

commit d3d13afcbdb5dc8faa20120757dbdd9f522cb4cd
Author: 吴晟 Wu Sheng 
AuthorDate: Wed Nov 15 10:05:28 2023 +0800

Update to dark mode
---
 Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 2b119f2..19e8cab 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -29,10 +29,10 @@ ES_IMAGE ?= 
docker.elastic.co/elasticsearch/elasticsearch-oss
 ES_IMAGE_TAG ?= 7.10.2
 
 SW_OAP_IMAGE ?= ghcr.io/apache/skywalking/oap
-SW_OAP_IMAGE_TAG ?= bc5f63b59918c5f05bdfcf14aa335122bfe9ec27
+SW_OAP_IMAGE_TAG ?= 9fee0922a8d60321f9b46aecebf3832fe34c0ddd
 
 SW_UI_IMAGE ?= ghcr.io/apache/skywalking/ui
-SW_UI_IMAGE_TAG ?= bc5f63b59918c5f05bdfcf14aa335122bfe9ec27
+SW_UI_IMAGE_TAG ?= 9fee0922a8d60321f9b46aecebf3832fe34c0ddd
 
 SW_CLI_IMAGE ?= 
ghcr.io/apache/skywalking-cli/skywalking-cli:0883266bfaa36612927b69e35781b64ea181758d
 SW_EVENT_EXPORTER_IMAGE ?= 
ghcr.io/apache/skywalking-kubernetes-event-exporter/skywalking-kubernetes-event-exporter:8a012a3f968cb139f817189afb9b3748841bba22



Re: [I] [Bug] (httpasyncclient-4.x-plugin) Span is error forever because of org.apache.skywalking.apm.plugin.httpasyncclient.v4.wrapper.HttpAsyncResponseConsumerWrapper.responseReceived>>errorOccurred

2023-11-14 Thread via GitHub


wu-sheng closed issue #11545: [Bug] (httpasyncclient-4.x-plugin) Span is error 
forever because of 
org.apache.skywalking.apm.plugin.httpasyncclient.v4.wrapper.HttpAsyncResponseConsumerWrapper.responseReceived>>errorOccurred()
URL: https://github.com/apache/skywalking/issues/11545


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Bug] (httpasyncclient-4.x-plugin) Span is error forever because of org.apache.skywalking.apm.plugin.httpasyncclient.v4.wrapper.HttpAsyncResponseConsumerWrapper.responseReceived>>errorOccurred

2023-11-14 Thread via GitHub


gzniuniu commented on issue #11545:
URL: https://github.com/apache/skywalking/issues/11545#issuecomment-1811656916

   
![image](https://github.com/apache/skywalking/assets/13554279/db4fe418-8bf5-4956-91c9-962b02576f0a)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[I] [Bug] (httpasyncclient-4.x-plugin) Span is error forever because of org.apache.skywalking.apm.plugin.httpasyncclient.v4.wrapper.HttpAsyncResponseConsumerWrapper.responseReceived>>errorOccurred() [

2023-11-14 Thread via GitHub


gzniuniu opened a new issue, #11545:
URL: https://github.com/apache/skywalking/issues/11545

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Apache SkyWalking Component
   
   Java Agent (apache/skywalking-java)
   
   ### What happened
   
   use the elasticsearch to search,then found the error response int the 
"Trace", the answer is right and http status code is 200 ,but the "Error" shows 
 "true".why it happend because of the span is created with the errorOccurred 
forever in my opinion.
   the code :
   if (ContextManager.isActive()) {
   int statusCode = response.getStatusLine().getStatusCode();
   AbstractSpan span = 
ContextManager.activeSpan().errorOccurred();//this errorOccurred() lead the 
span error forever
   Tags.HTTP_RESPONSE_STATUS_CODE.set(span, statusCode);
   if (statusCode >= 400) {
   span.errorOccurred();
   }
   ContextManager.stopSpan();
   }
   
   
![image](https://github.com/apache/skywalking/assets/13554279/3acc019c-3b79-40f7-b142-c2a51bebe810)
   
   
   ### What you expected to happen
   
   when i send receiver the right response , the "Error" should be flase
   
   ### How to reproduce
   
   use the elasticsearch to search,then found the error response int the 
"Trace", but the answer is right ,but the "Error" shows  "true"
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request to fix on your own?
   
   - [X] Yes I am willing to submit a pull request on my own!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
notifications-unsubscr...@skywalking.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-banyandb-helm) branch banyandb-0.5 deleted (was 10a1486)

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a change to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


 was 10a1486  change var name to avoid misunderstanding

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(skywalking-banyandb-helm) branch master updated: Upgrade banyandb to 0.5.0 (#8)

2023-11-14 Thread wusheng
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-banyandb-helm.git


The following commit(s) were added to refs/heads/master by this push:
 new d5dc821  Upgrade banyandb to 0.5.0 (#8)
d5dc821 is described below

commit d5dc821be67c688f30b7e9b99c52dbcbca36cfff
Author: Wan Kai 
AuthorDate: Wed Nov 15 09:19:16 2023 +0800

Upgrade banyandb to 0.5.0 (#8)
---
 .github/workflows/e2e.ci.yaml | 6 +++---
 chart/values.yaml | 4 ++--
 test/e2e/e2e-banyandb.yaml| 2 +-
 test/e2e/env  | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/e2e.ci.yaml b/.github/workflows/e2e.ci.yaml
index f7e38f3..940b1fd 100644
--- a/.github/workflows/e2e.ci.yaml
+++ b/.github/workflows/e2e.ci.yaml
@@ -39,9 +39,9 @@ jobs:
 config: test/e2e/e2e-banyandb.yaml
 name: ${{ matrix.test.name }}
 env:
-  OAP_TAG: 14fbd975be077082ed6fa604e05479dd9af0d995
+  OAP_TAG: 965dea898986ed2ab1343559fb20d6faed11ada9
   OAP_REPO: ghcr.io/apache/skywalking/oap
-  UI_TAG: 14fbd975be077082ed6fa604e05479dd9af0d995
+  UI_TAG: 965dea898986ed2ab1343559fb20d6faed11ada9
   UI_REPO: ghcr.io/apache/skywalking/ui
   SATELLITE_TAG: v35bfaff6352b4dc351a706772796a1f79b651c14
   SATELLITE_REPO: ghcr.io/apache/skywalking-satellite/skywalking-satellite
@@ -82,4 +82,4 @@ jobs:
 needs: [als]
 steps:
   - name: dummy
-run: echo
\ No newline at end of file
+run: echo
diff --git a/chart/values.yaml b/chart/values.yaml
index a77b0cc..d7357a6 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -27,7 +27,7 @@ standalone:
 # fsGroup: 1000
   image:
 repository: ghcr.io/apache/skywalking-banyandb
-tag: eecd29e71bc07d07f22aea1496d80dc76a2b2f90
+tag: 84f32b3969cdcc676aaee428383b34b3b67dbdf5
 pullPolicy: IfNotPresent
   env: []
 # - name: BANYANDB_FOO
@@ -143,4 +143,4 @@ serviceAccount:
   # If not set and create is true, a name is generated using the fullname 
template
   name: ""
 
-fullnameOverride: "banyandb"
\ No newline at end of file
+fullnameOverride: "banyandb"
diff --git a/test/e2e/e2e-banyandb.yaml b/test/e2e/e2e-banyandb.yaml
index 244a189..65d42b9 100644
--- a/test/e2e/e2e-banyandb.yaml
+++ b/test/e2e/e2e-banyandb.yaml
@@ -45,7 +45,7 @@ setup:
 - name: Install SkyWalking
   command: |
 helm -n istio-system install skywalking 
oci://ghcr.io/apache/skywalking-helm/skywalking-helm \
-   --version "$SW_RELEASE_VERSION" \
+   --version "$SW_HELM_VERSION" \
--set fullnameOverride=skywalking \
--set 
oap.env.SW_ENVOY_METRIC_ALS_HTTP_ANALYSIS=k8s-mesh \
--set oap.env.SW_ENVOY_METRIC_ALS_TCP_ANALYSIS=k8s-mesh 
\
diff --git a/test/e2e/env b/test/e2e/env
index 2d1ddae..7e1f100 100644
--- a/test/e2e/env
+++ b/test/e2e/env
@@ -24,4 +24,4 @@ 
SW_AGENT_CLIENT_JS_TEST_COMMIT=4f1eb1dcdbde3ec4a38534bf01dded4ab5d2f016
 SW_KUBERNETES_COMMIT_SHA=0f3ec68e5a7e1608cec8688716b848ed15e971e5
 
 SW_CTL_COMMIT=9d2d0edccda2afe5cf24f1e632142f40e80e8fa4
-SW_RELEASE_VERSION=0.0.0-331522d46dfb3e46dcc37943a942194720925015
\ No newline at end of file
+SW_HELM_VERSION=0.0.0-e651c381abe661e5a38ab1607758aae893b3dbeb



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wu-sheng merged PR #8:
URL: https://github.com/apache/skywalking-banyandb-helm/pull/8


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #8:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/8#issuecomment-1811642501

   Rename should be good enough. I was misguided.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Fix JDBC Log query order. [skywalking]

2023-11-14 Thread via GitHub


weixiang1862 opened a new pull request, #11544:
URL: https://github.com/apache/skywalking/pull/11544

   
   
   
   ### Fix JDBC Log query order
   - [ ] Add a unit test to verify that the fix works.
   - [x] Explain briefly why the bug exists and how to fix it.
   
   
   
   
   
   - [ ] If this pull request closes/resolves/fixes an existing issue, replace 
the issue number. Closes #.
   - [x] Update the [`CHANGES` 
log](https://github.com/apache/skywalking/blob/master/docs/en/changes/changes.md).
   
   Logs query is order by timestamp, `ASC` means `comparing(Log::getTimestamp)` 
but not `comparing(Log::getTimestamp).reversed()`;


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-banyandb-helm) branch banyandb-0.5 updated (46a605b -> 10a1486)

2023-11-14 Thread wankai
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a change to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


from 46a605b  oap tag version for test
 add 10a1486  change var name to avoid misunderstanding

No new revisions were added by this update.

Summary of changes:
 test/e2e/e2e-banyandb.yaml | 2 +-
 test/e2e/env   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



(skywalking-banyandb-helm) branch banyandb-0.5 updated (edb13fb -> 46a605b)

2023-11-14 Thread wankai
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a change to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


from edb13fb  oap tag version
 add 46a605b  oap tag version for test

No new revisions were added by this update.

Summary of changes:
 .github/workflows/e2e.ci.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wankai123 commented on PR #8:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/8#issuecomment-1811635141

   > Could you lock the skywalking-helm commit ID? Use the latest seems very 
tricky.
   
   Where used the latest?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-banyandb-helm) branch banyandb-0.5 updated (2b76978 -> edb13fb)

2023-11-14 Thread wankai
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a change to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


from 2b76978  update sw-helm version for test
 add edb13fb  oap tag version

No new revisions were added by this update.

Summary of changes:
 .github/workflows/e2e.ci.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #8:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/8#issuecomment-1811630950

   Could you lock the skywalking-helm commit ID? Use the latest seems very 
tricky.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-banyandb-helm) branch banyandb-0.5 updated (7a99496 -> 2b76978)

2023-11-14 Thread wankai
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a change to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


from 7a99496  upgrade banyandb to 0.5.0
 add 2b76978  update sw-helm version for test

No new revisions were added by this update.

Summary of changes:
 test/e2e/env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(skywalking-python) branch dependabot/pip/aiohttp-3.8.6 deleted (was aa7e087)

2023-11-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/pip/aiohttp-3.8.6
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git


 was aa7e087  Bump aiohttp from 3.7.4 to 3.8.6

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



Re: [PR] Bump aiohttp from 3.7.4 to 3.8.6 [skywalking-python]

2023-11-14 Thread via GitHub


dependabot[bot] commented on PR #330:
URL: 
https://github.com/apache/skywalking-python/pull/330#issuecomment-1811612857

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump aiohttp from 3.7.4 to 3.8.6 [skywalking-python]

2023-11-14 Thread via GitHub


wu-sheng closed pull request #330: Bump aiohttp from 3.7.4 to 3.8.6
URL: https://github.com/apache/skywalking-python/pull/330


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #8:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/8#issuecomment-1811612715

   Yes, we did that.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-website) branch master updated: Fix title.

2023-11-14 Thread wusheng
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-website.git


The following commit(s) were added to refs/heads/master by this push:
 new 8c3379bcd48 Fix title.
8c3379bcd48 is described below

commit 8c3379bcd4840532ccad8f193ccdf93f9da59a74
Author: Wu Sheng 
AuthorDate: Wed Nov 15 08:31:01 2023 +0800

Fix title.
---
 content/zh/2023-11-04-skywalking-summit-shanghai/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md 
b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
index 557a07540cf..436b2b45767 100644
--- a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
+++ b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
@@ -27,7 +27,7 @@ zh_tags:
 * [PDF](ke_zhenxu.pdf)
 
 
-##  基于 SkyWalking 建 全域一体化观测平台
+## 基于SkyWalking构建全域一体化观测平台
 * 陈修能
 * [PDF](chen_xiuneng.pdf)
 



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


hanahmily commented on PR #8:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/8#issuecomment-1811540858

   > @hanahmily Could you check why e2e fails?
   
   Since we break change the banyandb client configuration in OAP, you'd better 
upgrade skywalking-helm firstly. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump aiohttp from 3.7.4 to 3.8.6 [skywalking-python]

2023-11-14 Thread via GitHub


dependabot[bot] opened a new pull request, #330:
URL: https://github.com/apache/skywalking-python/pull/330

   Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.7.4 to 3.8.6.
   
   Release notes
   Sourced from https://github.com/aio-libs/aiohttp/releases;>aiohttp's 
releases.
   
   3.8.6
   Security bugfixes
   
   
   Upgraded the vendored copy of llhttp_ to v9.1.3 -- by 
:user:Dreamsorcerer
   Thanks to :user:kenballus for reporting this, see
   https://github.com/aio-libs/aiohttp/security/advisories/GHSA-pjjw-qhg8-p2p9;>https://github.com/aio-libs/aiohttp/security/advisories/GHSA-pjjw-qhg8-p2p9.
   .. _llhttp: https://llhttp.org;>https://llhttp.org
   (https://redirect.github.com/aio-libs/aiohttp/issues/7647;>#7647)
   
   
   Updated Python parser to comply with RFCs 9110/9112 -- by 
:user:Dreamorcerer
   Thanks to :user:kenballus for reporting this, see
   https://github.com/aio-libs/aiohttp/security/advisories/GHSA-gfw2-4jvh-wgfg;>https://github.com/aio-libs/aiohttp/security/advisories/GHSA-gfw2-4jvh-wgfg.
   (https://redirect.github.com/aio-libs/aiohttp/issues/7663;>#7663)
   
   
   Deprecation
   
   
   Added fallback_charset_resolver parameter in 
ClientSession to allow a user-supplied
   character set detection function.
   Character set detection will no longer be included in 3.9 as a default. 
If this feature is needed,
   please use fallback_charset_resolver 
https://docs.aiohttp.org/en/stable/client_advanced.html#character-set-detection;_.
   (https://redirect.github.com/aio-libs/aiohttp/issues/7561;>#7561)
   
   
   Features
   
   
   Enabled lenient response parsing for more flexible parsing in the client
   (this should resolve some regressions when dealing with badly formatted HTTP 
responses). -- by :user:Dreamsorcerer
   (https://redirect.github.com/aio-libs/aiohttp/issues/7490;>#7490)
   
   
   Bugfixes
   
   
   Fixed PermissionError when .netrc is unreadable 
due to permissions.
   (https://redirect.github.com/aio-libs/aiohttp/issues/7237;>#7237)
   
   
   
   
   ... (truncated)
   
   
   Changelog
   Sourced from https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst;>aiohttp's 
changelog.
   
   3.8.6 (2023-10-07)
   Security bugfixes
   
   
   Upgraded the vendored copy of llhttp_ to v9.1.3 -- by 
:user:Dreamsorcerer
   Thanks to :user:kenballus for reporting this, see
   https://github.com/aio-libs/aiohttp/security/advisories/GHSA-pjjw-qhg8-p2p9;>https://github.com/aio-libs/aiohttp/security/advisories/GHSA-pjjw-qhg8-p2p9.
   .. _llhttp: https://llhttp.org;>https://llhttp.org
   [#7647](https://github.com/aio-libs/aiohttp/issues/7647) 
https://github.com/aio-libs/aiohttp/issues/7647;_
   
   
   Updated Python parser to comply with RFCs 9110/9112 -- by 
:user:Dreamorcerer
   Thanks to :user:kenballus for reporting this, see
   https://github.com/aio-libs/aiohttp/security/advisories/GHSA-gfw2-4jvh-wgfg;>https://github.com/aio-libs/aiohttp/security/advisories/GHSA-gfw2-4jvh-wgfg.
   [#7663](https://github.com/aio-libs/aiohttp/issues/7663) 
https://github.com/aio-libs/aiohttp/issues/7663;_
   
   
   Deprecation
   
   
   Added fallback_charset_resolver parameter in 
ClientSession to allow a user-supplied
   character set detection function.
   Character set detection will no longer be included in 3.9 as a default. 
If this feature is needed,
   please use fallback_charset_resolver 
https://docs.aiohttp.org/en/stable/client_advanced.html#character-set-detection;_.
   [#7561](https://github.com/aio-libs/aiohttp/issues/7561) 
https://github.com/aio-libs/aiohttp/issues/7561;_
   
   
   Features
   
   
   Enabled lenient response parsing for more flexible parsing in the client
   (this should resolve some regressions when dealing with badly formatted HTTP 
responses). -- by :user:Dreamsorcerer
   [#7490](https://github.com/aio-libs/aiohttp/issues/7490) 
https://github.com/aio-libs/aiohttp/issues/7490;_
   
   
   Bugfixes
   
   Fixed PermissionError when .netrc is 
unreadable due to permissions.
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/aio-libs/aiohttp/commit/996de2629ef6b4c2934a7c04dfd49d0950d4c43b;>996de26
 Release v3.8.6 (https://redirect.github.com/aio-libs/aiohttp/issues/7668;>#7668)
   https://github.com/aio-libs/aiohttp/commit/8c128d4f042ca36ebdc55ecdd76099b7722331ba;>8c128d4
 [PR https://redirect.github.com/aio-libs/aiohttp/issues/7651;>#7651/45f98b7d
 backport][3.8] Fix BadStatusLine message (https://redirect.github.com/aio-libs/aiohttp/issues/7666;>#7666)
   https://github.com/aio-libs/aiohttp/commit/89b7df157886ff390cdcdc44ecf3c277045838b1;>89b7df1
 Allow lax response parsing on Py parser (https://redirect.github.com/aio-libs/aiohttp/issues/7663;>#7663) (https://redirect.github.com/aio-libs/aiohttp/issues/7664;>#7664)
   https://github.com/aio-libs/aiohttp/commit/d5c12ba890557a575c313bb3017910d7616fce3d;>d5c12ba
 [PR https://redirect.github.com/aio-libs/aiohttp/issues/7661;>#7661/85713a48
 backport][3.8] 

(skywalking-python) branch dependabot/pip/aiohttp-3.8.6 created (now aa7e087)

2023-11-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/pip/aiohttp-3.8.6
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git


  at aa7e087  Bump aiohttp from 3.7.4 to 3.8.6

No new revisions were added by this update.



(skywalking-website) branch master updated: Fix typos

2023-11-14 Thread wusheng
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-website.git


The following commit(s) were added to refs/heads/master by this push:
 new 4d2f64a18f0 Fix typos
4d2f64a18f0 is described below

commit 4d2f64a18f0293441cad2a58d9648bf50e52efc9
Author: Wu Sheng 
AuthorDate: Tue Nov 14 22:55:34 2023 +0800

Fix typos
---
 content/zh/2023-11-04-skywalking-summit-shanghai/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md 
b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
index 6d9c505830b..557a07540cf 100644
--- a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
+++ b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
@@ -27,7 +27,7 @@ zh_tags:
 * [PDF](ke_zhenxu.pdf)
 
 
-##  基于 skyWalking 建 全域一体化观测平台
+##  基于 SkyWalking 建 全域一体化观测平台
 * 陈修能
 * [PDF](chen_xiuneng.pdf)
 
@@ -37,7 +37,7 @@ zh_tags:
 * [PDF](gao_hongtao.pdf)
 
 
-## 基于skyWalking Agent 的性能剖析和实时诊断  
+## 基于 SkyWalking Agent 的性能剖析和实时诊断  
 * 陆家靖
 * [PDF](lu_jiajing.pdf)
 



(skywalking-website) branch master updated: Fix typo

2023-11-14 Thread wusheng
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-website.git


The following commit(s) were added to refs/heads/master by this push:
 new a58979665bd Fix typo
a58979665bd is described below

commit a58979665bd2fd50d1c938ca6297a99cf57b468f
Author: Wu Sheng 
AuthorDate: Tue Nov 14 22:52:02 2023 +0800

Fix typo
---
 content/zh/2023-11-04-skywalking-summit-shanghai/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md 
b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
index 0afdb0edd8f..6d9c505830b 100644
--- a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
+++ b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
@@ -22,7 +22,7 @@ zh_tags:
 * [PDF](wu_sheng.pdf)
 
 
-## 使用 Terraform 与 Ansible 快速部署skyWalking 集群   
+## 使用 Terraform 与 Ansible 快速部署 SkyWalking 集群   
 * 柯振旭
 * [PDF](ke_zhenxu.pdf)
 



(skywalking-website) branch master updated: SkyWalking Summit 2023 schedule and PDFs (#659)

2023-11-14 Thread wusheng
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-website.git


The following commit(s) were added to refs/heads/master by this push:
 new 6b43fea5af2 SkyWalking Summit 2023 schedule and PDFs (#659)
6b43fea5af2 is described below

commit 6b43fea5af2015480f20e5fd8cb562be89083328
Author: 吴晟 Wu Sheng 
AuthorDate: Tue Nov 14 22:16:09 2023 +0800

SkyWalking Summit 2023 schedule and PDFs (#659)
---
 .../banner.jpg | Bin 0 -> 1159098 bytes
 .../chen_xiuneng.pdf   | Bin 0 -> 14378518 bytes
 .../gao_hongtao.pdf| Bin 0 -> 6432788 bytes
 .../huo_bingjie.pdf| Bin 0 -> 5904553 bytes
 .../2023-11-04-skywalking-summit-shanghai/index.md |  56 +
 .../ke_zhenxu.pdf  | Bin 0 -> 9153723 bytes
 .../lu_jiajing.pdf | Bin 0 -> 9034209 bytes
 .../tian_chuan.pdf | Bin 0 -> 10720239 bytes
 .../wu_sheng.pdf   | Bin 0 -> 9136638 bytes
 .../zhang_wenjie.pdf   | Bin 0 -> 11850787 bytes
 10 files changed, 56 insertions(+)

diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/banner.jpg 
b/content/zh/2023-11-04-skywalking-summit-shanghai/banner.jpg
new file mode 100644
index 000..4b004f05d7e
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/banner.jpg differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/chen_xiuneng.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/chen_xiuneng.pdf
new file mode 100644
index 000..197fbeffe61
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/chen_xiuneng.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/gao_hongtao.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/gao_hongtao.pdf
new file mode 100644
index 000..687491cfcca
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/gao_hongtao.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/huo_bingjie.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/huo_bingjie.pdf
new file mode 100644
index 000..ed35de97d04
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/huo_bingjie.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md 
b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
new file mode 100644
index 000..0afdb0edd8f
--- /dev/null
+++ b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
@@ -0,0 +1,56 @@
+---
+title: "SkyWalking Summit 2023 @ Shanghai 会议回顾"
+author: "SkyWalking"
+date: 2023-11-14
+description: "SkyWalking Summit 全天议程录像"
+zh_tags:
+- Video
+- Conference
+---
+
+# SkyWalking Summit 2023 @ Shanghai
+
+
+会议时间:2023年11月4日 全天
+地点:上海大华虹桥假日酒店
+赞助商:纵目科技,Tetrate
+
+# 会议议程 与 PDF
+
+## SkyWalking V9 In 2023 - 5 featured releases
+* 吴晟
+* [PDF](wu_sheng.pdf)
+
+
+## 使用 Terraform 与 Ansible 快速部署skyWalking 集群   
+* 柯振旭
+* [PDF](ke_zhenxu.pdf)
+
+
+##  基于 skyWalking 建 全域一体化观测平台
+* 陈修能
+* [PDF](chen_xiuneng.pdf)
+
+
+## 云原生可观测性数据库BanyanDB
+* 高洪涛
+* [PDF](gao_hongtao.pdf)
+
+
+## 基于skyWalking Agent 的性能剖析和实时诊断  
+* 陆家靖
+* [PDF](lu_jiajing.pdf)
+
+
+## 太保科技-多云环境下Zabbix的运用实践 
+* 田川
+* [PDF](tian_chuan.pdf)
+
+
+## KubeSphere 在可观测性领域的探索与实践
+* 霍秉杰
+* [PDF](huo_bingjie.pdf)
+
+## 大型跨国企业的微服务治理   
+* 张文杰
+* [PDF](zhang_wenjie.pdf)
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/ke_zhenxu.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/ke_zhenxu.pdf
new file mode 100644
index 000..0f181b74311
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/ke_zhenxu.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/lu_jiajing.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/lu_jiajing.pdf
new file mode 100644
index 000..614f3f6c146
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/lu_jiajing.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/tian_chuan.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/tian_chuan.pdf
new file mode 100644
index 000..99561aa1f0f
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/tian_chuan.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/wu_sheng.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/wu_sheng.pdf
new file mode 100644
index 000..283ba1c8a36
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/wu_sheng.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/zhang_wenjie.pdf 

Re: [PR] SkyWalking Summit 2023 schedule and PDFs [skywalking-website]

2023-11-14 Thread via GitHub


wu-sheng merged PR #659:
URL: https://github.com/apache/skywalking-website/pull/659


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-website) branch summit deleted (was e510eccab84)

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a change to branch summit
in repository https://gitbox.apache.org/repos/asf/skywalking-website.git


 was e510eccab84 SkyWalking summit blogs

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[PR] SkyWalking Summit 2023 schedule and PDFs [skywalking-website]

2023-11-14 Thread via GitHub


wu-sheng opened a new pull request, #659:
URL: https://github.com/apache/skywalking-website/pull/659

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] SkyWalking Summit 2023 schedule and PDFs [skywalking-website]

2023-11-14 Thread via GitHub


netlify[bot] commented on PR #659:
URL: 
https://github.com/apache/skywalking-website/pull/659#issuecomment-1810279942

   ###  Deploy Preview for 
*skywalking-website-preview* processing.
   
   
   |  Name | Link |
   |:-:||
   | Latest commit | 
e510eccab84484b7f399b68a6c34dcfc466f5a7b |
   | Latest deploy log | 
https://app.netlify.com/sites/skywalking-website-preview/deploys/65537f92a138dc00079f98de
 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-website) branch summit created (now e510eccab84)

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a change to branch summit
in repository https://gitbox.apache.org/repos/asf/skywalking-website.git


  at e510eccab84 SkyWalking summit blogs

This branch includes the following new commits:

 new 71eae2fe5e9 Summit records page.
 new ef383a69ee5 Merge commit '9aa4e59d5ead9ddbdf0deb26ea604e45da3cc981' 
into summit
 new e510eccab84 SkyWalking summit blogs

The 3 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-website) 03/03: SkyWalking summit blogs

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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

commit e510eccab84484b7f399b68a6c34dcfc466f5a7b
Author: Wu Sheng 
AuthorDate: Tue Nov 14 22:06:56 2023 +0800

SkyWalking summit blogs
---
 .../chen_xiuneng.pdf | Bin 0 -> 14378518 bytes
 .../gao_hongtao.pdf  | Bin 0 -> 6432788 bytes
 .../huo_bingjie.pdf  | Bin 0 -> 5904553 bytes
 .../2023-11-04-skywalking-summit-shanghai/index.md   |  14 ++
 .../ke_zhenxu.pdf| Bin 0 -> 9153723 bytes
 .../lu_jiajing.pdf   | Bin 0 -> 9034209 bytes
 .../tian_chuan.pdf   | Bin 0 -> 10720239 bytes
 .../wu_sheng.pdf | Bin 0 -> 9136638 bytes
 .../zhang_wenjie.pdf | Bin 0 -> 11850787 bytes
 9 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/chen_xiuneng.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/chen_xiuneng.pdf
new file mode 100644
index 000..197fbeffe61
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/chen_xiuneng.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/gao_hongtao.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/gao_hongtao.pdf
new file mode 100644
index 000..687491cfcca
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/gao_hongtao.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/huo_bingjie.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/huo_bingjie.pdf
new file mode 100644
index 000..ed35de97d04
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/huo_bingjie.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md 
b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
index 2e84b70a3e9..0afdb0edd8f 100644
--- a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
+++ b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
@@ -1,7 +1,7 @@
 ---
 title: "SkyWalking Summit 2023 @ Shanghai 会议回顾"
 author: "SkyWalking"
-date: 2023-12-06
+date: 2023-11-14
 description: "SkyWalking Summit 全天议程录像"
 zh_tags:
 - Video
@@ -15,36 +15,42 @@ zh_tags:
 地点:上海大华虹桥假日酒店
 赞助商:纵目科技,Tetrate
 
-# 会议议程以及录像
+# 会议议程 与 PDF
 
 ## SkyWalking V9 In 2023 - 5 featured releases
 * 吴晟
+* [PDF](wu_sheng.pdf)
 
 
 ## 使用 Terraform 与 Ansible 快速部署skyWalking 集群   
 * 柯振旭
+* [PDF](ke_zhenxu.pdf)
 
 
 ##  基于 skyWalking 建 全域一体化观测平台
 * 陈修能
-
+* [PDF](chen_xiuneng.pdf)
 
 
 ## 云原生可观测性数据库BanyanDB
 * 高洪涛
+* [PDF](gao_hongtao.pdf)
 
 
 ## 基于skyWalking Agent 的性能剖析和实时诊断  
 * 陆家靖
+* [PDF](lu_jiajing.pdf)
 
 
 ## 太保科技-多云环境下Zabbix的运用实践 
 * 田川
+* [PDF](tian_chuan.pdf)
 
 
 ## KubeSphere 在可观测性领域的探索与实践
 * 霍秉杰
-
+* [PDF](huo_bingjie.pdf)
 
 ## 大型跨国企业的微服务治理   
 * 张文杰
+* [PDF](zhang_wenjie.pdf)
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/ke_zhenxu.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/ke_zhenxu.pdf
new file mode 100644
index 000..0f181b74311
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/ke_zhenxu.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/lu_jiajing.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/lu_jiajing.pdf
new file mode 100644
index 000..614f3f6c146
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/lu_jiajing.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/tian_chuan.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/tian_chuan.pdf
new file mode 100644
index 000..99561aa1f0f
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/tian_chuan.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/wu_sheng.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/wu_sheng.pdf
new file mode 100644
index 000..283ba1c8a36
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/wu_sheng.pdf differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/zhang_wenjie.pdf 
b/content/zh/2023-11-04-skywalking-summit-shanghai/zhang_wenjie.pdf
new file mode 100644
index 000..199b4604761
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/zhang_wenjie.pdf differ



(skywalking-website) 02/03: Merge commit '9aa4e59d5ead9ddbdf0deb26ea604e45da3cc981' into summit

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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

commit ef383a69ee59809f41328ab39882165cb4ca29b0
Merge: 71eae2fe5e9 9aa4e59d5ea
Author: Wu Sheng 
AuthorDate: Fri Nov 10 11:36:13 2023 +0800

Merge commit '9aa4e59d5ead9ddbdf0deb26ea604e45da3cc981' into summit

 .../index.md   |  10 +++
 content/zh/2023-11-09-ospp-summary/index.md|  84 +
 data/docs.yml  |   4 +-
 data/releases.yml  |  14 ++--
 static/doc-graph/swck/demo-ui.png  | Bin 0 -> 51668 bytes
 5 files changed, 103 insertions(+), 9 deletions(-)



(skywalking-website) 01/03: Summit records page.

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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

commit 71eae2fe5e9b4731f0c286e5c1e0690cbdd34937
Author: Wu Sheng 
AuthorDate: Thu Nov 9 14:47:10 2023 +0800

Summit records page.
---
 .../banner.jpg | Bin 0 -> 1159098 bytes
 .../2023-11-04-skywalking-summit-shanghai/index.md |  50 +
 2 files changed, 50 insertions(+)

diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/banner.jpg 
b/content/zh/2023-11-04-skywalking-summit-shanghai/banner.jpg
new file mode 100644
index 000..4b004f05d7e
Binary files /dev/null and 
b/content/zh/2023-11-04-skywalking-summit-shanghai/banner.jpg differ
diff --git a/content/zh/2023-11-04-skywalking-summit-shanghai/index.md 
b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
new file mode 100644
index 000..2e84b70a3e9
--- /dev/null
+++ b/content/zh/2023-11-04-skywalking-summit-shanghai/index.md
@@ -0,0 +1,50 @@
+---
+title: "SkyWalking Summit 2023 @ Shanghai 会议回顾"
+author: "SkyWalking"
+date: 2023-12-06
+description: "SkyWalking Summit 全天议程录像"
+zh_tags:
+- Video
+- Conference
+---
+
+# SkyWalking Summit 2023 @ Shanghai
+
+
+会议时间:2023年11月4日 全天
+地点:上海大华虹桥假日酒店
+赞助商:纵目科技,Tetrate
+
+# 会议议程以及录像
+
+## SkyWalking V9 In 2023 - 5 featured releases
+* 吴晟
+
+
+## 使用 Terraform 与 Ansible 快速部署skyWalking 集群   
+* 柯振旭
+
+
+##  基于 skyWalking 建 全域一体化观测平台
+* 陈修能
+
+
+
+## 云原生可观测性数据库BanyanDB
+* 高洪涛
+
+
+## 基于skyWalking Agent 的性能剖析和实时诊断  
+* 陆家靖
+
+
+## 太保科技-多云环境下Zabbix的运用实践 
+* 田川
+
+
+## KubeSphere 在可观测性领域的探索与实践
+* 霍秉杰
+
+
+## 大型跨国企业的微服务治理   
+* 张文杰



(skywalking) branch master updated: Sync UI: Implement the Dark Theme (#11543)

2023-11-14 Thread wusheng
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 9fee0922a8 Sync UI: Implement the Dark Theme (#11543)
9fee0922a8 is described below

commit 9fee0922a8d60321f9b46aecebf3832fe34c0ddd
Author: Fine0830 
AuthorDate: Tue Nov 14 22:02:54 2023 +0800

Sync UI: Implement the Dark Theme (#11543)
---
 docs/en/changes/changes.md| 3 +++
 .../resources/ui-initialized-templates/apisix/apisix-root.json| 4 ++--
 .../ui-initialized-templates/aws_dynamodb/aws_dynamodb-root.json  | 4 ++--
 .../resources/ui-initialized-templates/aws_eks/aws_eks-root.json  | 4 ++--
 .../ui-initialized-templates/aws_gateway/aws_gateway-root.json| 4 ++--
 .../resources/ui-initialized-templates/aws_s3/aws_s3-root.json| 4 ++--
 .../ui-initialized-templates/bookkeeper/bookkeeper-root.json  | 4 ++--
 .../resources/ui-initialized-templates/browser/browser-root.json  | 4 ++--
 .../elasticsearch/elasticsearch-root.json | 4 ++--
 .../main/resources/ui-initialized-templates/faas/faas-root.json   | 4 ++--
 .../resources/ui-initialized-templates/general/general-root.json  | 4 ++--
 .../ui-initialized-templates/general/general-service.json | 8 
 .../src/main/resources/ui-initialized-templates/k8s/k8s-root.json | 4 ++--
 .../ui-initialized-templates/k8s_service/k8s-service-root.json| 4 ++--
 .../ui-initialized-templates/k8s_service/k8s-service-service.json | 4 ++--
 .../main/resources/ui-initialized-templates/kafka/kafka-root.json | 4 ++--
 .../ui-initialized-templates/mesh/mesh-proces-relation.json   | 4 ++--
 .../main/resources/ui-initialized-templates/mesh/mesh-root.json   | 4 ++--
 .../resources/ui-initialized-templates/mesh/mesh-service.json | 4 ++--
 .../ui-initialized-templates/mesh_cp/mesh-control-plane-root.json | 4 ++--
 .../ui-initialized-templates/mesh_dp/mesh-data-plane-root.json| 4 ++--
 .../ui-initialized-templates/mesh_dp/mesh-data-plane-service.json | 4 ++--
 .../resources/ui-initialized-templates/mongodb/mongodb-root.json  | 4 ++--
 .../main/resources/ui-initialized-templates/mysql/mysql-root.json | 4 ++--
 .../resources/ui-initialized-templates/os_linux/linux-root.json   | 4 ++--
 .../ui-initialized-templates/os_windows/windows-root.json | 4 ++--
 .../ui-initialized-templates/postgresql/postgresql-root.json  | 4 ++--
 .../resources/ui-initialized-templates/pulsar/pulsar-root.json| 4 ++--
 .../ui-initialized-templates/rabbitmq/rabbitmq-root.json  | 4 ++--
 .../main/resources/ui-initialized-templates/redis/redis-root.json | 4 ++--
 .../ui-initialized-templates/so11y_oap/so11y-service.json | 4 ++--
 .../ui-initialized-templates/so11y_satellite/so11y-root.json  | 4 ++--
 .../virtual_cache/virtual-cache-root.json | 4 ++--
 .../virtual_database/virtual-database-root.json   | 4 ++--
 skywalking-ui | 2 +-
 35 files changed, 72 insertions(+), 69 deletions(-)

diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md
index 4b01ffcd4d..cfa8befdb9 100644
--- a/docs/en/changes/changes.md
+++ b/docs/en/changes/changes.md
@@ -54,6 +54,9 @@
 * Add a title and a description for trace segments.
 * Add Netty icon for Netty HTTP plugin.
 * Add Pulsar menu i18n files.
+* Refactor Logs view.
+* Implement the Dark Theme.
+* Change UI templates for Text widgets.
 
  Documentation
 
diff --git 
a/oap-server/server-starter/src/main/resources/ui-initialized-templates/apisix/apisix-root.json
 
b/oap-server/server-starter/src/main/resources/ui-initialized-templates/apisix/apisix-root.json
index c5f5029113..7137533693 100644
--- 
a/oap-server/server-starter/src/main/resources/ui-initialized-templates/apisix/apisix-root.json
+++ 
b/oap-server/server-starter/src/main/resources/ui-initialized-templates/apisix/apisix-root.json
@@ -28,8 +28,8 @@
"i":"1",
"type":"Text",
"graph":{
-  "fontColor":"blue",
-  "backgroundColor":"white",
+  "fontColor":"theme",
+  "backgroundColor":"theme",
   "content":"Provide APISIX monitoring through OpenTelemetry's 
Prometheus Receiver",
   "fontSize":14,
   "textAlign":"left",
diff --git 
a/oap-server/server-starter/src/main/resources/ui-initialized-templates/aws_dynamodb/aws_dynamodb-root.json
 
b/oap-server/server-starter/src/main/resources/ui-initialized-templates/aws_dynamodb/aws_dynamodb-root.json
index 29b598ccf4..d2472a5c7a 100644
--- 
a/oap-server/server-starter/src/main/resources/ui-initialized-templates/aws_dynamodb/aws_dynamodb-root.json
+++ 

Re: [PR] Sync UI: Implement the Dark Theme [skywalking]

2023-11-14 Thread via GitHub


wu-sheng merged PR #11543:
URL: https://github.com/apache/skywalking/pull/11543


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Sync UI: Implement the Dark Theme [skywalking]

2023-11-14 Thread via GitHub


Fine0830 commented on PR #11543:
URL: https://github.com/apache/skywalking/pull/11543#issuecomment-1810170855

   Done


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Sync UI: Implement the Dark Theme [skywalking]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #11543:
URL: https://github.com/apache/skywalking/pull/11543#issuecomment-1810153379

   @Fine0830 For all root dashboard, it should have a text widget on the top 
for doc link. But your commits seem not to have all of them. Could you recheck?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Sync UI: Implement the Dark Theme [skywalking]

2023-11-14 Thread via GitHub


Fine0830 opened a new pull request, #11543:
URL: https://github.com/apache/skywalking/pull/11543

   
   - [ ] If this pull request closes/resolves/fixes an existing issue, replace 
the issue number. Closes #.
   - [x] Update the [`CHANGES` 
log](https://github.com/apache/skywalking/blob/master/docs/en/changes/changes.md).
   
   * Implement the Dark Theme.
   * Change UI templates for Text widgets.
   * Refactor Logs view.
   
   Signed-off-by: Qiuxia Fan 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-booster-ui) branch main updated: feat: implement the Dark Theme (#334)

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


The following commit(s) were added to refs/heads/main by this push:
 new 832dc167 feat: implement the Dark Theme (#334)
832dc167 is described below

commit 832dc1676b7a79ed74759be3cb4f35ff522ac9b4
Author: Fine0830 
AuthorDate: Tue Nov 14 20:37:15 2023 +0800

feat: implement the Dark Theme (#334)
---
 package-lock.json  | 196 +
 package.json   |   2 +-
 src/App.vue|   5 +-
 src/assets/img/tools/EXIT.png  | Bin 269 -> 259 bytes
 src/components/SelectSingle.vue|   6 +-
 src/constants/data.ts  |   5 +
 src/hooks/useEcharts.ts|   7 +-
 src/layout/components/AppMain.vue  |   2 +-
 src/layout/components/NavBar.vue   |  37 ++--
 src/store/modules/app.ts   |   6 +
 src/store/modules/profile.ts   |   2 +-
 src/styles/light.scss  |  25 ---
 src/styles/reset.scss  |  25 +--
 src/styles/theme.scss  | 152 
 src/views/Marketplace.vue  |   2 +-
 src/views/Settings.vue |   4 +-
 src/views/alarm/Content.vue|   2 +-
 src/views/alarm/Header.vue |  11 +-
 src/views/dashboard/Widget.vue |   2 +-
 .../configuration/ContinuousProfiling.vue  |   2 +-
 src/views/dashboard/configuration/Event.vue|   2 +-
 src/views/dashboard/configuration/Text.vue |   3 +-
 .../dashboard/configuration/ThirdPartyApp.vue  |   2 +-
 src/views/dashboard/configuration/TimeRange.vue|   2 +-
 src/views/dashboard/configuration/Topology.vue |   2 +-
 src/views/dashboard/configuration/Widget.vue   |   6 +-
 .../configuration/widget/metric/Index.vue  |   3 +-
 .../dashboard/controls/ContinuousProfiling.vue |   6 +-
 src/views/dashboard/controls/DemandLog.vue |   4 +-
 src/views/dashboard/controls/Ebpf.vue  |   4 +-
 src/views/dashboard/controls/Event.vue |   4 +-
 src/views/dashboard/controls/Log.vue   |   4 +-
 src/views/dashboard/controls/NetworkProfiling.vue  |   6 +-
 src/views/dashboard/controls/Profile.vue   |   4 +-
 src/views/dashboard/controls/Tab.vue   |  11 +-
 src/views/dashboard/controls/TaskTimeline.vue  |   6 +-
 src/views/dashboard/controls/Text.vue  |  16 +-
 src/views/dashboard/controls/ThirdPartyApp.vue |   2 +-
 src/views/dashboard/controls/TimeRange.vue |   2 +-
 src/views/dashboard/controls/Topology.vue  |   3 +-
 src/views/dashboard/controls/Trace.vue |   4 +-
 src/views/dashboard/controls/Widget.vue|   4 +-
 src/views/dashboard/data.ts|   4 +-
 src/views/dashboard/graphs/Bar.vue |   8 +-
 src/views/dashboard/graphs/Card.vue|   2 +-
 src/views/dashboard/graphs/Line.vue|  14 +-
 src/views/dashboard/graphs/Table.vue   |   4 +-
 src/views/dashboard/graphs/TopList.vue |  10 +-
 src/views/dashboard/panel/Layout.vue   |   4 +-
 src/views/dashboard/panel/Tool.vue |  30 ++--
 .../components/InstanceList.vue|   4 +-
 .../continuous-profiling/components/Policy.vue |   4 +-
 .../continuous-profiling/components/PolicyList.vue |   8 +-
 src/views/dashboard/related/ebpf/Header.vue|   2 +-
 .../dashboard/related/ebpf/components/TaskList.vue |  12 +-
 src/views/dashboard/related/log/LogTable/Index.vue |   6 +-
 .../components/ProcessTopology.vue |   4 +-
 .../related/network-profiling/components/Tasks.vue |   8 +-
 .../network-profiling/components/TimeLine.vue  |   2 +-
 src/views/dashboard/related/profile/Header.vue |   2 +-
 .../related/profile/components/SegmentList.vue |  17 +-
 .../related/profile/components/Stack/Container.vue |   4 +-
 .../related/profile/components/Stack/Item.vue  |  30 ++--
 .../related/profile/components/TaskList.vue|  16 +-
 .../related/topology/components/Graph.vue  |  41 ++---
 .../related/topology/components/PodTopology.vue|  12 +-
 .../related/topology/components/Sankey.vue |   5 +-
 .../related/topology/components/Settings.vue   |   4 +-
 .../related/topology/components/utils/layout.ts|   1 -
 src/views/dashboard/related/trace/Detail.vue   |   6 +-
 src/views/dashboard/related/trace/Header.vue   |   4 +-
 src/views/dashboard/related/trace/Index.vue|   2 +-
 src/views/dashboard/related/trace/TraceList.vue|  

Re: [PR] feat: implement the Dark Theme [skywalking-booster-ui]

2023-11-14 Thread via GitHub


wu-sheng merged PR #334:
URL: https://github.com/apache/skywalking-booster-ui/pull/334


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Feature][UI] Implement a dark theme [skywalking]

2023-11-14 Thread via GitHub


wu-sheng closed issue #11453: [Feature][UI] Implement a dark theme
URL: https://github.com/apache/skywalking/issues/11453


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] feat: implement the Dark Theme [skywalking-booster-ui]

2023-11-14 Thread via GitHub


Fine0830 commented on PR #334:
URL: 
https://github.com/apache/skywalking-booster-ui/pull/334#issuecomment-1810122352

   > And one question, is the Dark theme by default now?
   
   Yes, it is.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] feat: implement the Dark Theme [skywalking-booster-ui]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #334:
URL: 
https://github.com/apache/skywalking-booster-ui/pull/334#issuecomment-1810116837

   @Fine0830 Please sync this to the main repository. And check all exported 
templates 
[here](https://github.com/apache/skywalking/tree/master/oap-server/server-starter/src/main/resources/ui-initialized-templates),
 and change it from given color to theme directly.
   
   And one question, is the Dark theme by default now?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] feat: implement the Dark Theme [skywalking-booster-ui]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #334:
URL: 
https://github.com/apache/skywalking-booster-ui/pull/334#issuecomment-1810105714

   https://github.com/apache/skywalking-booster-ui/assets/5441976/c5b90a36-63d3-478c-8993-0da99a7aaa31;>
   
   I think text widget background color should be changed accordingly?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #8:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/8#issuecomment-1810070089

   @hanahmily Could you check why e2e fails?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Support deployment in cluster mode [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


ButterBright commented on PR #7:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/7#issuecomment-1810067871

   It is still in progress. I've been a bit busy lately, but I will complete it 
as soon as possible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Feature] [SWCK] Integrate with opensearch storage types in Storage CRD [skywalking]

2023-11-14 Thread via GitHub


wu-sheng commented on issue #11542:
URL: https://github.com/apache/skywalking/issues/11542#issuecomment-1809939914

   I closed this, as this feature is up to you. We are not tracking and 
promised to have this in any milestone.
   
   Once you submit a pull request, we will assign the review and milestone.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Feature] [SWCK] Integrate with opensearch storage types in Storage CRD [skywalking]

2023-11-14 Thread via GitHub


wu-sheng closed issue #11542: [Feature] [SWCK] Integrate with opensearch 
storage types in Storage CRD
URL: https://github.com/apache/skywalking/issues/11542


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] [Feature] [SWCK] Integrate with opensearch storage types in Storage CRD [skywalking]

2023-11-14 Thread via GitHub


wu-sheng commented on issue #11542:
URL: https://github.com/apache/skywalking/issues/11542#issuecomment-1809897045

   If you want to submit the codes, go ahead.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[I] [Feature] [SWCK] Integrate with opensearch storage types in Storage CRD [skywalking]

2023-11-14 Thread via GitHub


hwzhuhao opened a new issue, #11542:
URL: https://github.com/apache/skywalking/issues/11542

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no 
similar feature requirement.
   
   
   ### Description
   
   Since skywalking has supported and tested the following versions of 
OpenSearch:
   1.1.0, 1.3.10
   2.4.0, 2.8.0
   Can we provide a storage type like opensearch to better integrate it ?
   
   ### Use case
   
   _No response_
   
   ### Related issues
   
   _No response_
   
   ### Are you willing to submit a pull request to implement this on your own?
   
   - [X] Yes I am willing to submit a pull request on my own!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
notifications-unsubscr...@skywalking.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-swck) branch dep deleted (was 1d3e4c1)

2023-11-14 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a change to branch dep
in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git


 was 1d3e4c1  Bump up dependencies

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(skywalking-swck) branch master updated: Bump up dependencies (#102)

2023-11-14 Thread wusheng
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-swck.git


The following commit(s) were added to refs/heads/master by this push:
 new 56846b5  Bump up dependencies (#102)
56846b5 is described below

commit 56846b5f04ee32d83b385a7720ab3b2de7cb473d
Author: kezhenxu94 
AuthorDate: Tue Nov 14 17:00:33 2023 +0800

Bump up dependencies (#102)
---
 adapter/dist/LICENSE   |  26 ++--
 ...e-google.golang.org-genproto-googleapis-api.txt | 144 -
 ...e-google.golang.org-genproto-googleapis-rpc.txt | 144 -
 adapter/go.mod |  26 ++--
 adapter/go.sum |  59 +
 operator/dist/LICENSE  |  22 ++--
 operator/go.mod|  22 ++--
 operator/go.sum|  39 +++---
 8 files changed, 155 insertions(+), 327 deletions(-)

diff --git a/adapter/dist/LICENSE b/adapter/dist/LICENSE
index dad5f59..87b4c07 100644
--- a/adapter/dist/LICENSE
+++ b/adapter/dist/LICENSE
@@ -46,8 +46,10 @@ Apache-2.0 licenses
 go.opentelemetry.io/otel/trace v0.20.0 Apache-2.0
 go.opentelemetry.io/proto/otlp v0.7.0 Apache-2.0
 google.golang.org/appengine v1.6.7 Apache-2.0
-google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f Apache-2.0
-google.golang.org/grpc v1.53.0 Apache-2.0
+google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 Apache-2.0
+google.golang.org/genproto/googleapis/api 
v0.0.0-20231016165738-49dd2c1f3d0b Apache-2.0
+google.golang.org/genproto/googleapis/rpc 
v0.0.0-20231106174013-bbf56f31fb17 Apache-2.0
+google.golang.org/grpc v1.59.0 Apache-2.0
 gopkg.in/yaml.v2 v2.4.0 Apache-2.0
 k8s.io/api v0.24.3 Apache-2.0
 k8s.io/apimachinery v0.24.3 Apache-2.0
@@ -84,22 +86,22 @@ BSD-3-Clause licenses
 github.com/evanphx/json-patch v4.12.0+incompatible BSD-3-Clause
 github.com/fsnotify/fsnotify v1.4.9 BSD-3-Clause
 github.com/gogo/protobuf v1.3.2 BSD-3-Clause
-github.com/golang/protobuf v1.5.2 BSD-3-Clause
+github.com/golang/protobuf v1.5.3 BSD-3-Clause
 github.com/google/go-cmp v0.5.9 BSD-3-Clause
-github.com/google/uuid v1.3.0 BSD-3-Clause
+github.com/google/uuid v1.3.1 BSD-3-Clause
 github.com/grpc-ecosystem/grpc-gateway v1.16.0 BSD-3-Clause
 github.com/imdario/mergo v0.3.10 BSD-3-Clause
 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 
BSD-3-Clause
 github.com/spf13/pflag v1.0.5 BSD-3-Clause
-golang.org/x/crypto v0.3.0 BSD-3-Clause
-golang.org/x/net v0.7.0 BSD-3-Clause
-golang.org/x/oauth2 v0.4.0 BSD-3-Clause
-golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 BSD-3-Clause
-golang.org/x/sys v0.10.0 BSD-3-Clause
-golang.org/x/term v0.5.0 BSD-3-Clause
-golang.org/x/text v0.7.0 BSD-3-Clause
+golang.org/x/crypto v0.15.0 BSD-3-Clause
+golang.org/x/net v0.18.0 BSD-3-Clause
+golang.org/x/oauth2 v0.11.0 BSD-3-Clause
+golang.org/x/sync v0.3.0 BSD-3-Clause
+golang.org/x/sys v0.14.0 BSD-3-Clause
+golang.org/x/term v0.14.0 BSD-3-Clause
+golang.org/x/text v0.14.0 BSD-3-Clause
 golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 BSD-3-Clause
-google.golang.org/protobuf v1.28.1 BSD-3-Clause
+google.golang.org/protobuf v1.31.0 BSD-3-Clause
 gopkg.in/inf.v0 v0.9.1 BSD-3-Clause
 
 
diff --git a/operator/dist/LICENSE 
b/adapter/dist/licenses/license-google.golang.org-genproto-googleapis-api.txt
similarity index 64%
copy from operator/dist/LICENSE
copy to 
adapter/dist/licenses/license-google.golang.org-genproto-googleapis-api.txt
index 3841cb3..d645695 100644
--- a/operator/dist/LICENSE
+++ 
b/adapter/dist/licenses/license-google.golang.org-genproto-googleapis-api.txt
@@ -1,3 +1,4 @@
+
  Apache License
Version 2.0, January 2004
 http://www.apache.org/licenses/
@@ -173,124 +174,29 @@
   incurred by, or claims asserted against, such Contributor by reason
   of your accepting any such warranty or additional liability.
 
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+  To apply the Apache License to your work, attach the following
+  boilerplate notice, with the fields enclosed by brackets "[]"
+  replaced with your own identifying information. (Don't include
+  the brackets!)  The text should be enclosed in the appropriate
+  comment syntax for the file format. We also recommend that a
+  file or class name and description of purpose be included on the
+  same "printed page" as the copyright notice for easier
+  identification within third-party archives.
+
+   

Re: [PR] Bump up dependencies [skywalking-swck]

2023-11-14 Thread via GitHub


wu-sheng merged PR #102:
URL: https://github.com/apache/skywalking-swck/pull/102


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Support deployment in cluster mode [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wu-sheng commented on PR #7:
URL: 
https://github.com/apache/skywalking-banyandb-helm/pull/7#issuecomment-1809789749

   How is this PR going?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Upgrade banyandb to 0.5.0 [skywalking-banyandb-helm]

2023-11-14 Thread via GitHub


wankai123 opened a new pull request, #8:
URL: https://github.com/apache/skywalking-banyandb-helm/pull/8

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(skywalking-banyandb-helm) 01/01: upgrade banyandb to 0.5.0

2023-11-14 Thread wankai
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a commit to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git

commit 7a99496f60d87fc85e9664d6201f4538e0a87897
Author: wankai123 
AuthorDate: Tue Nov 14 16:08:04 2023 +0800

upgrade banyandb to 0.5.0
---
 chart/values.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chart/values.yaml b/chart/values.yaml
index a77b0cc..d7357a6 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -27,7 +27,7 @@ standalone:
 # fsGroup: 1000
   image:
 repository: ghcr.io/apache/skywalking-banyandb
-tag: eecd29e71bc07d07f22aea1496d80dc76a2b2f90
+tag: 84f32b3969cdcc676aaee428383b34b3b67dbdf5
 pullPolicy: IfNotPresent
   env: []
 # - name: BANYANDB_FOO
@@ -143,4 +143,4 @@ serviceAccount:
   # If not set and create is true, a name is generated using the fullname 
template
   name: ""
 
-fullnameOverride: "banyandb"
\ No newline at end of file
+fullnameOverride: "banyandb"



(skywalking-banyandb-helm) branch banyandb-0.5 created (now 7a99496)

2023-11-14 Thread wankai
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a change to branch banyandb-0.5
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


  at 7a99496  upgrade banyandb to 0.5.0

This branch includes the following new commits:

 new 7a99496  upgrade banyandb to 0.5.0

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.