You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| sample_ratio | number | False | 1 | [0.00001, 1] | Frequency of request sampling. Setting the sample ratio to `1` means to sample all requests. |
65
65
66
+
:::tip Performance
67
+
68
+
The plugin hooks several request phases and builds a trace per sampled request, so tracing adds per-request overhead. Sampling is the primary lever to control it: unsampled requests skip trace creation entirely. Lower `sample_ratio` on high-throughput routes to reduce overhead while keeping representative traces.
69
+
70
+
:::
71
+
66
72
## Example
67
73
68
74
To follow along the example, start a storage, OAP and Booster UI with Docker Compose, following [Skywalking's documentation](https://skywalking.apache.org/docs/main/next/en/setup/backend/backend-docker/). Once set up, the OAP server should be listening on `12800` and you should be able to access the UI at [http://localhost:8080](http://localhost:8080).
Copy file name to clipboardExpand all lines: docs/en/latest/plugins/zipkin.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,12 @@ See the configuration file for configuration options available to all Plugins.
63
63
|server_addr | string | False |the value of `$server_addr` | IPv4 address | IPv4 address for the Zipkin reporter. For example, you can set this to your external IP address. |
64
64
|span_version | integer | False | 2 | [1, 2] | Version of the span type. |
65
65
66
+
:::tip Performance
67
+
68
+
The plugin hooks several request phases and builds a span per sampled request, so tracing adds per-request overhead. Sampling is the primary lever to control it: `sample_ratio`is the fraction of requests traced, and unsampled requests skip span tag construction entirely. Lower `sample_ratio` on high-throughput routes to reduce overhead while keeping representative traces.
69
+
70
+
:::
71
+
66
72
## Examples
67
73
68
74
The examples below show different use cases of the `zipkin` Plugin.
0 commit comments