1. Packages
  2. Honeycombio Provider
  3. API Docs
  4. getTriggerRecipient
honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio

honeycombio.getTriggerRecipient

Explore with Pulumi AI

honeycombio logo
honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio

    # Data Source: honeycombio.getTriggerRecipient

    Search the triggers of a dataset for a trigger recipient. The ID of the existing trigger recipient can be used when adding trigger recipients to new triggers.

    !> Deprecated Use the honeycombio.getRecipient data source instead.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as honeycombio from "@pulumi/honeycombio";
    
    const config = new pulumi.Config();
    const dataset = config.require("dataset");
    const slack = honeycombio.getTriggerRecipient({
        dataset: dataset,
        type: "slack",
        target: "honeycomb-triggers",
    });
    const exampleQuerySpecification = honeycombio.getQuerySpecification({
        calculations: [{
            op: "AVG",
            column: "duration_ms",
        }],
    });
    const exampleTrigger = new honeycombio.Trigger("exampleTrigger", {
        queryJson: exampleQuerySpecification.then(exampleQuerySpecification => exampleQuerySpecification.json),
        dataset: dataset,
        thresholds: [{
            op: ">",
            value: 1000,
        }],
        recipients: [
            {
                type: "email",
                target: "hello@example.com",
            },
            {
                id: slack.then(slack => slack.id),
            },
        ],
    });
    
    import pulumi
    import pulumi_honeycombio as honeycombio
    
    config = pulumi.Config()
    dataset = config.require("dataset")
    slack = honeycombio.get_trigger_recipient(dataset=dataset,
        type="slack",
        target="honeycomb-triggers")
    example_query_specification = honeycombio.get_query_specification(calculations=[{
        "op": "AVG",
        "column": "duration_ms",
    }])
    example_trigger = honeycombio.Trigger("exampleTrigger",
        query_json=example_query_specification.json,
        dataset=dataset,
        thresholds=[{
            "op": ">",
            "value": 1000,
        }],
        recipients=[
            {
                "type": "email",
                "target": "hello@example.com",
            },
            {
                "id": slack.id,
            },
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/honeycombio/honeycombio"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		dataset := cfg.Require("dataset")
    		slack, err := honeycombio.GetTriggerRecipient(ctx, &honeycombio.GetTriggerRecipientArgs{
    			Dataset: dataset,
    			Type:    "slack",
    			Target:  pulumi.StringRef("honeycomb-triggers"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleQuerySpecification, err := honeycombio.GetQuerySpecification(ctx, &honeycombio.GetQuerySpecificationArgs{
    			Calculations: []honeycombio.GetQuerySpecificationCalculation{
    				{
    					Op:     "AVG",
    					Column: pulumi.StringRef("duration_ms"),
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = honeycombio.NewTrigger(ctx, "exampleTrigger", &honeycombio.TriggerArgs{
    			QueryJson: pulumi.String(exampleQuerySpecification.Json),
    			Dataset:   pulumi.String(dataset),
    			Thresholds: honeycombio.TriggerThresholdArray{
    				&honeycombio.TriggerThresholdArgs{
    					Op:    pulumi.String(">"),
    					Value: pulumi.Float64(1000),
    				},
    			},
    			Recipients: honeycombio.TriggerRecipientArray{
    				&honeycombio.TriggerRecipientArgs{
    					Type:   pulumi.String("email"),
    					Target: pulumi.String("hello@example.com"),
    				},
    				&honeycombio.TriggerRecipientArgs{
    					Id: pulumi.String(slack.Id),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Honeycombio = Pulumi.Honeycombio;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var dataset = config.Require("dataset");
        var slack = Honeycombio.GetTriggerRecipient.Invoke(new()
        {
            Dataset = dataset,
            Type = "slack",
            Target = "honeycomb-triggers",
        });
    
        var exampleQuerySpecification = Honeycombio.GetQuerySpecification.Invoke(new()
        {
            Calculations = new[]
            {
                new Honeycombio.Inputs.GetQuerySpecificationCalculationInputArgs
                {
                    Op = "AVG",
                    Column = "duration_ms",
                },
            },
        });
    
        var exampleTrigger = new Honeycombio.Trigger("exampleTrigger", new()
        {
            QueryJson = exampleQuerySpecification.Apply(getQuerySpecificationResult => getQuerySpecificationResult.Json),
            Dataset = dataset,
            Thresholds = new[]
            {
                new Honeycombio.Inputs.TriggerThresholdArgs
                {
                    Op = ">",
                    Value = 1000,
                },
            },
            Recipients = new[]
            {
                new Honeycombio.Inputs.TriggerRecipientArgs
                {
                    Type = "email",
                    Target = "hello@example.com",
                },
                new Honeycombio.Inputs.TriggerRecipientArgs
                {
                    Id = slack.Apply(getTriggerRecipientResult => getTriggerRecipientResult.Id),
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.honeycombio.HoneycombioFunctions;
    import com.pulumi.honeycombio.inputs.GetTriggerRecipientArgs;
    import com.pulumi.honeycombio.inputs.GetQuerySpecificationArgs;
    import com.pulumi.honeycombio.Trigger;
    import com.pulumi.honeycombio.TriggerArgs;
    import com.pulumi.honeycombio.inputs.TriggerThresholdArgs;
    import com.pulumi.honeycombio.inputs.TriggerRecipientArgs;
    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) {
            final var config = ctx.config();
            final var dataset = config.get("dataset");
            final var slack = HoneycombioFunctions.getTriggerRecipient(GetTriggerRecipientArgs.builder()
                .dataset(dataset)
                .type("slack")
                .target("honeycomb-triggers")
                .build());
    
            final var exampleQuerySpecification = HoneycombioFunctions.getQuerySpecification(GetQuerySpecificationArgs.builder()
                .calculations(GetQuerySpecificationCalculationArgs.builder()
                    .op("AVG")
                    .column("duration_ms")
                    .build())
                .build());
    
            var exampleTrigger = new Trigger("exampleTrigger", TriggerArgs.builder()
                .queryJson(exampleQuerySpecification.applyValue(getQuerySpecificationResult -> getQuerySpecificationResult.json()))
                .dataset(dataset)
                .thresholds(TriggerThresholdArgs.builder()
                    .op(">")
                    .value(1000)
                    .build())
                .recipients(            
                    TriggerRecipientArgs.builder()
                        .type("email")
                        .target("hello@example.com")
                        .build(),
                    TriggerRecipientArgs.builder()
                        .id(slack.applyValue(getTriggerRecipientResult -> getTriggerRecipientResult.id()))
                        .build())
                .build());
    
        }
    }
    
    configuration:
      dataset:
        type: string
    resources:
      exampleTrigger:
        type: honeycombio:Trigger
        properties:
          queryJson: ${exampleQuerySpecification.json}
          dataset: ${dataset}
          thresholds:
            - op: '>'
              value: 1000
          recipients:
            - type: email
              target: hello@example.com
            - id: ${slack.id}
    variables:
      slack:
        fn::invoke:
          function: honeycombio:getTriggerRecipient
          arguments:
            dataset: ${dataset}
            type: slack
            target: honeycomb-triggers
      exampleQuerySpecification:
        fn::invoke:
          function: honeycombio:getQuerySpecification
          arguments:
            calculations:
              - op: AVG
                column: duration_ms
    

    Using getTriggerRecipient

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getTriggerRecipient(args: GetTriggerRecipientArgs, opts?: InvokeOptions): Promise<GetTriggerRecipientResult>
    function getTriggerRecipientOutput(args: GetTriggerRecipientOutputArgs, opts?: InvokeOptions): Output<GetTriggerRecipientResult>
    def get_trigger_recipient(dataset: Optional[str] = None,
                              id: Optional[str] = None,
                              target: Optional[str] = None,
                              type: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetTriggerRecipientResult
    def get_trigger_recipient_output(dataset: Optional[pulumi.Input[str]] = None,
                              id: Optional[pulumi.Input[str]] = None,
                              target: Optional[pulumi.Input[str]] = None,
                              type: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetTriggerRecipientResult]
    func GetTriggerRecipient(ctx *Context, args *GetTriggerRecipientArgs, opts ...InvokeOption) (*GetTriggerRecipientResult, error)
    func GetTriggerRecipientOutput(ctx *Context, args *GetTriggerRecipientOutputArgs, opts ...InvokeOption) GetTriggerRecipientResultOutput

    > Note: This function is named GetTriggerRecipient in the Go SDK.

    public static class GetTriggerRecipient 
    {
        public static Task<GetTriggerRecipientResult> InvokeAsync(GetTriggerRecipientArgs args, InvokeOptions? opts = null)
        public static Output<GetTriggerRecipientResult> Invoke(GetTriggerRecipientInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTriggerRecipientResult> getTriggerRecipient(GetTriggerRecipientArgs args, InvokeOptions options)
    public static Output<GetTriggerRecipientResult> getTriggerRecipient(GetTriggerRecipientArgs args, InvokeOptions options)
    
    fn::invoke:
      function: honeycombio:index/getTriggerRecipient:getTriggerRecipient
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Dataset string
    Search through all triggers linked to this dataset.
    Type string
    The type of recipient, allowed types are email, marker, pagerduty, slack and webhook.
    Id string
    ID of the trigger recipient.
    Target string

    Target of the trigger, this has another meaning depending on the type of recipient (see the table below).

    Type | Target ----------|------------------------- email | an email address marker | name of the marker pagerduty | N/A slack | name of the channel webhook | name of the webhook

    Dataset string
    Search through all triggers linked to this dataset.
    Type string
    The type of recipient, allowed types are email, marker, pagerduty, slack and webhook.
    Id string
    ID of the trigger recipient.
    Target string

    Target of the trigger, this has another meaning depending on the type of recipient (see the table below).

    Type | Target ----------|------------------------- email | an email address marker | name of the marker pagerduty | N/A slack | name of the channel webhook | name of the webhook

    dataset String
    Search through all triggers linked to this dataset.
    type String
    The type of recipient, allowed types are email, marker, pagerduty, slack and webhook.
    id String
    ID of the trigger recipient.
    target String

    Target of the trigger, this has another meaning depending on the type of recipient (see the table below).

    Type | Target ----------|------------------------- email | an email address marker | name of the marker pagerduty | N/A slack | name of the channel webhook | name of the webhook

    dataset string
    Search through all triggers linked to this dataset.
    type string
    The type of recipient, allowed types are email, marker, pagerduty, slack and webhook.
    id string
    ID of the trigger recipient.
    target string

    Target of the trigger, this has another meaning depending on the type of recipient (see the table below).

    Type | Target ----------|------------------------- email | an email address marker | name of the marker pagerduty | N/A slack | name of the channel webhook | name of the webhook

    dataset str
    Search through all triggers linked to this dataset.
    type str
    The type of recipient, allowed types are email, marker, pagerduty, slack and webhook.
    id str
    ID of the trigger recipient.
    target str

    Target of the trigger, this has another meaning depending on the type of recipient (see the table below).

    Type | Target ----------|------------------------- email | an email address marker | name of the marker pagerduty | N/A slack | name of the channel webhook | name of the webhook

    dataset String
    Search through all triggers linked to this dataset.
    type String
    The type of recipient, allowed types are email, marker, pagerduty, slack and webhook.
    id String
    ID of the trigger recipient.
    target String

    Target of the trigger, this has another meaning depending on the type of recipient (see the table below).

    Type | Target ----------|------------------------- email | an email address marker | name of the marker pagerduty | N/A slack | name of the channel webhook | name of the webhook

    getTriggerRecipient Result

    The following output properties are available:

    Dataset string
    Id string
    ID of the trigger recipient.
    Type string
    Target string
    Dataset string
    Id string
    ID of the trigger recipient.
    Type string
    Target string
    dataset String
    id String
    ID of the trigger recipient.
    type String
    target String
    dataset string
    id string
    ID of the trigger recipient.
    type string
    target string
    dataset str
    id str
    ID of the trigger recipient.
    type str
    target str
    dataset String
    id String
    ID of the trigger recipient.
    type String
    target String

    Package Details

    Repository
    honeycombio honeycombio/terraform-provider-honeycombio
    License
    Notes
    This Pulumi package is based on the honeycombio Terraform Provider.
    honeycombio logo
    honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio