dynatrace logo
Dynatrace v0.0.2, Nov 1 22

dynatrace.getProcess

The process data source allows the process ID to be retrieved by its name and optionally tags / tag-value pairs.

  • name queries for all processes with the specified name
  • tags (optional) refers to the tags that need to be present for the process (inclusive)

If multiple processes match the given criteria, the first result will be retrieved.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Dynatrace = Lbrlabs.PulumiPackage.Dynatrace;
using Dynatrace = Pulumi.Dynatrace;

return await Deployment.RunAsync(() => 
{
    var test = Dynatrace.GetProcess.Invoke(new()
    {
        Name = "Example",
        Tags = new[]
        {
            "TerraformKeyTest",
            "TerraformKeyValueTest=TestValue",
        },
    });

    var _name_ = new Dynatrace.ManagementZone("#name#", new()
    {
        EntitySelectorBasedRules = new[]
        {
            new Dynatrace.Inputs.ManagementZoneEntitySelectorBasedRuleArgs
            {
                Enabled = true,
                Selector = $"type(\"process_group_instance\"),entityId(\"{test.Apply(getProcessResult => getProcessResult.Id)}\")",
            },
        },
    });

});
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-dynatrace/sdk/go/dynatrace"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		test, err := dynatrace.GetProcess(ctx, &GetProcessArgs{
			Name: "Example",
			Tags: []string{
				"TerraformKeyTest",
				"TerraformKeyValueTest=TestValue",
			},
		}, nil)
		if err != nil {
			return err
		}
		_, err = dynatrace.NewManagementZone(ctx, "#name#", &dynatrace.ManagementZoneArgs{
			EntitySelectorBasedRules: ManagementZoneEntitySelectorBasedRuleArray{
				&ManagementZoneEntitySelectorBasedRuleArgs{
					Enabled:  pulumi.Bool(true),
					Selector: pulumi.String(fmt.Sprintf("type(\"process_group_instance\"),entityId(\"%v\")", test.Id)),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
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.GetProcessArgs;
import com.pulumi.dynatrace.ManagementZone;
import com.pulumi.dynatrace.ManagementZoneArgs;
import com.pulumi.dynatrace.inputs.ManagementZoneEntitySelectorBasedRuleArgs;
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 test = DynatraceFunctions.getProcess(GetProcessArgs.builder()
            .name("Example")
            .tags(            
                "TerraformKeyTest",
                "TerraformKeyValueTest=TestValue")
            .build());

        var _name_ = new ManagementZone("#name#", ManagementZoneArgs.builder()        
            .entitySelectorBasedRules(ManagementZoneEntitySelectorBasedRuleArgs.builder()
                .enabled(true)
                .selector(String.format("type(\"process_group_instance\"),entityId(\"%s\")", test.applyValue(getProcessResult -> getProcessResult.id())))
                .build())
            .build());

    }
}
import pulumi
import lbrlabs_pulumi_dynatrace as dynatrace
import pulumi_dynatrace as dynatrace

test = dynatrace.get_process(name="Example",
    tags=[
        "TerraformKeyTest",
        "TerraformKeyValueTest=TestValue",
    ])
_name_ = dynatrace.ManagementZone("#name#", entity_selector_based_rules=[dynatrace.ManagementZoneEntitySelectorBasedRuleArgs(
    enabled=True,
    selector=f"type(\"process_group_instance\"),entityId(\"{test.id}\")",
)])
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumi/dynatrace";

const test = pulumi.output(dynatrace.getProcess({
    name: "Example",
    tags: [
        "TerraformKeyTest",
        "TerraformKeyValueTest=TestValue",
    ],
}));
const _name_ = new dynatrace.ManagementZone("#name#", {
    entitySelectorBasedRules: [{
        enabled: true,
        selector: pulumi.interpolate`type("process_group_instance"),entityId("${test.id}")`,
    }],
});
resources:
  '#name#':
    type: dynatrace:ManagementZone
    properties:
      entitySelectorBasedRules:
        - enabled: true
          selector: type("process_group_instance"),entityId("${test.id}")
variables:
  test:
    fn::invoke:
      Function: dynatrace:getProcess
      Arguments:
        name: Example
        tags:
          - TerraformKeyTest
          - TerraformKeyValueTest=TestValue

Using getProcess

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 getProcess(args: GetProcessArgs, opts?: InvokeOptions): Promise<GetProcessResult>
function getProcessOutput(args: GetProcessOutputArgs, opts?: InvokeOptions): Output<GetProcessResult>
def get_process(name: Optional[str] = None,
                tags: Optional[Sequence[str]] = None,
                opts: Optional[InvokeOptions] = None) -> GetProcessResult
def get_process_output(name: Optional[pulumi.Input[str]] = None,
                tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetProcessResult]
func GetProcess(ctx *Context, args *GetProcessArgs, opts ...InvokeOption) (*GetProcessResult, error)
func GetProcessOutput(ctx *Context, args *GetProcessOutputArgs, opts ...InvokeOption) GetProcessResultOutput

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

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

The following arguments are supported:

Name string
Tags List<string>

Required tags of the process to find

Name string
Tags []string

Required tags of the process to find

name String
tags List<String>

Required tags of the process to find

name string
tags string[]

Required tags of the process to find

name str
tags Sequence[str]

Required tags of the process to find

name String
tags List<String>

Required tags of the process to find

getProcess Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

Name string
Tags List<string>

Required tags of the process to find

Id string

The provider-assigned unique ID for this managed resource.

Name string
Tags []string

Required tags of the process to find

id String

The provider-assigned unique ID for this managed resource.

name String
tags List<String>

Required tags of the process to find

id string

The provider-assigned unique ID for this managed resource.

name string
tags string[]

Required tags of the process to find

id str

The provider-assigned unique ID for this managed resource.

name str
tags Sequence[str]

Required tags of the process to find

id String

The provider-assigned unique ID for this managed resource.

name String
tags List<String>

Required tags of the process to find

Package Details

Repository
dynatrace lbrlabs/pulumi-dynatrace
License
Apache-2.0
Notes

This Pulumi package is based on the dynatrace Terraform Provider.