dynatrace.RpcBasedSampling
Explore with Pulumi AI
This resource requires the API token scopes Read settings (
settings.read
) and Write settings (settings.write
)
Dynatrace Documentation
Trace sampling - https://docs.dynatrace.com/docs/shortlink/url-sampling
Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId:
builtin:rpc-based-sampling
)
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const _name_ = new dynatrace.RpcBasedSampling("#name#", {
enabled: false,
endpointName: "#name#-endpoint",
endpointNameComparisonType: "DOES_NOT_END_WITH",
ignore: true,
remoteOperationName: "#name#-operation",
remoteOperationNameComparisonType: "CONTAINS",
remoteServiceName: "#name#-service",
remoteServiceNameComparisonType: "STARTS_WITH",
scope: "environment",
wireProtocolType: "8",
});
import pulumi
import pulumiverse_dynatrace as dynatrace
_name_ = dynatrace.RpcBasedSampling("#name#",
enabled=False,
endpoint_name="#name#-endpoint",
endpoint_name_comparison_type="DOES_NOT_END_WITH",
ignore=True,
remote_operation_name="#name#-operation",
remote_operation_name_comparison_type="CONTAINS",
remote_service_name="#name#-service",
remote_service_name_comparison_type="STARTS_WITH",
scope="environment",
wire_protocol_type="8")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewRpcBasedSampling(ctx, "#name#", &dynatrace.RpcBasedSamplingArgs{
Enabled: pulumi.Bool(false),
EndpointName: pulumi.String("#name#-endpoint"),
EndpointNameComparisonType: pulumi.String("DOES_NOT_END_WITH"),
Ignore: pulumi.Bool(true),
RemoteOperationName: pulumi.String("#name#-operation"),
RemoteOperationNameComparisonType: pulumi.String("CONTAINS"),
RemoteServiceName: pulumi.String("#name#-service"),
RemoteServiceNameComparisonType: pulumi.String("STARTS_WITH"),
Scope: pulumi.String("environment"),
WireProtocolType: pulumi.String("8"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var _name_ = new Dynatrace.RpcBasedSampling("#name#", new()
{
Enabled = false,
EndpointName = "#name#-endpoint",
EndpointNameComparisonType = "DOES_NOT_END_WITH",
Ignore = true,
RemoteOperationName = "#name#-operation",
RemoteOperationNameComparisonType = "CONTAINS",
RemoteServiceName = "#name#-service",
RemoteServiceNameComparisonType = "STARTS_WITH",
Scope = "environment",
WireProtocolType = "8",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.RpcBasedSampling;
import com.pulumi.dynatrace.RpcBasedSamplingArgs;
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 _name_ = new RpcBasedSampling("#name#", RpcBasedSamplingArgs.builder()
.enabled(false)
.endpointName("#name#-endpoint")
.endpointNameComparisonType("DOES_NOT_END_WITH")
.ignore(true)
.remoteOperationName("#name#-operation")
.remoteOperationNameComparisonType("CONTAINS")
.remoteServiceName("#name#-service")
.remoteServiceNameComparisonType("STARTS_WITH")
.scope("environment")
.wireProtocolType("8")
.build());
}
}
resources:
'#name#':
type: dynatrace:RpcBasedSampling
properties:
enabled: false
endpointName: '#name#-endpoint'
endpointNameComparisonType: DOES_NOT_END_WITH
ignore: true
remoteOperationName: '#name#-operation'
remoteOperationNameComparisonType: CONTAINS
remoteServiceName: '#name#-service'
remoteServiceNameComparisonType: STARTS_WITH
scope: environment
wireProtocolType: '8'
Create RpcBasedSampling Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RpcBasedSampling(name: string, args: RpcBasedSamplingArgs, opts?: CustomResourceOptions);
@overload
def RpcBasedSampling(resource_name: str,
args: RpcBasedSamplingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RpcBasedSampling(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
endpoint_name_comparison_type: Optional[str] = None,
ignore: Optional[bool] = None,
remote_operation_name_comparison_type: Optional[str] = None,
remote_service_name_comparison_type: Optional[str] = None,
wire_protocol_type: Optional[str] = None,
endpoint_name: Optional[str] = None,
factor: Optional[str] = None,
insert_after: Optional[str] = None,
remote_operation_name: Optional[str] = None,
remote_service_name: Optional[str] = None,
scope: Optional[str] = None)
func NewRpcBasedSampling(ctx *Context, name string, args RpcBasedSamplingArgs, opts ...ResourceOption) (*RpcBasedSampling, error)
public RpcBasedSampling(string name, RpcBasedSamplingArgs args, CustomResourceOptions? opts = null)
public RpcBasedSampling(String name, RpcBasedSamplingArgs args)
public RpcBasedSampling(String name, RpcBasedSamplingArgs args, CustomResourceOptions options)
type: dynatrace:RpcBasedSampling
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RpcBasedSamplingArgs
- 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 RpcBasedSamplingArgs
- 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 RpcBasedSamplingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RpcBasedSamplingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RpcBasedSamplingArgs
- 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 rpcBasedSamplingResource = new Dynatrace.RpcBasedSampling("rpcBasedSamplingResource", new()
{
Enabled = false,
EndpointNameComparisonType = "string",
Ignore = false,
RemoteOperationNameComparisonType = "string",
RemoteServiceNameComparisonType = "string",
WireProtocolType = "string",
EndpointName = "string",
Factor = "string",
InsertAfter = "string",
RemoteOperationName = "string",
RemoteServiceName = "string",
Scope = "string",
});
example, err := dynatrace.NewRpcBasedSampling(ctx, "rpcBasedSamplingResource", &dynatrace.RpcBasedSamplingArgs{
Enabled: pulumi.Bool(false),
EndpointNameComparisonType: pulumi.String("string"),
Ignore: pulumi.Bool(false),
RemoteOperationNameComparisonType: pulumi.String("string"),
RemoteServiceNameComparisonType: pulumi.String("string"),
WireProtocolType: pulumi.String("string"),
EndpointName: pulumi.String("string"),
Factor: pulumi.String("string"),
InsertAfter: pulumi.String("string"),
RemoteOperationName: pulumi.String("string"),
RemoteServiceName: pulumi.String("string"),
Scope: pulumi.String("string"),
})
var rpcBasedSamplingResource = new RpcBasedSampling("rpcBasedSamplingResource", RpcBasedSamplingArgs.builder()
.enabled(false)
.endpointNameComparisonType("string")
.ignore(false)
.remoteOperationNameComparisonType("string")
.remoteServiceNameComparisonType("string")
.wireProtocolType("string")
.endpointName("string")
.factor("string")
.insertAfter("string")
.remoteOperationName("string")
.remoteServiceName("string")
.scope("string")
.build());
rpc_based_sampling_resource = dynatrace.RpcBasedSampling("rpcBasedSamplingResource",
enabled=False,
endpoint_name_comparison_type="string",
ignore=False,
remote_operation_name_comparison_type="string",
remote_service_name_comparison_type="string",
wire_protocol_type="string",
endpoint_name="string",
factor="string",
insert_after="string",
remote_operation_name="string",
remote_service_name="string",
scope="string")
const rpcBasedSamplingResource = new dynatrace.RpcBasedSampling("rpcBasedSamplingResource", {
enabled: false,
endpointNameComparisonType: "string",
ignore: false,
remoteOperationNameComparisonType: "string",
remoteServiceNameComparisonType: "string",
wireProtocolType: "string",
endpointName: "string",
factor: "string",
insertAfter: "string",
remoteOperationName: "string",
remoteServiceName: "string",
scope: "string",
});
type: dynatrace:RpcBasedSampling
properties:
enabled: false
endpointName: string
endpointNameComparisonType: string
factor: string
ignore: false
insertAfter: string
remoteOperationName: string
remoteOperationNameComparisonType: string
remoteServiceName: string
remoteServiceNameComparisonType: string
scope: string
wireProtocolType: string
RpcBasedSampling 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 RpcBasedSampling resource accepts the following input properties:
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Endpoint
Name stringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Ignore bool
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- Remote
Operation stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Remote
Service stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Wire
Protocol stringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM - Endpoint
Name string - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- Factor string
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - Insert
After string - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- Remote
Operation stringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- Remote
Service stringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- Scope string
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Endpoint
Name stringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Ignore bool
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- Remote
Operation stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Remote
Service stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Wire
Protocol stringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM - Endpoint
Name string - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- Factor string
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - Insert
After string - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- Remote
Operation stringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- Remote
Service stringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- Scope string
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - endpoint
Name StringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- ignore Boolean
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- remote
Operation StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote
Service StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- wire
Protocol StringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM - endpoint
Name String - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- factor String
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - insert
After String - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote
Operation StringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote
Service StringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- scope String
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - endpoint
Name stringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- ignore boolean
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- remote
Operation stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote
Service stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- wire
Protocol stringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM - endpoint
Name string - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- factor string
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - insert
After string - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote
Operation stringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote
Service stringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- scope string
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - endpoint_
name_ strcomparison_ type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- ignore bool
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- remote_
operation_ strname_ comparison_ type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote_
service_ strname_ comparison_ type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- wire_
protocol_ strtype - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM - endpoint_
name str - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- factor str
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - insert_
after str - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote_
operation_ strname - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote_
service_ strname - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- scope str
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - endpoint
Name StringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- ignore Boolean
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- remote
Operation StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote
Service StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- wire
Protocol StringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM - endpoint
Name String - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- factor String
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - insert
After String - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote
Operation StringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote
Service StringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- scope String
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the RpcBasedSampling 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 str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing RpcBasedSampling Resource
Get an existing RpcBasedSampling 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?: RpcBasedSamplingState, opts?: CustomResourceOptions): RpcBasedSampling
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
endpoint_name: Optional[str] = None,
endpoint_name_comparison_type: Optional[str] = None,
factor: Optional[str] = None,
ignore: Optional[bool] = None,
insert_after: Optional[str] = None,
remote_operation_name: Optional[str] = None,
remote_operation_name_comparison_type: Optional[str] = None,
remote_service_name: Optional[str] = None,
remote_service_name_comparison_type: Optional[str] = None,
scope: Optional[str] = None,
wire_protocol_type: Optional[str] = None) -> RpcBasedSampling
func GetRpcBasedSampling(ctx *Context, name string, id IDInput, state *RpcBasedSamplingState, opts ...ResourceOption) (*RpcBasedSampling, error)
public static RpcBasedSampling Get(string name, Input<string> id, RpcBasedSamplingState? state, CustomResourceOptions? opts = null)
public static RpcBasedSampling get(String name, Output<String> id, RpcBasedSamplingState state, CustomResourceOptions options)
resources: _: type: dynatrace:RpcBasedSampling get: 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.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Endpoint
Name string - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- Endpoint
Name stringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Factor string
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - Ignore bool
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- Insert
After string - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- Remote
Operation stringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- Remote
Operation stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Remote
Service stringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- Remote
Service stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Scope string
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- Wire
Protocol stringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Endpoint
Name string - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- Endpoint
Name stringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Factor string
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - Ignore bool
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- Insert
After string - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- Remote
Operation stringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- Remote
Operation stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Remote
Service stringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- Remote
Service stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- Scope string
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- Wire
Protocol stringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - endpoint
Name String - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- endpoint
Name StringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- factor String
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - ignore Boolean
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- insert
After String - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote
Operation StringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote
Operation StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote
Service StringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- remote
Service StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- scope String
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- wire
Protocol StringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - endpoint
Name string - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- endpoint
Name stringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- factor string
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - ignore boolean
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- insert
After string - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote
Operation stringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote
Operation stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote
Service stringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- remote
Service stringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- scope string
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- wire
Protocol stringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - endpoint_
name str - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- endpoint_
name_ strcomparison_ type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- factor str
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - ignore bool
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- insert_
after str - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote_
operation_ strname - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote_
operation_ strname_ comparison_ type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote_
service_ strname - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- remote_
service_ strname_ comparison_ type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- scope str
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- wire_
protocol_ strtype - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - endpoint
Name String - Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
- endpoint
Name StringComparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- factor String
- Possible Values:
0
,1
,2
,3
,4
,5
,6
,8
,9
,10
,11
,12
,13
,14
-0
: Increase capturing 128 times -1
: Increase capturing 64 times -2
: Increase capturing 32 times -3
: Increase capturing 16 times -4
: Increase capturing 8 times -5
: Increase capturing 4 times -6
: Increase capturing 2 times -8
: Reduce capturing by factor 2 -9
: Reduce capturing by factor 4 -10
: Reduce capturing by factor 8 -11
: Reduce capturing by factor 16 -12
: Reduce capturing by factor 32 -13
: Reduce capturing by factor 64 -14
: Reduce capturing by factor 128 - ignore Boolean
- No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
- insert
After String - Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
- remote
Operation StringName - Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
- remote
Operation StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- remote
Service StringName - Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
- remote
Service StringName Comparison Type - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,ENDS_WITH
,EQUALS
,STARTS_WITH
- scope String
- The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
- wire
Protocol StringType - Possible Values:
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
-1
: ADK -2
: DOTNET_REMOTING -3
: DOTNET_REMOTING_TCP -4
: DOTNET_REMOTING_HTTP -5
: DOTNET_REMOTING_XMLRPC -6
: GRPC -7
: GRPC_BIDI -8
: GRPC_UNARY -9
: GRPC_SERVERSTREAM -10
: GRPC_CLIENTSTREAM
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.