diff --git a/apm-sniffer/optional-plugins/trace-ignore-plugin/README_CN.md b/apm-sniffer/optional-plugins/trace-ignore-plugin/README_CN.md index cc555ac809f9288c9d80fe7dba7ac54423d6630e..3a21bec879abd88a7c76dad8b6a0f5c317e4daae 100644 --- a/apm-sniffer/optional-plugins/trace-ignore-plugin/README_CN.md +++ b/apm-sniffer/optional-plugins/trace-ignore-plugin/README_CN.md @@ -3,12 +3,11 @@ ## 介绍 - 这个插件的作用是对追踪的个性化服务过滤. -- 你可以设置多个需要忽略的路径, 意味着包含这些路径的`追踪信息`不会被`agent`发送到 `collector`. +- 你可以设置多个需要忽略的URL路径, 意味着包含这些路径的`追踪信息`不会被`agent`发送到 `collector`. - 当前的路径匹配规则是 `Ant Path`匹配风格 , 例如 `/path/*`, `/path/**`, `/path/?`. - 将`apm-trace-ignore-plugin-x.jar`拷贝到`agent/plugins`后,重启探针即可生效 - [Skywalking-使用可选插件 apm-trace-ignore-plugin](https://blog.csdn.net/u013095337/article/details/80452088) 有详细使用介绍 - ## 如何配置路径 有两种配置方式,可使用任意一种,配置生效的优先级从高到低 1. 在系统环境变量中配置,你需要在系统变量中添加`skywalking.trace.ignore_path`, 值是你需要忽略的路径,多个以`,`号分隔 diff --git a/docs/README_ZH.md b/docs/README_ZH.md index 55230f195e71b54498433b230a73fc29c912d9cd..823c822acd423bf5845c64dc1c8eee139ff49e04 100644 --- a/docs/README_ZH.md +++ b/docs/README_ZH.md @@ -5,9 +5,14 @@ * 快速入门 * [快速入门](cn/Quick-start-CN.md) - * [中间件,框架与类库支持列表](Supported-list.md) - * [如何关闭特定插件](cn/How-to-disable-plugin-CN.md) - * [可选插件](cn/Optional-plugins-CN.md) + * [部署 javaagent](cn/Deploy-skywalking-agent-CN.md) + * [集群模式部署](cn/Deploy-backend-in-cluster-mode-CN.md) + * [中间件,框架与类库支持列表](Supported-list.md) + * [如何关闭特定插件?](cn/How-to-disable-plugin-CN.md) + * [可选插件](cn/Optional-plugins-CN.md) + * [Spring beans 插件](cn/agent-optional-plugins-CN/Spring-bean-plugins-CN.md) + * [Oracle and Resin 插件](cn/agent-optional-plugins-CN/Oracle-Resin-plugins-CN.md) + * [[**孵化特性**] 自定义配置忽略追踪信息](../apm-sniffer/optional-plugins/trace-ignore-plugin/README_CN.md) * 高级特性 * [通过系统启动参数进行覆盖配置](cn/Setting-override-CN.md) * [服务直连(Direct uplink)及禁用名称服务(naming service)](cn/Direct-uplink-CN.md) diff --git a/docs/cn/Optional-plugins-CN.md b/docs/cn/Optional-plugins-CN.md index fea89817f47ea02819bedba426d0bb3b8d059bc8..fb2c0c86ffae3beeff464fa56c52715df5cc3601 100644 --- a/docs/cn/Optional-plugins-CN.md +++ b/docs/cn/Optional-plugins-CN.md @@ -3,12 +3,7 @@ 为了使用这些插件,你需要自己编译源代码,或将某些插件复制到`/plugins`。 -## Spring bean 插件 -这个插件允许在Spring上下文中追踪带有`@Bean`、 `@Service`、`@Component`和`@Repository`注解的bean的所有方法。 -- 为什么这个插件是可选的? -在Spring上下文中追踪所有方法会创建很多的span,也会消耗更多的CPU,内存和网络。 -当然你希望包含尽可能多的span,但请确保你的系统有效负载能够支持这些。 ## Oracle and Resin 插件 由于Oracle和Resin的License,这些插件无法在Apache发行版中提供。 diff --git a/docs/cn/agent-optional-plugins-CN/Oracle-Resin-plugins-CN.md b/docs/cn/agent-optional-plugins-CN/Oracle-Resin-plugins-CN.md new file mode 100644 index 0000000000000000000000000000000000000000..1a86e7479d2bbb600886520329cc7f97bbf31b5a --- /dev/null +++ b/docs/cn/agent-optional-plugins-CN/Oracle-Resin-plugins-CN.md @@ -0,0 +1,11 @@ +## Oracle and Resin 插件 +由于Oracle和Resin的License,这些插件无法在Apache发行版中提供。 +如果你想了解详细信息,请阅读 [Apache license legal document](https://www.apache.org/legal/resolved.html) + +- 我们应该如何在本地构建这些可选插件? + +1. Resin 3: 下载Resin 3.0.9 并且把jar放在`/ci-dependencies/resin-3.0.9.jar`. +1. Resin 4: 下载Resin 4.0.41 并且把jar放在`/ci-dependencies/resin-4.0.41.jar`. +1. Oracle: 下载Oracle OJDBC-14 Driver 10.2.0.4.0 并且把jar放在`/ci-dependencies/ojdbc14-10.2.0.4.0.jar`. + +如果你找不到这些jar,请查看 [这里](https://github.com/OpenSkywalking/skywalking-ci-assist/tree/master/jars) diff --git a/docs/cn/agent-optional-plugins-CN/Spring-bean-plugins-CN.md b/docs/cn/agent-optional-plugins-CN/Spring-bean-plugins-CN.md new file mode 100644 index 0000000000000000000000000000000000000000..b9da506d29b313d594c31223ec4d429065eba42c --- /dev/null +++ b/docs/cn/agent-optional-plugins-CN/Spring-bean-plugins-CN.md @@ -0,0 +1,7 @@ +## Spring bean 插件 +这个插件允许在Spring上下文中追踪带有`@Bean`、 `@Service`、`@Component`和`@Repository`注解的bean的所有方法。 + +- 为什么这个插件是可选的? + +在Spring上下文中追踪所有方法会创建很多的span,也会消耗更多的CPU,内存和网络。 +当然你希望包含尽可能多的span,但请确保你的系统有效负载能够支持这些。