published on Friday, Jun 5, 2026 by Chronosphere
published on Friday, Jun 5, 2026 by Chronosphere
Per-service Jaeger remote sampling strategy (probabilistic, rate-limiting, or per-operation) served to instrumented applications so they can sample traces at the configured rate.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Pulumi = Chronosphere.Pulumi;
return await Deployment.RunAsync(() =>
{
var probabilistic = new Pulumi.TraceJaegerRemoteSamplingStrategy("probabilistic", new()
{
AppliedStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs
{
ProbabilisticStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs
{
SamplingRate = 0.01,
},
},
Name = "Probabilistic sampling for service A",
ServiceName = "service-a",
});
var rateLimited = new Pulumi.TraceJaegerRemoteSamplingStrategy("rateLimited", new()
{
AppliedStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs
{
RateLimitingStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs
{
MaxTracesPerSecond = 2,
},
},
Name = "Rate-limited sampling for service B",
ServiceName = "service-b",
});
});
package main
import (
"github.com/chronosphereio/pulumi-chronosphere/sdk/go/chronosphere"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := chronosphere.NewTraceJaegerRemoteSamplingStrategy(ctx, "probabilistic", &chronosphere.TraceJaegerRemoteSamplingStrategyArgs{
AppliedStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs{
ProbabilisticStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs{
SamplingRate: pulumi.Float64(0.01),
},
},
Name: pulumi.String("Probabilistic sampling for service A"),
ServiceName: pulumi.String("service-a"),
})
if err != nil {
return err
}
_, err = chronosphere.NewTraceJaegerRemoteSamplingStrategy(ctx, "rateLimited", &chronosphere.TraceJaegerRemoteSamplingStrategyArgs{
AppliedStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs{
RateLimitingStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs{
MaxTracesPerSecond: pulumi.Int(2),
},
},
Name: pulumi.String("Rate-limited sampling for service B"),
ServiceName: pulumi.String("service-b"),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.chronosphere.TraceJaegerRemoteSamplingStrategy;
import com.pulumi.chronosphere.TraceJaegerRemoteSamplingStrategyArgs;
import com.pulumi.chronosphere.inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs;
import com.pulumi.chronosphere.inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs;
import com.pulumi.chronosphere.inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var probabilistic = new TraceJaegerRemoteSamplingStrategy("probabilistic", TraceJaegerRemoteSamplingStrategyArgs.builder()
.appliedStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs.builder()
.probabilisticStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs.builder()
.samplingRate(0.01)
.build())
.build())
.name("Probabilistic sampling for service A")
.serviceName("service-a")
.build());
var rateLimited = new TraceJaegerRemoteSamplingStrategy("rateLimited", TraceJaegerRemoteSamplingStrategyArgs.builder()
.appliedStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs.builder()
.rateLimitingStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs.builder()
.maxTracesPerSecond(2)
.build())
.build())
.name("Rate-limited sampling for service B")
.serviceName("service-b")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as chronosphere from "@pulumi-chronosphere/pulumi-chronosphere";
const probabilistic = new chronosphere.TraceJaegerRemoteSamplingStrategy("probabilistic", {
appliedStrategy: {
probabilisticStrategy: {
samplingRate: 0.01,
},
},
name: "Probabilistic sampling for service A",
serviceName: "service-a",
});
const rateLimited = new chronosphere.TraceJaegerRemoteSamplingStrategy("rateLimited", {
appliedStrategy: {
rateLimitingStrategy: {
maxTracesPerSecond: 2,
},
},
name: "Rate-limited sampling for service B",
serviceName: "service-b",
});
import pulumi
import pulumi_chronosphere as chronosphere
probabilistic = chronosphere.TraceJaegerRemoteSamplingStrategy("probabilistic",
applied_strategy=chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs(
probabilistic_strategy=chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs(
sampling_rate=0.01,
),
),
name="Probabilistic sampling for service A",
service_name="service-a")
rate_limited = chronosphere.TraceJaegerRemoteSamplingStrategy("rateLimited",
applied_strategy=chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs(
rate_limiting_strategy=chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs(
max_traces_per_second=2,
),
),
name="Rate-limited sampling for service B",
service_name="service-b")
resources:
probabilistic:
type: chronosphere:TraceJaegerRemoteSamplingStrategy
properties:
appliedStrategy:
probabilisticStrategy:
samplingRate: 0.01
name: Probabilistic sampling for service A
serviceName: service-a
rateLimited:
type: chronosphere:TraceJaegerRemoteSamplingStrategy
properties:
appliedStrategy:
rateLimitingStrategy:
maxTracesPerSecond: 2
name: Rate-limited sampling for service B
serviceName: service-b
Create TraceJaegerRemoteSamplingStrategy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TraceJaegerRemoteSamplingStrategy(name: string, args: TraceJaegerRemoteSamplingStrategyArgs, opts?: CustomResourceOptions);@overload
def TraceJaegerRemoteSamplingStrategy(resource_name: str,
args: TraceJaegerRemoteSamplingStrategyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TraceJaegerRemoteSamplingStrategy(resource_name: str,
opts: Optional[ResourceOptions] = None,
applied_strategy: Optional[TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs] = None,
name: Optional[str] = None,
service_name: Optional[str] = None,
slug: Optional[str] = None)func NewTraceJaegerRemoteSamplingStrategy(ctx *Context, name string, args TraceJaegerRemoteSamplingStrategyArgs, opts ...ResourceOption) (*TraceJaegerRemoteSamplingStrategy, error)public TraceJaegerRemoteSamplingStrategy(string name, TraceJaegerRemoteSamplingStrategyArgs args, CustomResourceOptions? opts = null)
public TraceJaegerRemoteSamplingStrategy(String name, TraceJaegerRemoteSamplingStrategyArgs args)
public TraceJaegerRemoteSamplingStrategy(String name, TraceJaegerRemoteSamplingStrategyArgs args, CustomResourceOptions options)
type: chronosphere:TraceJaegerRemoteSamplingStrategy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "chronosphere_tracejaegerremotesamplingstrategy" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TraceJaegerRemoteSamplingStrategyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TraceJaegerRemoteSamplingStrategyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TraceJaegerRemoteSamplingStrategyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TraceJaegerRemoteSamplingStrategyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TraceJaegerRemoteSamplingStrategyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var traceJaegerRemoteSamplingStrategyResource = new Pulumi.TraceJaegerRemoteSamplingStrategy("traceJaegerRemoteSamplingStrategyResource", new()
{
AppliedStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs
{
PerOperationStrategies = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesArgs
{
DefaultSamplingRate = 0,
DefaultLowerBoundTracesPerSecond = 0,
DefaultUpperBoundTracesPerSecond = 0,
PerOperationStrategies = new[]
{
new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyArgs
{
Operation = "string",
ProbabilisticStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyProbabilisticStrategyArgs
{
SamplingRate = 0,
},
},
},
},
ProbabilisticStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs
{
SamplingRate = 0,
},
RateLimitingStrategy = new Pulumi.Inputs.TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs
{
MaxTracesPerSecond = 0,
},
},
Name = "string",
ServiceName = "string",
Slug = "string",
});
example, err := chronosphere.NewTraceJaegerRemoteSamplingStrategy(ctx, "traceJaegerRemoteSamplingStrategyResource", &chronosphere.TraceJaegerRemoteSamplingStrategyArgs{
AppliedStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs{
PerOperationStrategies: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesArgs{
DefaultSamplingRate: pulumi.Float64(0),
DefaultLowerBoundTracesPerSecond: pulumi.Float64(0),
DefaultUpperBoundTracesPerSecond: pulumi.Float64(0),
PerOperationStrategies: chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyArray{
&chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyArgs{
Operation: pulumi.String("string"),
ProbabilisticStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyProbabilisticStrategyArgs{
SamplingRate: pulumi.Float64(0),
},
},
},
},
ProbabilisticStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs{
SamplingRate: pulumi.Float64(0),
},
RateLimitingStrategy: &chronosphere.TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs{
MaxTracesPerSecond: pulumi.Int(0),
},
},
Name: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Slug: pulumi.String("string"),
})
resource "chronosphere_tracejaegerremotesamplingstrategy" "traceJaegerRemoteSamplingStrategyResource" {
applied_strategy = {
per_operation_strategies = {
default_sampling_rate = 0
default_lower_bound_traces_per_second = 0
default_upper_bound_traces_per_second = 0
per_operation_strategies = [{
"operation" = "string"
"probabilisticStrategy" = {
"samplingRate" = 0
}
}]
}
probabilistic_strategy = {
sampling_rate = 0
}
rate_limiting_strategy = {
max_traces_per_second = 0
}
}
name = "string"
service_name = "string"
slug = "string"
}
var traceJaegerRemoteSamplingStrategyResource = new TraceJaegerRemoteSamplingStrategy("traceJaegerRemoteSamplingStrategyResource", TraceJaegerRemoteSamplingStrategyArgs.builder()
.appliedStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs.builder()
.perOperationStrategies(TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesArgs.builder()
.defaultSamplingRate(0.0)
.defaultLowerBoundTracesPerSecond(0.0)
.defaultUpperBoundTracesPerSecond(0.0)
.perOperationStrategies(TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyArgs.builder()
.operation("string")
.probabilisticStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyProbabilisticStrategyArgs.builder()
.samplingRate(0.0)
.build())
.build())
.build())
.probabilisticStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs.builder()
.samplingRate(0.0)
.build())
.rateLimitingStrategy(TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs.builder()
.maxTracesPerSecond(0)
.build())
.build())
.name("string")
.serviceName("string")
.slug("string")
.build());
trace_jaeger_remote_sampling_strategy_resource = chronosphere.TraceJaegerRemoteSamplingStrategy("traceJaegerRemoteSamplingStrategyResource",
applied_strategy={
"per_operation_strategies": {
"default_sampling_rate": float(0),
"default_lower_bound_traces_per_second": float(0),
"default_upper_bound_traces_per_second": float(0),
"per_operation_strategies": [{
"operation": "string",
"probabilistic_strategy": {
"sampling_rate": float(0),
},
}],
},
"probabilistic_strategy": {
"sampling_rate": float(0),
},
"rate_limiting_strategy": {
"max_traces_per_second": 0,
},
},
name="string",
service_name="string",
slug="string")
const traceJaegerRemoteSamplingStrategyResource = new chronosphere.TraceJaegerRemoteSamplingStrategy("traceJaegerRemoteSamplingStrategyResource", {
appliedStrategy: {
perOperationStrategies: {
defaultSamplingRate: 0,
defaultLowerBoundTracesPerSecond: 0,
defaultUpperBoundTracesPerSecond: 0,
perOperationStrategies: [{
operation: "string",
probabilisticStrategy: {
samplingRate: 0,
},
}],
},
probabilisticStrategy: {
samplingRate: 0,
},
rateLimitingStrategy: {
maxTracesPerSecond: 0,
},
},
name: "string",
serviceName: "string",
slug: "string",
});
type: chronosphere:TraceJaegerRemoteSamplingStrategy
properties:
appliedStrategy:
perOperationStrategies:
defaultLowerBoundTracesPerSecond: 0
defaultSamplingRate: 0
defaultUpperBoundTracesPerSecond: 0
perOperationStrategies:
- operation: string
probabilisticStrategy:
samplingRate: 0
probabilisticStrategy:
samplingRate: 0
rateLimitingStrategy:
maxTracesPerSecond: 0
name: string
serviceName: string
slug: string
TraceJaegerRemoteSamplingStrategy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The TraceJaegerRemoteSamplingStrategy resource accepts the following input properties:
- Applied
Strategy Chronosphere.Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - Name string
- Display name of the Jaeger remote sampling strategy.
- Service
Name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - Slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- Applied
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Args - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - Name string
- Display name of the Jaeger remote sampling strategy.
- Service
Name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - Slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied_
strategy object - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name string
- Display name of the Jaeger remote sampling strategy.
- service_
name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name String
- Display name of the Jaeger remote sampling strategy.
- service
Name String - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug String
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name string
- Display name of the Jaeger remote sampling strategy.
- service
Name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied_
strategy TraceJaeger Remote Sampling Strategy Applied Strategy Args - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name str
- Display name of the Jaeger remote sampling strategy.
- service_
name str - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug str
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied
Strategy Property Map - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name String
- Display name of the Jaeger remote sampling strategy.
- service
Name String - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug String
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
Outputs
All input properties are implicitly available as output properties. Additionally, the TraceJaegerRemoteSamplingStrategy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing TraceJaegerRemoteSamplingStrategy Resource
Get an existing TraceJaegerRemoteSamplingStrategy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TraceJaegerRemoteSamplingStrategyState, opts?: CustomResourceOptions): TraceJaegerRemoteSamplingStrategy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
applied_strategy: Optional[TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs] = None,
name: Optional[str] = None,
service_name: Optional[str] = None,
slug: Optional[str] = None) -> TraceJaegerRemoteSamplingStrategyfunc GetTraceJaegerRemoteSamplingStrategy(ctx *Context, name string, id IDInput, state *TraceJaegerRemoteSamplingStrategyState, opts ...ResourceOption) (*TraceJaegerRemoteSamplingStrategy, error)public static TraceJaegerRemoteSamplingStrategy Get(string name, Input<string> id, TraceJaegerRemoteSamplingStrategyState? state, CustomResourceOptions? opts = null)public static TraceJaegerRemoteSamplingStrategy get(String name, Output<String> id, TraceJaegerRemoteSamplingStrategyState state, CustomResourceOptions options)resources: _: type: chronosphere:TraceJaegerRemoteSamplingStrategy get: id: ${id}import {
to = chronosphere_tracejaegerremotesamplingstrategy.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Applied
Strategy Chronosphere.Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - Name string
- Display name of the Jaeger remote sampling strategy.
- Service
Name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - Slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- Applied
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Args - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - Name string
- Display name of the Jaeger remote sampling strategy.
- Service
Name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - Slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied_
strategy object - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name string
- Display name of the Jaeger remote sampling strategy.
- service_
name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name String
- Display name of the Jaeger remote sampling strategy.
- service
Name String - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug String
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name string
- Display name of the Jaeger remote sampling strategy.
- service
Name string - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug string
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied_
strategy TraceJaeger Remote Sampling Strategy Applied Strategy Args - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name str
- Display name of the Jaeger remote sampling strategy.
- service_
name str - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug str
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
- applied
Strategy Property Map - Sampling strategy returned to the Jaeger client. Exactly one of
probabilistic_strategy,rate_limiting_strategy, orper_operation_strategiesmust be set. - name String
- Display name of the Jaeger remote sampling strategy.
- service
Name String - Value of
service.namethe strategy applies to. Jaeger SDK clients reporting under this service receive this sampling configuration. - slug String
- Stable identifier for the Jaeger remote sampling strategy. Generated from
nameif omitted. Immutable after creation.
Supporting Types
TraceJaegerRemoteSamplingStrategyAppliedStrategy, TraceJaegerRemoteSamplingStrategyAppliedStrategyArgs
- Per
Operation Chronosphere.Strategies Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- Probabilistic
Strategy Chronosphere.Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy Probabilistic Strategy - Probabilistic sampling: each trace is sampled with a fixed probability.
- Rate
Limiting Chronosphere.Strategy Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy Rate Limiting Strategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
- Per
Operation TraceStrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- Probabilistic
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Probabilistic Strategy - Probabilistic sampling: each trace is sampled with a fixed probability.
- Rate
Limiting TraceStrategy Jaeger Remote Sampling Strategy Applied Strategy Rate Limiting Strategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
- per_
operation_ objectstrategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- probabilistic_
strategy object - Probabilistic sampling: each trace is sampled with a fixed probability.
- rate_
limiting_ objectstrategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
- per
Operation TraceStrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- probabilistic
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Probabilistic Strategy - Probabilistic sampling: each trace is sampled with a fixed probability.
- rate
Limiting TraceStrategy Jaeger Remote Sampling Strategy Applied Strategy Rate Limiting Strategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
- per
Operation TraceStrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- probabilistic
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Probabilistic Strategy - Probabilistic sampling: each trace is sampled with a fixed probability.
- rate
Limiting TraceStrategy Jaeger Remote Sampling Strategy Applied Strategy Rate Limiting Strategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
- per_
operation_ Tracestrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- probabilistic_
strategy TraceJaeger Remote Sampling Strategy Applied Strategy Probabilistic Strategy - Probabilistic sampling: each trace is sampled with a fixed probability.
- rate_
limiting_ Tracestrategy Jaeger Remote Sampling Strategy Applied Strategy Rate Limiting Strategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
- per
Operation Property MapStrategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- probabilistic
Strategy Property Map - Probabilistic sampling: each trace is sampled with a fixed probability.
- rate
Limiting Property MapStrategy - Rate-limiting sampling: cap the number of sampled traces per second using a leaky bucket.
TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategies, TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesArgs
- Default
Sampling doubleRate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - Default
Lower doubleBound Traces Per Second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- Default
Upper doubleBound Traces Per Second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- Per
Operation List<Chronosphere.Strategies Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy> - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- Default
Sampling float64Rate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - Default
Lower float64Bound Traces Per Second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- Default
Upper float64Bound Traces Per Second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- Per
Operation []TraceStrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- default_
sampling_ numberrate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - default_
lower_ numberbound_ traces_ per_ second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- default_
upper_ numberbound_ traces_ per_ second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- per_
operation_ list(object)strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- default
Sampling DoubleRate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - default
Lower DoubleBound Traces Per Second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- default
Upper DoubleBound Traces Per Second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- per
Operation List<TraceStrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy> - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- default
Sampling numberRate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - default
Lower numberBound Traces Per Second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- default
Upper numberBound Traces Per Second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- per
Operation TraceStrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy[] - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- default_
sampling_ floatrate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - default_
lower_ floatbound_ traces_ per_ second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- default_
upper_ floatbound_ traces_ per_ second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- per_
operation_ Sequence[Tracestrategies Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy] - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
- default
Sampling NumberRate - Service-wide sampling probability in the range
[0.0, 1.0]applied when no per-operation override matches. - default
Lower NumberBound Traces Per Second - Minimum number of traces per second sampled for any operation in the service, even when the probabilistic rate would yield fewer.
- default
Upper NumberBound Traces Per Second - Maximum number of traces per second sampled for any operation in the service, regardless of matching per-operation strategy.
- per
Operation List<Property Map>Strategies - Per-operation sampling configuration with a service-wide default and optional per-operation overrides.
TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategy, TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyArgs
- Operation string
- Span operation (span name) this override applies to.
- Probabilistic
Strategy Chronosphere.Pulumi. Inputs. Trace Jaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy Probabilistic Strategy - Probabilistic sampling configuration applied to spans whose operation matches.
- Operation string
- Span operation (span name) this override applies to.
- Probabilistic
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy Probabilistic Strategy - Probabilistic sampling configuration applied to spans whose operation matches.
- operation string
- Span operation (span name) this override applies to.
- probabilistic_
strategy object - Probabilistic sampling configuration applied to spans whose operation matches.
- operation String
- Span operation (span name) this override applies to.
- probabilistic
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy Probabilistic Strategy - Probabilistic sampling configuration applied to spans whose operation matches.
- operation string
- Span operation (span name) this override applies to.
- probabilistic
Strategy TraceJaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy Probabilistic Strategy - Probabilistic sampling configuration applied to spans whose operation matches.
- operation str
- Span operation (span name) this override applies to.
- probabilistic_
strategy TraceJaeger Remote Sampling Strategy Applied Strategy Per Operation Strategies Per Operation Strategy Probabilistic Strategy - Probabilistic sampling configuration applied to spans whose operation matches.
- operation String
- Span operation (span name) this override applies to.
- probabilistic
Strategy Property Map - Probabilistic sampling configuration applied to spans whose operation matches.
TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyProbabilisticStrategy, TraceJaegerRemoteSamplingStrategyAppliedStrategyPerOperationStrategiesPerOperationStrategyProbabilisticStrategyArgs
- Sampling
Rate double - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- Sampling
Rate float64 - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling_
rate number - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling
Rate Double - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling
Rate number - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling_
rate float - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling
Rate Number - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategy, TraceJaegerRemoteSamplingStrategyAppliedStrategyProbabilisticStrategyArgs
- Sampling
Rate double - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- Sampling
Rate float64 - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling_
rate number - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling
Rate Double - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling
Rate number - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling_
rate float - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
- sampling
Rate Number - Probability in the range
[0.0, 1.0]that any given trace is sampled.0samples no traces,1samples every trace.
TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategy, TraceJaegerRemoteSamplingStrategyAppliedStrategyRateLimitingStrategyArgs
- Max
Traces intPer Second - Maximum number of traces to sample per second for the service.
- Max
Traces intPer Second - Maximum number of traces to sample per second for the service.
- max_
traces_ numberper_ second - Maximum number of traces to sample per second for the service.
- max
Traces IntegerPer Second - Maximum number of traces to sample per second for the service.
- max
Traces numberPer Second - Maximum number of traces to sample per second for the service.
- max_
traces_ intper_ second - Maximum number of traces to sample per second for the service.
- max
Traces NumberPer Second - Maximum number of traces to sample per second for the service.
Package Details
- Repository
- chronosphere chronosphereio/pulumi-chronosphere
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
chronosphereTerraform Provider.
published on Friday, Jun 5, 2026 by Chronosphere