1. Packages
  2. Dynatrace
  3. API Docs
  4. getCalculatedServiceMetric
Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse

dynatrace.getCalculatedServiceMetric

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse

    The calculated service metric data source allows the metric ID to be retrieved by its name.

    • name (String) - The name of the calculated service metric

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dynatrace from "@pulumi/dynatrace";
    
    const example = dynatrace.getCalculatedServiceMetric({
        name: "Terraform Example",
    });
    export const groups = example.then(example => example.id);
    
    import pulumi
    import pulumi_dynatrace as dynatrace
    
    example = dynatrace.get_calculated_service_metric(name="Terraform Example")
    pulumi.export("groups", example.id)
    
    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 {
    		example, err := dynatrace.LookupCalculatedServiceMetric(ctx, &dynatrace.LookupCalculatedServiceMetricArgs{
    			Name: "Terraform Example",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("groups", example.Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Dynatrace = Pulumi.Dynatrace;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Dynatrace.GetCalculatedServiceMetric.Invoke(new()
        {
            Name = "Terraform Example",
        });
    
        return new Dictionary<string, object?>
        {
            ["groups"] = example.Apply(getCalculatedServiceMetricResult => getCalculatedServiceMetricResult.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.DynatraceFunctions;
    import com.pulumi.dynatrace.inputs.GetCalculatedServiceMetricArgs;
    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 example = DynatraceFunctions.getCalculatedServiceMetric(GetCalculatedServiceMetricArgs.builder()
                .name("Terraform Example")
                .build());
    
            ctx.export("groups", example.applyValue(getCalculatedServiceMetricResult -> getCalculatedServiceMetricResult.id()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: dynatrace:getCalculatedServiceMetric
          Arguments:
            name: Terraform Example
    outputs:
      groups: ${example.id}
    

    Using getCalculatedServiceMetric

    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 getCalculatedServiceMetric(args: GetCalculatedServiceMetricArgs, opts?: InvokeOptions): Promise<GetCalculatedServiceMetricResult>
    function getCalculatedServiceMetricOutput(args: GetCalculatedServiceMetricOutputArgs, opts?: InvokeOptions): Output<GetCalculatedServiceMetricResult>
    def get_calculated_service_metric(name: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetCalculatedServiceMetricResult
    def get_calculated_service_metric_output(name: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetCalculatedServiceMetricResult]
    func LookupCalculatedServiceMetric(ctx *Context, args *LookupCalculatedServiceMetricArgs, opts ...InvokeOption) (*LookupCalculatedServiceMetricResult, error)
    func LookupCalculatedServiceMetricOutput(ctx *Context, args *LookupCalculatedServiceMetricOutputArgs, opts ...InvokeOption) LookupCalculatedServiceMetricResultOutput

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

    public static class GetCalculatedServiceMetric 
    {
        public static Task<GetCalculatedServiceMetricResult> InvokeAsync(GetCalculatedServiceMetricArgs args, InvokeOptions? opts = null)
        public static Output<GetCalculatedServiceMetricResult> Invoke(GetCalculatedServiceMetricInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCalculatedServiceMetricResult> getCalculatedServiceMetric(GetCalculatedServiceMetricArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: dynatrace:index/getCalculatedServiceMetric:getCalculatedServiceMetric
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    Name string
    name String
    name string
    name str
    name String

    getCalculatedServiceMetric Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    id String
    The provider-assigned unique ID for this managed resource.
    name String

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse