1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayPluginStatsd
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.GatewayPluginStatsd

Explore with Pulumi AI

GatewayPluginStatsd Resource

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayPluginStatsd;
import com.pulumi.konnect.GatewayPluginStatsdArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdConfigArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdConfigQueueArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdConsumerArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdOrderingArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdOrderingAfterArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdOrderingBeforeArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdRouteArgs;
import com.pulumi.konnect.inputs.GatewayPluginStatsdServiceArgs;
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 myGatewaypluginstatsd = new GatewayPluginStatsd("myGatewaypluginstatsd", GatewayPluginStatsdArgs.builder()
            .config(GatewayPluginStatsdConfigArgs.builder()
                .allow_status_codes("...")
                .consumer_identifier_default("username")
                .flush_timeout(5.68)
                .host("...my_host...")
                .hostname_in_prefix(true)
                .metrics(GatewayPluginStatsdConfigMetricArgs.builder()
                    .consumerIdentifier("username")
                    .name("status_count_per_workspace")
                    .sampleRate(3.92)
                    .serviceIdentifier("service_id")
                    .statType("set")
                    .workspaceIdentifier("workspace_name")
                    .build())
                .port(6303)
                .prefix("...my_prefix...")
                .queue(GatewayPluginStatsdConfigQueueArgs.builder()
                    .concurrencyLimit(0)
                    .initialRetryDelay(75641.56)
                    .maxBatchSize(347740)
                    .maxBytes(9)
                    .maxCoalescingDelay(1430.25)
                    .maxEntries(139203)
                    .maxRetryDelay(226190.6)
                    .maxRetryTime(1.03)
                    .build())
                .queue_size(10)
                .retry_count(8)
                .service_identifier_default("service_name")
                .tag_style("librato")
                .udp_packet_size(61921)
                .use_tcp(false)
                .workspace_identifier_default("workspace_name")
                .build())
            .consumer(GatewayPluginStatsdConsumerArgs.builder()
                .id("...my_id...")
                .build())
            .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
            .enabled(true)
            .gatewayPluginStatsdId("...my_id...")
            .instanceName("...my_instance_name...")
            .ordering(GatewayPluginStatsdOrderingArgs.builder()
                .after(GatewayPluginStatsdOrderingAfterArgs.builder()
                    .access("...")
                    .build())
                .before(GatewayPluginStatsdOrderingBeforeArgs.builder()
                    .access("...")
                    .build())
                .build())
            .protocols("udp")
            .route(GatewayPluginStatsdRouteArgs.builder()
                .id("...my_id...")
                .build())
            .service(GatewayPluginStatsdServiceArgs.builder()
                .id("...my_id...")
                .build())
            .tags("...")
            .build());

    }
}
Copy
resources:
  myGatewaypluginstatsd:
    type: konnect:GatewayPluginStatsd
    properties:
      config:
        allow_status_codes:
          - '...'
        consumer_identifier_default: username
        flush_timeout: 5.68
        host: '...my_host...'
        hostname_in_prefix: true
        metrics:
          - consumerIdentifier: username
            name: status_count_per_workspace
            sampleRate: 3.92
            serviceIdentifier: service_id
            statType: set
            workspaceIdentifier: workspace_name
        port: 6303
        prefix: '...my_prefix...'
        queue:
          concurrencyLimit: 0
          initialRetryDelay: 75641.56
          maxBatchSize: 347740
          maxBytes: 9
          maxCoalescingDelay: 1430.25
          maxEntries: 139203
          maxRetryDelay: 226190.6
          maxRetryTime: 1.03
        queue_size: 10
        retry_count: 8
        service_identifier_default: service_name
        tag_style: librato
        udp_packet_size: 61921
        use_tcp: false
        workspace_identifier_default: workspace_name
      consumer:
        id: '...my_id...'
      controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
      enabled: true
      gatewayPluginStatsdId: '...my_id...'
      instanceName: '...my_instance_name...'
      ordering:
        after:
          access:
            - '...'
        before:
          access:
            - '...'
      protocols:
        - udp
      route:
        id: '...my_id...'
      service:
        id: '...my_id...'
      tags:
        - '...'
Copy

Create GatewayPluginStatsd Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new GatewayPluginStatsd(name: string, args: GatewayPluginStatsdArgs, opts?: CustomResourceOptions);
@overload
def GatewayPluginStatsd(resource_name: str,
                        args: GatewayPluginStatsdArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def GatewayPluginStatsd(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        config: Optional[GatewayPluginStatsdConfigArgs] = None,
                        control_plane_id: Optional[str] = None,
                        consumer: Optional[GatewayPluginStatsdConsumerArgs] = None,
                        enabled: Optional[bool] = None,
                        gateway_plugin_statsd_id: Optional[str] = None,
                        instance_name: Optional[str] = None,
                        ordering: Optional[GatewayPluginStatsdOrderingArgs] = None,
                        protocols: Optional[Sequence[str]] = None,
                        route: Optional[GatewayPluginStatsdRouteArgs] = None,
                        service: Optional[GatewayPluginStatsdServiceArgs] = None,
                        tags: Optional[Sequence[str]] = None)
func NewGatewayPluginStatsd(ctx *Context, name string, args GatewayPluginStatsdArgs, opts ...ResourceOption) (*GatewayPluginStatsd, error)
public GatewayPluginStatsd(string name, GatewayPluginStatsdArgs args, CustomResourceOptions? opts = null)
public GatewayPluginStatsd(String name, GatewayPluginStatsdArgs args)
public GatewayPluginStatsd(String name, GatewayPluginStatsdArgs args, CustomResourceOptions options)
type: konnect:GatewayPluginStatsd
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GatewayPluginStatsdArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GatewayPluginStatsdArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GatewayPluginStatsdArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GatewayPluginStatsdArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GatewayPluginStatsdArgs
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 gatewayPluginStatsdResource = new Konnect.GatewayPluginStatsd("gatewayPluginStatsdResource", new()
{
    Config = new Konnect.Inputs.GatewayPluginStatsdConfigArgs
    {
        AllowStatusCodes = new[]
        {
            "string",
        },
        ConsumerIdentifierDefault = "string",
        FlushTimeout = 0,
        Host = "string",
        HostnameInPrefix = false,
        Metrics = new[]
        {
            new Konnect.Inputs.GatewayPluginStatsdConfigMetricArgs
            {
                ConsumerIdentifier = "string",
                Name = "string",
                SampleRate = 0,
                ServiceIdentifier = "string",
                StatType = "string",
                WorkspaceIdentifier = "string",
            },
        },
        Port = 0,
        Prefix = "string",
        Queue = new Konnect.Inputs.GatewayPluginStatsdConfigQueueArgs
        {
            ConcurrencyLimit = 0,
            InitialRetryDelay = 0,
            MaxBatchSize = 0,
            MaxBytes = 0,
            MaxCoalescingDelay = 0,
            MaxEntries = 0,
            MaxRetryDelay = 0,
            MaxRetryTime = 0,
        },
        QueueSize = 0,
        RetryCount = 0,
        ServiceIdentifierDefault = "string",
        TagStyle = "string",
        UdpPacketSize = 0,
        UseTcp = false,
        WorkspaceIdentifierDefault = "string",
    },
    ControlPlaneId = "string",
    Consumer = new Konnect.Inputs.GatewayPluginStatsdConsumerArgs
    {
        Id = "string",
    },
    Enabled = false,
    GatewayPluginStatsdId = "string",
    InstanceName = "string",
    Ordering = new Konnect.Inputs.GatewayPluginStatsdOrderingArgs
    {
        After = new Konnect.Inputs.GatewayPluginStatsdOrderingAfterArgs
        {
            Accesses = new[]
            {
                "string",
            },
        },
        Before = new Konnect.Inputs.GatewayPluginStatsdOrderingBeforeArgs
        {
            Accesses = new[]
            {
                "string",
            },
        },
    },
    Protocols = new[]
    {
        "string",
    },
    Route = new Konnect.Inputs.GatewayPluginStatsdRouteArgs
    {
        Id = "string",
    },
    Service = new Konnect.Inputs.GatewayPluginStatsdServiceArgs
    {
        Id = "string",
    },
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := konnect.NewGatewayPluginStatsd(ctx, "gatewayPluginStatsdResource", &konnect.GatewayPluginStatsdArgs{
Config: &.GatewayPluginStatsdConfigArgs{
AllowStatusCodes: pulumi.StringArray{
pulumi.String("string"),
},
ConsumerIdentifierDefault: pulumi.String("string"),
FlushTimeout: pulumi.Float64(0),
Host: pulumi.String("string"),
HostnameInPrefix: pulumi.Bool(false),
Metrics: .GatewayPluginStatsdConfigMetricArray{
&.GatewayPluginStatsdConfigMetricArgs{
ConsumerIdentifier: pulumi.String("string"),
Name: pulumi.String("string"),
SampleRate: pulumi.Float64(0),
ServiceIdentifier: pulumi.String("string"),
StatType: pulumi.String("string"),
WorkspaceIdentifier: pulumi.String("string"),
},
},
Port: pulumi.Float64(0),
Prefix: pulumi.String("string"),
Queue: &.GatewayPluginStatsdConfigQueueArgs{
ConcurrencyLimit: pulumi.Float64(0),
InitialRetryDelay: pulumi.Float64(0),
MaxBatchSize: pulumi.Float64(0),
MaxBytes: pulumi.Float64(0),
MaxCoalescingDelay: pulumi.Float64(0),
MaxEntries: pulumi.Float64(0),
MaxRetryDelay: pulumi.Float64(0),
MaxRetryTime: pulumi.Float64(0),
},
QueueSize: pulumi.Float64(0),
RetryCount: pulumi.Float64(0),
ServiceIdentifierDefault: pulumi.String("string"),
TagStyle: pulumi.String("string"),
UdpPacketSize: pulumi.Float64(0),
UseTcp: pulumi.Bool(false),
WorkspaceIdentifierDefault: pulumi.String("string"),
},
ControlPlaneId: pulumi.String("string"),
Consumer: &.GatewayPluginStatsdConsumerArgs{
Id: pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
GatewayPluginStatsdId: pulumi.String("string"),
InstanceName: pulumi.String("string"),
Ordering: &.GatewayPluginStatsdOrderingArgs{
After: &.GatewayPluginStatsdOrderingAfterArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
Before: &.GatewayPluginStatsdOrderingBeforeArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
Route: &.GatewayPluginStatsdRouteArgs{
Id: pulumi.String("string"),
},
Service: &.GatewayPluginStatsdServiceArgs{
Id: pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var gatewayPluginStatsdResource = new GatewayPluginStatsd("gatewayPluginStatsdResource", GatewayPluginStatsdArgs.builder()
    .config(GatewayPluginStatsdConfigArgs.builder()
        .allowStatusCodes("string")
        .consumerIdentifierDefault("string")
        .flushTimeout(0)
        .host("string")
        .hostnameInPrefix(false)
        .metrics(GatewayPluginStatsdConfigMetricArgs.builder()
            .consumerIdentifier("string")
            .name("string")
            .sampleRate(0)
            .serviceIdentifier("string")
            .statType("string")
            .workspaceIdentifier("string")
            .build())
        .port(0)
        .prefix("string")
        .queue(GatewayPluginStatsdConfigQueueArgs.builder()
            .concurrencyLimit(0)
            .initialRetryDelay(0)
            .maxBatchSize(0)
            .maxBytes(0)
            .maxCoalescingDelay(0)
            .maxEntries(0)
            .maxRetryDelay(0)
            .maxRetryTime(0)
            .build())
        .queueSize(0)
        .retryCount(0)
        .serviceIdentifierDefault("string")
        .tagStyle("string")
        .udpPacketSize(0)
        .useTcp(false)
        .workspaceIdentifierDefault("string")
        .build())
    .controlPlaneId("string")
    .consumer(GatewayPluginStatsdConsumerArgs.builder()
        .id("string")
        .build())
    .enabled(false)
    .gatewayPluginStatsdId("string")
    .instanceName("string")
    .ordering(GatewayPluginStatsdOrderingArgs.builder()
        .after(GatewayPluginStatsdOrderingAfterArgs.builder()
            .accesses("string")
            .build())
        .before(GatewayPluginStatsdOrderingBeforeArgs.builder()
            .accesses("string")
            .build())
        .build())
    .protocols("string")
    .route(GatewayPluginStatsdRouteArgs.builder()
        .id("string")
        .build())
    .service(GatewayPluginStatsdServiceArgs.builder()
        .id("string")
        .build())
    .tags("string")
    .build());
Copy
gateway_plugin_statsd_resource = konnect.GatewayPluginStatsd("gatewayPluginStatsdResource",
    config={
        "allow_status_codes": ["string"],
        "consumer_identifier_default": "string",
        "flush_timeout": 0,
        "host": "string",
        "hostname_in_prefix": False,
        "metrics": [{
            "consumer_identifier": "string",
            "name": "string",
            "sample_rate": 0,
            "service_identifier": "string",
            "stat_type": "string",
            "workspace_identifier": "string",
        }],
        "port": 0,
        "prefix": "string",
        "queue": {
            "concurrency_limit": 0,
            "initial_retry_delay": 0,
            "max_batch_size": 0,
            "max_bytes": 0,
            "max_coalescing_delay": 0,
            "max_entries": 0,
            "max_retry_delay": 0,
            "max_retry_time": 0,
        },
        "queue_size": 0,
        "retry_count": 0,
        "service_identifier_default": "string",
        "tag_style": "string",
        "udp_packet_size": 0,
        "use_tcp": False,
        "workspace_identifier_default": "string",
    },
    control_plane_id="string",
    consumer={
        "id": "string",
    },
    enabled=False,
    gateway_plugin_statsd_id="string",
    instance_name="string",
    ordering={
        "after": {
            "accesses": ["string"],
        },
        "before": {
            "accesses": ["string"],
        },
    },
    protocols=["string"],
    route={
        "id": "string",
    },
    service={
        "id": "string",
    },
    tags=["string"])
Copy
const gatewayPluginStatsdResource = new konnect.GatewayPluginStatsd("gatewayPluginStatsdResource", {
    config: {
        allowStatusCodes: ["string"],
        consumerIdentifierDefault: "string",
        flushTimeout: 0,
        host: "string",
        hostnameInPrefix: false,
        metrics: [{
            consumerIdentifier: "string",
            name: "string",
            sampleRate: 0,
            serviceIdentifier: "string",
            statType: "string",
            workspaceIdentifier: "string",
        }],
        port: 0,
        prefix: "string",
        queue: {
            concurrencyLimit: 0,
            initialRetryDelay: 0,
            maxBatchSize: 0,
            maxBytes: 0,
            maxCoalescingDelay: 0,
            maxEntries: 0,
            maxRetryDelay: 0,
            maxRetryTime: 0,
        },
        queueSize: 0,
        retryCount: 0,
        serviceIdentifierDefault: "string",
        tagStyle: "string",
        udpPacketSize: 0,
        useTcp: false,
        workspaceIdentifierDefault: "string",
    },
    controlPlaneId: "string",
    consumer: {
        id: "string",
    },
    enabled: false,
    gatewayPluginStatsdId: "string",
    instanceName: "string",
    ordering: {
        after: {
            accesses: ["string"],
        },
        before: {
            accesses: ["string"],
        },
    },
    protocols: ["string"],
    route: {
        id: "string",
    },
    service: {
        id: "string",
    },
    tags: ["string"],
});
Copy
type: konnect:GatewayPluginStatsd
properties:
    config:
        allowStatusCodes:
            - string
        consumerIdentifierDefault: string
        flushTimeout: 0
        host: string
        hostnameInPrefix: false
        metrics:
            - consumerIdentifier: string
              name: string
              sampleRate: 0
              serviceIdentifier: string
              statType: string
              workspaceIdentifier: string
        port: 0
        prefix: string
        queue:
            concurrencyLimit: 0
            initialRetryDelay: 0
            maxBatchSize: 0
            maxBytes: 0
            maxCoalescingDelay: 0
            maxEntries: 0
            maxRetryDelay: 0
            maxRetryTime: 0
        queueSize: 0
        retryCount: 0
        serviceIdentifierDefault: string
        tagStyle: string
        udpPacketSize: 0
        useTcp: false
        workspaceIdentifierDefault: string
    consumer:
        id: string
    controlPlaneId: string
    enabled: false
    gatewayPluginStatsdId: string
    instanceName: string
    ordering:
        after:
            accesses:
                - string
        before:
            accesses:
                - string
    protocols:
        - string
    route:
        id: string
    service:
        id: string
    tags:
        - string
Copy

GatewayPluginStatsd 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 GatewayPluginStatsd resource accepts the following input properties:

Config This property is required. GatewayPluginStatsdConfig
ControlPlaneId This property is required. string
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
Consumer GatewayPluginStatsdConsumer
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
Enabled bool
Whether the plugin is applied.
GatewayPluginStatsdId string
The ID of this resource.
InstanceName string
Ordering GatewayPluginStatsdOrdering
Protocols List<string>
A set of strings representing protocols.
Route GatewayPluginStatsdRoute
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
Service GatewayPluginStatsdService
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
Tags List<string>
An optional set of strings associated with the Plugin for grouping and filtering.
Config This property is required. GatewayPluginStatsdConfigArgs
ControlPlaneId This property is required. string
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
Consumer GatewayPluginStatsdConsumerArgs
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
Enabled bool
Whether the plugin is applied.
GatewayPluginStatsdId string
The ID of this resource.
InstanceName string
Ordering GatewayPluginStatsdOrderingArgs
Protocols []string
A set of strings representing protocols.
Route GatewayPluginStatsdRouteArgs
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
Service GatewayPluginStatsdServiceArgs
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
Tags []string
An optional set of strings associated with the Plugin for grouping and filtering.
config This property is required. GatewayPluginStatsdConfig
controlPlaneId This property is required. String
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
consumer GatewayPluginStatsdConsumer
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
enabled Boolean
Whether the plugin is applied.
gatewayPluginStatsdId String
The ID of this resource.
instanceName String
ordering GatewayPluginStatsdOrdering
protocols List<String>
A set of strings representing protocols.
route GatewayPluginStatsdRoute
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service GatewayPluginStatsdService
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags List<String>
An optional set of strings associated with the Plugin for grouping and filtering.
config This property is required. GatewayPluginStatsdConfig
controlPlaneId This property is required. string
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
consumer GatewayPluginStatsdConsumer
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
enabled boolean
Whether the plugin is applied.
gatewayPluginStatsdId string
The ID of this resource.
instanceName string
ordering GatewayPluginStatsdOrdering
protocols string[]
A set of strings representing protocols.
route GatewayPluginStatsdRoute
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service GatewayPluginStatsdService
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags string[]
An optional set of strings associated with the Plugin for grouping and filtering.
config This property is required. GatewayPluginStatsdConfigArgs
control_plane_id This property is required. str
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
consumer GatewayPluginStatsdConsumerArgs
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
enabled bool
Whether the plugin is applied.
gateway_plugin_statsd_id str
The ID of this resource.
instance_name str
ordering GatewayPluginStatsdOrderingArgs
protocols Sequence[str]
A set of strings representing protocols.
route GatewayPluginStatsdRouteArgs
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service GatewayPluginStatsdServiceArgs
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags Sequence[str]
An optional set of strings associated with the Plugin for grouping and filtering.
config This property is required. Property Map
controlPlaneId This property is required. String
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
consumer Property Map
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
enabled Boolean
Whether the plugin is applied.
gatewayPluginStatsdId String
The ID of this resource.
instanceName String
ordering Property Map
protocols List<String>
A set of strings representing protocols.
route Property Map
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service Property Map
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags List<String>
An optional set of strings associated with the Plugin for grouping and filtering.

Outputs

All input properties are implicitly available as output properties. Additionally, the GatewayPluginStatsd resource produces the following output properties:

CreatedAt double
Unix epoch when the resource was created.
Id string
The provider-assigned unique ID for this managed resource.
UpdatedAt double
Unix epoch when the resource was last updated.
CreatedAt float64
Unix epoch when the resource was created.
Id string
The provider-assigned unique ID for this managed resource.
UpdatedAt float64
Unix epoch when the resource was last updated.
createdAt Double
Unix epoch when the resource was created.
id String
The provider-assigned unique ID for this managed resource.
updatedAt Double
Unix epoch when the resource was last updated.
createdAt number
Unix epoch when the resource was created.
id string
The provider-assigned unique ID for this managed resource.
updatedAt number
Unix epoch when the resource was last updated.
created_at float
Unix epoch when the resource was created.
id str
The provider-assigned unique ID for this managed resource.
updated_at float
Unix epoch when the resource was last updated.
createdAt Number
Unix epoch when the resource was created.
id String
The provider-assigned unique ID for this managed resource.
updatedAt Number
Unix epoch when the resource was last updated.

Look up Existing GatewayPluginStatsd Resource

Get an existing GatewayPluginStatsd 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?: GatewayPluginStatsdState, opts?: CustomResourceOptions): GatewayPluginStatsd
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        config: Optional[GatewayPluginStatsdConfigArgs] = None,
        consumer: Optional[GatewayPluginStatsdConsumerArgs] = None,
        control_plane_id: Optional[str] = None,
        created_at: Optional[float] = None,
        enabled: Optional[bool] = None,
        gateway_plugin_statsd_id: Optional[str] = None,
        instance_name: Optional[str] = None,
        ordering: Optional[GatewayPluginStatsdOrderingArgs] = None,
        protocols: Optional[Sequence[str]] = None,
        route: Optional[GatewayPluginStatsdRouteArgs] = None,
        service: Optional[GatewayPluginStatsdServiceArgs] = None,
        tags: Optional[Sequence[str]] = None,
        updated_at: Optional[float] = None) -> GatewayPluginStatsd
func GetGatewayPluginStatsd(ctx *Context, name string, id IDInput, state *GatewayPluginStatsdState, opts ...ResourceOption) (*GatewayPluginStatsd, error)
public static GatewayPluginStatsd Get(string name, Input<string> id, GatewayPluginStatsdState? state, CustomResourceOptions? opts = null)
public static GatewayPluginStatsd get(String name, Output<String> id, GatewayPluginStatsdState state, CustomResourceOptions options)
resources:  _:    type: konnect:GatewayPluginStatsd    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Config GatewayPluginStatsdConfig
Consumer GatewayPluginStatsdConsumer
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
ControlPlaneId string
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
CreatedAt double
Unix epoch when the resource was created.
Enabled bool
Whether the plugin is applied.
GatewayPluginStatsdId string
The ID of this resource.
InstanceName string
Ordering GatewayPluginStatsdOrdering
Protocols List<string>
A set of strings representing protocols.
Route GatewayPluginStatsdRoute
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
Service GatewayPluginStatsdService
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
Tags List<string>
An optional set of strings associated with the Plugin for grouping and filtering.
UpdatedAt double
Unix epoch when the resource was last updated.
Config GatewayPluginStatsdConfigArgs
Consumer GatewayPluginStatsdConsumerArgs
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
ControlPlaneId string
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
CreatedAt float64
Unix epoch when the resource was created.
Enabled bool
Whether the plugin is applied.
GatewayPluginStatsdId string
The ID of this resource.
InstanceName string
Ordering GatewayPluginStatsdOrderingArgs
Protocols []string
A set of strings representing protocols.
Route GatewayPluginStatsdRouteArgs
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
Service GatewayPluginStatsdServiceArgs
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
Tags []string
An optional set of strings associated with the Plugin for grouping and filtering.
UpdatedAt float64
Unix epoch when the resource was last updated.
config GatewayPluginStatsdConfig
consumer GatewayPluginStatsdConsumer
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
controlPlaneId String
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
createdAt Double
Unix epoch when the resource was created.
enabled Boolean
Whether the plugin is applied.
gatewayPluginStatsdId String
The ID of this resource.
instanceName String
ordering GatewayPluginStatsdOrdering
protocols List<String>
A set of strings representing protocols.
route GatewayPluginStatsdRoute
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service GatewayPluginStatsdService
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags List<String>
An optional set of strings associated with the Plugin for grouping and filtering.
updatedAt Double
Unix epoch when the resource was last updated.
config GatewayPluginStatsdConfig
consumer GatewayPluginStatsdConsumer
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
controlPlaneId string
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
createdAt number
Unix epoch when the resource was created.
enabled boolean
Whether the plugin is applied.
gatewayPluginStatsdId string
The ID of this resource.
instanceName string
ordering GatewayPluginStatsdOrdering
protocols string[]
A set of strings representing protocols.
route GatewayPluginStatsdRoute
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service GatewayPluginStatsdService
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags string[]
An optional set of strings associated with the Plugin for grouping and filtering.
updatedAt number
Unix epoch when the resource was last updated.
config GatewayPluginStatsdConfigArgs
consumer GatewayPluginStatsdConsumerArgs
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
control_plane_id str
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
created_at float
Unix epoch when the resource was created.
enabled bool
Whether the plugin is applied.
gateway_plugin_statsd_id str
The ID of this resource.
instance_name str
ordering GatewayPluginStatsdOrderingArgs
protocols Sequence[str]
A set of strings representing protocols.
route GatewayPluginStatsdRouteArgs
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service GatewayPluginStatsdServiceArgs
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags Sequence[str]
An optional set of strings associated with the Plugin for grouping and filtering.
updated_at float
Unix epoch when the resource was last updated.
config Property Map
consumer Property Map
If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
controlPlaneId String
The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
createdAt Number
Unix epoch when the resource was created.
enabled Boolean
Whether the plugin is applied.
gatewayPluginStatsdId String
The ID of this resource.
instanceName String
ordering Property Map
protocols List<String>
A set of strings representing protocols.
route Property Map
If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
service Property Map
If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
tags List<String>
An optional set of strings associated with the Plugin for grouping and filtering.
updatedAt Number
Unix epoch when the resource was last updated.

Supporting Types

GatewayPluginStatsdConfig
, GatewayPluginStatsdConfigArgs

AllowStatusCodes List<string>
List of status code ranges that are allowed to be logged in metrics.
ConsumerIdentifierDefault string
must be one of ["consumerid", "customid", "username"]
FlushTimeout double
Host string
The IP address or hostname of StatsD server to send data to.
HostnameInPrefix bool
Metrics List<GatewayPluginStatsdConfigMetric>
List of metrics to be logged.
Port double
The port of StatsD server to send data to.
Prefix string
String to prefix to each metric's name.
Queue GatewayPluginStatsdConfigQueue
QueueSize double
RetryCount double
ServiceIdentifierDefault string
must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
TagStyle string
must be one of ["dogstatsd", "influxdb", "librato", "signalfx"]
UdpPacketSize double
UseTcp bool
WorkspaceIdentifierDefault string
must be one of ["workspaceid", "workspacename"]
AllowStatusCodes []string
List of status code ranges that are allowed to be logged in metrics.
ConsumerIdentifierDefault string
must be one of ["consumerid", "customid", "username"]
FlushTimeout float64
Host string
The IP address or hostname of StatsD server to send data to.
HostnameInPrefix bool
Metrics []GatewayPluginStatsdConfigMetric
List of metrics to be logged.
Port float64
The port of StatsD server to send data to.
Prefix string
String to prefix to each metric's name.
Queue GatewayPluginStatsdConfigQueue
QueueSize float64
RetryCount float64
ServiceIdentifierDefault string
must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
TagStyle string
must be one of ["dogstatsd", "influxdb", "librato", "signalfx"]
UdpPacketSize float64
UseTcp bool
WorkspaceIdentifierDefault string
must be one of ["workspaceid", "workspacename"]
allowStatusCodes List<String>
List of status code ranges that are allowed to be logged in metrics.
consumerIdentifierDefault String
must be one of ["consumerid", "customid", "username"]
flushTimeout Double
host String
The IP address or hostname of StatsD server to send data to.
hostnameInPrefix Boolean
metrics List<GatewayPluginStatsdConfigMetric>
List of metrics to be logged.
port Double
The port of StatsD server to send data to.
prefix String
String to prefix to each metric's name.
queue GatewayPluginStatsdConfigQueue
queueSize Double
retryCount Double
serviceIdentifierDefault String
must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
tagStyle String
must be one of ["dogstatsd", "influxdb", "librato", "signalfx"]
udpPacketSize Double
useTcp Boolean
workspaceIdentifierDefault String
must be one of ["workspaceid", "workspacename"]
allowStatusCodes string[]
List of status code ranges that are allowed to be logged in metrics.
consumerIdentifierDefault string
must be one of ["consumerid", "customid", "username"]
flushTimeout number
host string
The IP address or hostname of StatsD server to send data to.
hostnameInPrefix boolean
metrics GatewayPluginStatsdConfigMetric[]
List of metrics to be logged.
port number
The port of StatsD server to send data to.
prefix string
String to prefix to each metric's name.
queue GatewayPluginStatsdConfigQueue
queueSize number
retryCount number
serviceIdentifierDefault string
must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
tagStyle string
must be one of ["dogstatsd", "influxdb", "librato", "signalfx"]
udpPacketSize number
useTcp boolean
workspaceIdentifierDefault string
must be one of ["workspaceid", "workspacename"]
allow_status_codes Sequence[str]
List of status code ranges that are allowed to be logged in metrics.
consumer_identifier_default str
must be one of ["consumerid", "customid", "username"]
flush_timeout float
host str
The IP address or hostname of StatsD server to send data to.
hostname_in_prefix bool
metrics Sequence[GatewayPluginStatsdConfigMetric]
List of metrics to be logged.
port float
The port of StatsD server to send data to.
prefix str
String to prefix to each metric's name.
queue GatewayPluginStatsdConfigQueue
queue_size float
retry_count float
service_identifier_default str
must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
tag_style str
must be one of ["dogstatsd", "influxdb", "librato", "signalfx"]
udp_packet_size float
use_tcp bool
workspace_identifier_default str
must be one of ["workspaceid", "workspacename"]
allowStatusCodes List<String>
List of status code ranges that are allowed to be logged in metrics.
consumerIdentifierDefault String
must be one of ["consumerid", "customid", "username"]
flushTimeout Number
host String
The IP address or hostname of StatsD server to send data to.
hostnameInPrefix Boolean
metrics List<Property Map>
List of metrics to be logged.
port Number
The port of StatsD server to send data to.
prefix String
String to prefix to each metric's name.
queue Property Map
queueSize Number
retryCount Number
serviceIdentifierDefault String
must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
tagStyle String
must be one of ["dogstatsd", "influxdb", "librato", "signalfx"]
udpPacketSize Number
useTcp Boolean
workspaceIdentifierDefault String
must be one of ["workspaceid", "workspacename"]

GatewayPluginStatsdConfigMetric
, GatewayPluginStatsdConfigMetricArgs

ConsumerIdentifier string
Authenticated user detail. must be one of ["consumerid", "customid", "username"]
Name string
StatsD metric’s name. Not Null; must be one of ["cachedatastorehitstotal", "cachedatastoremissestotal", "konglatency", "latency", "requestcount", "requestperuser", "requestsize", "responsesize", "shdictusage", "statuscount", "statuscountperuser", "statuscountperuserperroute", "statuscountperworkspace", "uniqueusers", "upstream_latency"]
SampleRate double
Sampling rate
ServiceIdentifier string
Service detail. must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
StatType string
Determines what sort of event a metric represents. Not Null; must be one of ["counter", "gauge", "histogram", "meter", "set", "timer"]
WorkspaceIdentifier string
Workspace detail. must be one of ["workspaceid", "workspacename"]
ConsumerIdentifier string
Authenticated user detail. must be one of ["consumerid", "customid", "username"]
Name string
StatsD metric’s name. Not Null; must be one of ["cachedatastorehitstotal", "cachedatastoremissestotal", "konglatency", "latency", "requestcount", "requestperuser", "requestsize", "responsesize", "shdictusage", "statuscount", "statuscountperuser", "statuscountperuserperroute", "statuscountperworkspace", "uniqueusers", "upstream_latency"]
SampleRate float64
Sampling rate
ServiceIdentifier string
Service detail. must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
StatType string
Determines what sort of event a metric represents. Not Null; must be one of ["counter", "gauge", "histogram", "meter", "set", "timer"]
WorkspaceIdentifier string
Workspace detail. must be one of ["workspaceid", "workspacename"]
consumerIdentifier String
Authenticated user detail. must be one of ["consumerid", "customid", "username"]
name String
StatsD metric’s name. Not Null; must be one of ["cachedatastorehitstotal", "cachedatastoremissestotal", "konglatency", "latency", "requestcount", "requestperuser", "requestsize", "responsesize", "shdictusage", "statuscount", "statuscountperuser", "statuscountperuserperroute", "statuscountperworkspace", "uniqueusers", "upstream_latency"]
sampleRate Double
Sampling rate
serviceIdentifier String
Service detail. must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
statType String
Determines what sort of event a metric represents. Not Null; must be one of ["counter", "gauge", "histogram", "meter", "set", "timer"]
workspaceIdentifier String
Workspace detail. must be one of ["workspaceid", "workspacename"]
consumerIdentifier string
Authenticated user detail. must be one of ["consumerid", "customid", "username"]
name string
StatsD metric’s name. Not Null; must be one of ["cachedatastorehitstotal", "cachedatastoremissestotal", "konglatency", "latency", "requestcount", "requestperuser", "requestsize", "responsesize", "shdictusage", "statuscount", "statuscountperuser", "statuscountperuserperroute", "statuscountperworkspace", "uniqueusers", "upstream_latency"]
sampleRate number
Sampling rate
serviceIdentifier string
Service detail. must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
statType string
Determines what sort of event a metric represents. Not Null; must be one of ["counter", "gauge", "histogram", "meter", "set", "timer"]
workspaceIdentifier string
Workspace detail. must be one of ["workspaceid", "workspacename"]
consumer_identifier str
Authenticated user detail. must be one of ["consumerid", "customid", "username"]
name str
StatsD metric’s name. Not Null; must be one of ["cachedatastorehitstotal", "cachedatastoremissestotal", "konglatency", "latency", "requestcount", "requestperuser", "requestsize", "responsesize", "shdictusage", "statuscount", "statuscountperuser", "statuscountperuserperroute", "statuscountperworkspace", "uniqueusers", "upstream_latency"]
sample_rate float
Sampling rate
service_identifier str
Service detail. must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
stat_type str
Determines what sort of event a metric represents. Not Null; must be one of ["counter", "gauge", "histogram", "meter", "set", "timer"]
workspace_identifier str
Workspace detail. must be one of ["workspaceid", "workspacename"]
consumerIdentifier String
Authenticated user detail. must be one of ["consumerid", "customid", "username"]
name String
StatsD metric’s name. Not Null; must be one of ["cachedatastorehitstotal", "cachedatastoremissestotal", "konglatency", "latency", "requestcount", "requestperuser", "requestsize", "responsesize", "shdictusage", "statuscount", "statuscountperuser", "statuscountperuserperroute", "statuscountperworkspace", "uniqueusers", "upstream_latency"]
sampleRate Number
Sampling rate
serviceIdentifier String
Service detail. must be one of ["servicehost", "serviceid", "servicename", "servicenameorhost"]
statType String
Determines what sort of event a metric represents. Not Null; must be one of ["counter", "gauge", "histogram", "meter", "set", "timer"]
workspaceIdentifier String
Workspace detail. must be one of ["workspaceid", "workspacename"]

GatewayPluginStatsdConfigQueue
, GatewayPluginStatsdConfigQueueArgs

ConcurrencyLimit double
The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
InitialRetryDelay double
Time in seconds before the initial retry is made for a failing batch.
MaxBatchSize double
Maximum number of entries that can be processed at a time.
MaxBytes double
Maximum number of bytes that can be waiting on a queue, requires string content.
MaxCoalescingDelay double
Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
MaxEntries double
Maximum number of entries that can be waiting on the queue.
MaxRetryDelay double
Maximum time in seconds between retries, caps exponential backoff.
MaxRetryTime double
Time in seconds before the queue gives up calling a failed handler for a batch.
ConcurrencyLimit float64
The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
InitialRetryDelay float64
Time in seconds before the initial retry is made for a failing batch.
MaxBatchSize float64
Maximum number of entries that can be processed at a time.
MaxBytes float64
Maximum number of bytes that can be waiting on a queue, requires string content.
MaxCoalescingDelay float64
Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
MaxEntries float64
Maximum number of entries that can be waiting on the queue.
MaxRetryDelay float64
Maximum time in seconds between retries, caps exponential backoff.
MaxRetryTime float64
Time in seconds before the queue gives up calling a failed handler for a batch.
concurrencyLimit Double
The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
initialRetryDelay Double
Time in seconds before the initial retry is made for a failing batch.
maxBatchSize Double
Maximum number of entries that can be processed at a time.
maxBytes Double
Maximum number of bytes that can be waiting on a queue, requires string content.
maxCoalescingDelay Double
Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
maxEntries Double
Maximum number of entries that can be waiting on the queue.
maxRetryDelay Double
Maximum time in seconds between retries, caps exponential backoff.
maxRetryTime Double
Time in seconds before the queue gives up calling a failed handler for a batch.
concurrencyLimit number
The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
initialRetryDelay number
Time in seconds before the initial retry is made for a failing batch.
maxBatchSize number
Maximum number of entries that can be processed at a time.
maxBytes number
Maximum number of bytes that can be waiting on a queue, requires string content.
maxCoalescingDelay number
Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
maxEntries number
Maximum number of entries that can be waiting on the queue.
maxRetryDelay number
Maximum time in seconds between retries, caps exponential backoff.
maxRetryTime number
Time in seconds before the queue gives up calling a failed handler for a batch.
concurrency_limit float
The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
initial_retry_delay float
Time in seconds before the initial retry is made for a failing batch.
max_batch_size float
Maximum number of entries that can be processed at a time.
max_bytes float
Maximum number of bytes that can be waiting on a queue, requires string content.
max_coalescing_delay float
Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
max_entries float
Maximum number of entries that can be waiting on the queue.
max_retry_delay float
Maximum time in seconds between retries, caps exponential backoff.
max_retry_time float
Time in seconds before the queue gives up calling a failed handler for a batch.
concurrencyLimit Number
The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
initialRetryDelay Number
Time in seconds before the initial retry is made for a failing batch.
maxBatchSize Number
Maximum number of entries that can be processed at a time.
maxBytes Number
Maximum number of bytes that can be waiting on a queue, requires string content.
maxCoalescingDelay Number
Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
maxEntries Number
Maximum number of entries that can be waiting on the queue.
maxRetryDelay Number
Maximum time in seconds between retries, caps exponential backoff.
maxRetryTime Number
Time in seconds before the queue gives up calling a failed handler for a batch.

GatewayPluginStatsdConsumer
, GatewayPluginStatsdConsumerArgs

Id string
Id string
id String
id string
id str
id String

GatewayPluginStatsdOrdering
, GatewayPluginStatsdOrderingArgs

GatewayPluginStatsdOrderingAfter
, GatewayPluginStatsdOrderingAfterArgs

Accesses List<string>
Accesses []string
accesses List<String>
accesses string[]
accesses Sequence[str]
accesses List<String>

GatewayPluginStatsdOrderingBefore
, GatewayPluginStatsdOrderingBeforeArgs

Accesses List<string>
Accesses []string
accesses List<String>
accesses string[]
accesses Sequence[str]
accesses List<String>

GatewayPluginStatsdRoute
, GatewayPluginStatsdRouteArgs

Id string
Id string
id String
id string
id str
id String

GatewayPluginStatsdService
, GatewayPluginStatsdServiceArgs

Id string
Id string
id String
id string
id str
id String

Import

$ pulumi import konnect:index/gatewayPluginStatsd:GatewayPluginStatsd my_konnect_gateway_plugin_statsd "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"plugin_id\": \"3473c251-5b6c-4f45-b1ff-7ede735a366d\"}"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
konnect kong/terraform-provider-konnect
License
Notes
This Pulumi package is based on the konnect Terraform Provider.