CDS - Configuration Discovery Service provides the dynamic configuration for the agent, defined in gRPC.
The configuration content includes the service name and their configs. The
configurations: //service name serviceA: // Configurations of service A // Key and Value are determined by the agent side. // Check the agent setup doc for all available configurations. key1: value1 key2: value2 ... serviceB: ...
Java agent supports the following dynamic configurations.
| Config Key | Value Description | Value Format Example | Required Plugin(s) |
|---|---|---|---|
| agent.sample_n_per_3_secs | The number of sampled traces per 3 seconds | -1 | - |
| agent.ignore_suffix | If the operation name of the first span is included in this set, this segment should be ignored. Multiple values should be separated by , | .txt,.log | - |
| agent.trace.ignore_path | The value is the path that you need to ignore, multiple paths should be separated by , more details | /your/path/1/**,/your/path/2/** | apm-trace-ignore-plugin |
| agent.span_limit_per_segment | The max number of spans per segment. | 300 | - |
Required plugin(s), the configuration affects only when the required plugins activated.