mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-26 21:51:43 +00:00
update skywalking 9.3.0 => 9.7.0
update skywalking-agent 8.16.0 => 9.2.0
This commit is contained in:
@@ -456,7 +456,7 @@ services:
|
||||
network_mode: "host"
|
||||
|
||||
sky-oap:
|
||||
image: apache/skywalking-oap-server:9.3.0
|
||||
image: apache/skywalking-oap-server:9.7.0
|
||||
container_name: sky-oap
|
||||
ports:
|
||||
- "11800:11800"
|
||||
@@ -473,7 +473,7 @@ services:
|
||||
network_mode: "host"
|
||||
|
||||
sky-ui:
|
||||
image: apache/skywalking-ui:9.3.0
|
||||
image: apache/skywalking-ui:9.7.0
|
||||
container_name: sky-ui
|
||||
ports:
|
||||
- "18080:18080"
|
||||
|
@@ -215,12 +215,13 @@ Apache 2.0 licenses
|
||||
The following components are provided under the Apache License. See project link for details.
|
||||
The text of each license is the standard Apache 2.0 license.
|
||||
|
||||
raphw (byte-buddy) 1.12.19: http://bytebuddy.net/ , Apache 2.0
|
||||
Google: grpc-java 1.50.0: https://github.com/grpc/grpc-java, Apache 2.0
|
||||
raphw (byte-buddy) 1.14.9: http://bytebuddy.net/ , Apache 2.0
|
||||
Google: grpc-java 1.53.0: https://github.com/grpc/grpc-java, Apache 2.0
|
||||
Google: gson 2.8.9: https://github.com/google/gson , Apache 2.0
|
||||
Google: proto-google-common-protos 2.0.1: https://github.com/googleapis/googleapis , Apache 2.0
|
||||
Google: jsr305 3.0.2: http://central.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom , Apache 2.0
|
||||
netty 4.1.86: https://github.com/netty/netty/blob/4.1/LICENSE.txt, Apache 2.0
|
||||
Google: guava 32.0.1: https://github.com/google/guava , Apache 2.0
|
||||
netty 4.1.100: https://github.com/netty/netty/blob/4.1/LICENSE.txt, Apache 2.0
|
||||
|
||||
========================================================================
|
||||
BSD licenses
|
||||
|
@@ -1,5 +1,5 @@
|
||||
Apache SkyWalking
|
||||
Copyright 2017-2023 The Apache Software Foundation
|
||||
Copyright 2017-2024 The Apache Software Foundation
|
||||
|
||||
This product includes software developed at
|
||||
The Apache Software Foundation (http://www.apache.org/).
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -20,6 +20,7 @@ collector.backend_service=${SW_AGENT_COLLECTOR_BACKEND_SERVICES:127.0.0.1:11800}
|
||||
# ${service name} = [${group name}::]${logic name}
|
||||
# The group name is optional only.
|
||||
agent.service_name=${SW_AGENT_NAME:Your_ApplicationName}
|
||||
agent.service_name#length=${SW_AGENT_NAME_MAX_LENGTH:50}
|
||||
|
||||
# The agent namespace
|
||||
agent.namespace=${SW_AGENT_NAMESPACE:}
|
||||
@@ -48,18 +49,10 @@ agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,
|
||||
# SkyWalking team may ask for these files in order to resolve compatible problem.
|
||||
agent.is_open_debugging_class=${SW_AGENT_OPEN_DEBUG:false}
|
||||
|
||||
# If true, SkyWalking agent will cache all instrumented classes files to memory or disk files (decided by class cache mode),
|
||||
# allow other javaagent to enhance those classes that enhanced by SkyWalking agent.
|
||||
agent.is_cache_enhanced_class=${SW_AGENT_CACHE_CLASS:false}
|
||||
|
||||
# The instrumented classes cache mode: MEMORY or FILE
|
||||
# MEMORY: cache class bytes to memory, if instrumented classes is too many or too large, it may take up more memory
|
||||
# FILE: cache class bytes in `/class-cache` folder, automatically clean up cached class files when the application exits
|
||||
agent.class_cache_mode=${SW_AGENT_CLASS_CACHE_MODE:MEMORY}
|
||||
|
||||
# Instance name is the identity of an instance, should be unique in the service. If empty, SkyWalking agent will
|
||||
# generate an 32-bit uuid. BY Default, SkyWalking uses UUID@hostname as the instance name. Max length is 50(UTF-8 char)
|
||||
agent.instance_name=${SW_AGENT_INSTANCE_NAME:}
|
||||
agent.instance_name#length=${SW_AGENT_INSTANCE_NAME_MAX_LENGTH:50}
|
||||
|
||||
# service instance properties in json format. e.g. agent.instance_properties_json = {"org": "apache-skywalking"}
|
||||
agent.instance_properties_json=${SW_INSTANCE_PROPERTIES_JSON:}
|
||||
@@ -163,8 +156,10 @@ buffer.channel_size=${SW_BUFFER_CHANNEL_SIZE:5}
|
||||
buffer.buffer_size=${SW_BUFFER_BUFFER_SIZE:300}
|
||||
# If true, skywalking agent will enable profile when user create a new profile task. Otherwise disable profile.
|
||||
profile.active=${SW_AGENT_PROFILE_ACTIVE:true}
|
||||
# Parallel monitor segment count
|
||||
# Parallel monitor endpoint thread count
|
||||
profile.max_parallel=${SW_AGENT_PROFILE_MAX_PARALLEL:5}
|
||||
# Max monitoring sub-tasks count of one single endpoint access
|
||||
profile.max_accept_sub_parallel=${SW_AGENT_PROFILE_MAX_ACCEPT_SUB_PARALLEL:5}
|
||||
# Max monitor segment time(minutes), if current segment monitor time out of limit, then stop it.
|
||||
profile.duration=${SW_AGENT_PROFILE_DURATION:10}
|
||||
# Max dump thread stack depth
|
||||
@@ -246,7 +241,7 @@ plugin.kafka.bootstrap_servers=${SW_KAFKA_BOOTSTRAP_SERVERS:localhost:9092}
|
||||
plugin.kafka.get_topic_timeout=${SW_GET_TOPIC_TIMEOUT:10}
|
||||
# Kafka producer configuration. Read [producer configure](http://kafka.apache.org/24/documentation.html#producerconfigs)
|
||||
# to get more details. Check document for more details and examples.
|
||||
plugin.kafka.producer_config=${sw_plugin_kafka_producer_config:}
|
||||
plugin.kafka.producer_config=${SW_PLUGIN_KAFKA_PRODUCER_CONFIG:}
|
||||
# Configure Kafka Producer configuration in JSON format. Notice it will be overridden by plugin.kafka.producer_config[key], if the key duplication.
|
||||
plugin.kafka.producer_config_json=${SW_PLUGIN_KAFKA_PRODUCER_CONFIG_JSON:}
|
||||
# Specify which Kafka topic name for Meter System data to report to.
|
||||
@@ -263,6 +258,8 @@ plugin.kafka.topic_management=${SW_PLUGIN_KAFKA_TOPIC_MANAGEMENT:skywalking-mana
|
||||
plugin.kafka.topic_logging=${SW_PLUGIN_KAFKA_TOPIC_LOGGING:skywalking-logs}
|
||||
# isolate multi OAP server when using same Kafka cluster (final topic name will append namespace before Kafka topics with `-` ).
|
||||
plugin.kafka.namespace=${SW_KAFKA_NAMESPACE:}
|
||||
# Specify which class to decode encoded configuration of kafka.You can set encoded information in `plugin.kafka.producer_config_json` or `plugin.kafka.producer_config` if you need.
|
||||
plugin.kafka.decode_class=${SW_KAFKA_DECODE_CLASS:}
|
||||
# Match spring beans with regular expression for the class name. Multiple expressions could be separated by a comma. This only works when `Spring annotation plugin` has been activated.
|
||||
plugin.springannotation.classname_match_regex=${SW_SPRINGANNOTATION_CLASSNAME_MATCH_REGEX:}
|
||||
# Whether or not to transmit logged data as formatted or un-formatted.
|
||||
@@ -271,6 +268,10 @@ plugin.toolkit.log.transmit_formatted=${SW_PLUGIN_TOOLKIT_LOG_TRANSMIT_FORMATTED
|
||||
plugin.lettuce.trace_redis_parameters=${SW_PLUGIN_LETTUCE_TRACE_REDIS_PARAMETERS:false}
|
||||
# If set to positive number and `plugin.lettuce.trace_redis_parameters` is set to `true`, Redis command parameters would be collected and truncated to this length.
|
||||
plugin.lettuce.redis_parameter_max_length=${SW_PLUGIN_LETTUCE_REDIS_PARAMETER_MAX_LENGTH:128}
|
||||
# Specify which command should be converted to write operation
|
||||
plugin.lettuce.operation_mapping_write=${SW_PLUGIN_LETTUCE_OPERATION_MAPPING_WRITE:getset,set,setbit,setex,setnx,setrange,strlen,mset,msetnx,psetex,incr,incrby,incrbyfloat,decr,decrby,append,hmset,hset,hsetnx,hincrby,hincrbyfloat,hdel,rpoplpush,rpush,rpushx,lpush,lpushx,lrem,ltrim,lset,brpoplpush,linsert,sadd,sdiff,sdiffstore,sinterstore,sismember,srem,sunion,sunionstore,sinter,zadd,zincrby,zinterstore,zrange,zrangebylex,zrangebyscore,zrank,zrem,zremrangebylex,zremrangebyrank,zremrangebyscore,zrevrange,zrevrangebyscore,zrevrank,zunionstore,xadd,xdel,del,xtrim}
|
||||
# Specify which command should be converted to read operation
|
||||
plugin.lettuce.operation_mapping_read=${SW_PLUGIN_LETTUCE_OPERATION_MAPPING_READ:getrange,getbit,mget,hvals,hkeys,hlen,hexists,hget,hgetall,hmget,blpop,brpop,lindex,llen,lpop,lrange,rpop,scard,srandmember,spop,sscan,smove,zlexcount,zscore,zscan,zcard,zcount,xget,get,xread,xlen,xrange,xrevrange}
|
||||
# If set to true, the parameters of the cypher would be collected.
|
||||
plugin.neo4j.trace_cypher_parameters=${SW_PLUGIN_NEO4J_TRACE_CYPHER_PARAMETERS:false}
|
||||
# If set to positive number, the `db.cypher.parameters` would be truncated to this length, otherwise it would be completely saved, which may cause performance problem.
|
||||
@@ -311,3 +312,13 @@ plugin.redisson.redis_parameter_max_length=${SW_PLUGIN_REDISSON_REDIS_PARAMETER_
|
||||
plugin.redisson.operation_mapping_write=${SW_PLUGIN_REDISSON_OPERATION_MAPPING_WRITE:getset,set,setbit,setex,setnx,setrange,strlen,mset,msetnx,psetex,incr,incrby,incrbyfloat,decr,decrby,append,hmset,hset,hsetnx,hincrby,hincrbyfloat,hdel,rpoplpush,rpush,rpushx,lpush,lpushx,lrem,ltrim,lset,brpoplpush,linsert,sadd,sdiff,sdiffstore,sinterstore,sismember,srem,sunion,sunionstore,sinter,zadd,zincrby,zinterstore,zrange,zrangebylex,zrangebyscore,zrank,zrem,zremrangebylex,zremrangebyrank,zremrangebyscore,zrevrange,zrevrangebyscore,zrevrank,zunionstore,xadd,xdel,del,xtrim}
|
||||
# Specify which command should be converted to read operation
|
||||
plugin.redisson.operation_mapping_read=${SW_PLUGIN_REDISSON_OPERATION_MAPPING_READ:getrange,getbit,mget,hvals,hkeys,hlen,hexists,hget,hgetall,hmget,blpop,brpop,lindex,llen,lpop,lrange,rpop,scard,srandmember,spop,sscan,smove,zlexcount,zscore,zscan,zcard,zcount,xget,get,xread,xlen,xrange,xrevrange}
|
||||
# This config item controls that whether the Netty-http plugin should collect the http body of the request.
|
||||
plugin.nettyhttp.collect_request_body=${SW_PLUGIN_NETTYHTTP_COLLECT_REQUEST_BODY:false}
|
||||
# When `HTTP_COLLECT_REQUEST_BODY` is enabled, how many characters to keep and send to the OAP backend, use negative values to keep and send the complete body.
|
||||
plugin.nettyhttp.filter_length_limit=${SW_PLUGIN_NETTYHTTP_FILTER_LENGTH_LIMIT:1024}
|
||||
# When `HTTP_COLLECT_REQUEST_BODY` is enabled and content-type start with HTTP_SUPPORTED_CONTENT_TYPES_PREFIX, collect the body of the request , multiple paths should be separated by `,`
|
||||
plugin.nettyhttp.supported_content_types_prefix=${SW_PLUGIN_NETTYHTTP_SUPPORTED_CONTENT_TYPES_PREFIX:application/json,text/}
|
||||
# If set to true, the keys of messages would be collected by the plugin for RocketMQ Java client.
|
||||
plugin.rocketmqclient.collect_message_keys=${SW_PLUGIN_ROCKETMQCLIENT_COLLECT_MESSAGE_KEYS:false}
|
||||
# If set to true, the tags of messages would be collected by the plugin for RocketMQ Java client.
|
||||
plugin.rocketmqclient.collect_message_tags=${SW_PLUGIN_ROCKETMQCLIENT_COLLECT_MESSAGE_TAGS:false}
|
||||
|
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-canal-1.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-canal-1.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-ehcache-2.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-ehcache-2.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-grpc-1.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-grpc-1.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-gson-2.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-gson-2.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-h2-1.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-h2-1.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-hystrix-1.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-hystrix-1.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-jackson-2.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-jackson-2.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-jdbc-commons-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-jdbc-commons-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-lettuce-5.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-lettuce-5.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-mongodb-3.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-mongodb-3.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-mongodb-4.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-mongodb-4.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-mysql-5.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-mysql-5.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-mysql-6.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-mysql-6.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-mysql-8.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-mysql-8.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-neo4j-4.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-neo4j-4.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-okhttp-3.x-plugin-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-okhttp-3.x-plugin-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
docker/skywalking/agent/plugins/apm-okhttp-common-9.2.0.jar
Normal file
BIN
docker/skywalking/agent/plugins/apm-okhttp-common-9.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user