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

[skywalking] branch 8.3.0/docs-hotfix updated: Sync doc fix from the master.

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

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


The following commit(s) were added to refs/heads/8.3.0/docs-hotfix by this push:
     new 7748639  Sync doc fix from the master.
7748639 is described below

commit 7748639cf6be88cd629fb757cc5994b7a9184cd1
Author: Viktor Yi <vi...@163.com>
AuthorDate: Sat Dec 26 19:10:42 2020 +0800

    Sync doc fix from the master.
---
 docs/en/setup/backend/trace-sampling.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/en/setup/backend/trace-sampling.md b/docs/en/setup/backend/trace-sampling.md
index 70785e7..4c343e4 100644
--- a/docs/en/setup/backend/trace-sampling.md
+++ b/docs/en/setup/backend/trace-sampling.md
@@ -14,7 +14,7 @@ In **agent-analyzer** module, you will find `sampleRate` setting.
 agent-analyzer:
   default:
     ...
-    sampleRate: ${SW_TRACE_SAMPLE_RATE:1000} # The sample rate precision is 1/10000. 10000 means 100% sample in default.
+    sampleRate: ${SW_TRACE_SAMPLE_RATE:10000} # The sample rate precision is 1/10000. 10000 means 100% sample in default.
     forceSampleErrorSegment: ${SW_FORCE_SAMPLE_ERROR_SEGMENT:true} # When sampling mechanism activated, this config would make the error status segment sampled, ignoring the sampling rate.
     slowTraceSegmentThreshold: ${SW_SLOW_TRACE_SEGMENT_THRESHOLD:-1} # Setting this threshold about the latency would make the slow trace segments sampled if they cost more time, even the sampling mechanism activated. The default value is `-1`, which means would not sample slow traces. Unit, millisecond.
 ```