Skip to main content
PUT
/
api
/
v1
/
config
/
trace-jaeger-remote-sampling-strategies
/
{slug}
{
  "trace_jaeger_remote_sampling_strategy": {
    "name": "<string>",
    "applied_strategy": {
      "per_operation_strategies": {
        "default_lower_bound_traces_per_second": 123,
        "default_sampling_rate": 123,
        "default_upper_bound_traces_per_second": 123,
        "per_operation_strategies": [
          {
            "operation": "<string>",
            "probabilistic_sampling_strategy": {
              "sampling_rate": 123
            }
          }
        ]
      },
      "probabilistic_strategy": {
        "sampling_rate": 123
      },
      "rate_limiting_strategy": {
        "max_traces_per_second": 123
      }
    },
    "created_at": "2023-11-07T05:31:56Z",
    "service_name": "<string>",
    "slug": "<string>",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

API-Token
string
header
required

Chronosphere API token

Path Parameters

slug
string
required

Body

application/json
create_if_missing
boolean

If true, the TraceJaegerRemoteSamplingStrategy will be created if it does not already exist, identified by slug. If false, an error will be returned if the TraceJaegerRemoteSamplingStrategy does not already exist.

dry_run
boolean

If true, validates the specified configuration without creating or updating the TraceJaegerRemoteSamplingStrategy. If the specified configuration is valid, the endpoint returns a partial response without the TraceJaegerRemoteSamplingStrategy. If the specified configuration is invalid, the endpoint returns an error.

trace_jaeger_remote_sampling_strategy
object

The TraceJaegerRemoteSamplingStrategy to update.

Response

A successful response containing the updated TraceJaegerRemoteSamplingStrategy.

trace_jaeger_remote_sampling_strategy
object