1. Packages
  2. Dynatrace
  3. API Docs
  4. AlertingProfile
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.AlertingProfile

Explore with Pulumi AI

!> This resource API endpoint has been deprecated, please use dynatrace.Alerting instead.

This resource requires the API token scopes Read configuration (ReadConfig) and Write configuration (WriteConfig)

Dynatrace Documentation

  • Alerting profiles - https://www.dynatrace.com/support/help/how-to-use-dynatrace/problem-detection-and-analysis/notifications-and-alerting/alerting-profiles

  • Alerting profiles API - https://www.dynatrace.com/support/help/dynatrace-api/configuration-api/alerting-profiles-api

Resource Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";

const _name_ = new dynatrace.AlertingProfile("#name#", {
    displayName: "#name#",
    mzId: "",
    rules: [
        {
            delayInMinutes: 0,
            severityLevel: "AVAILABILITY",
            tagFilters: [{
                includeMode: "INCLUDE_ALL",
                tagFilters: [
                    {
                        context: "CONTEXTLESS",
                        key: "EnvironmentA",
                        value: "production",
                    },
                    {
                        context: "CONTEXTLESS",
                        key: "Team",
                        value: "test",
                    },
                ],
            }],
        },
        {
            delayInMinutes: 0,
            severityLevel: "CUSTOM_ALERT",
            tagFilters: [{
                includeMode: "INCLUDE_ALL",
                tagFilters: [
                    {
                        context: "CONTEXTLESS",
                        key: "EnvironmentB",
                        value: "production",
                    },
                    {
                        context: "CONTEXTLESS",
                        key: "Team",
                        value: "test",
                    },
                ],
            }],
        },
        {
            delayInMinutes: 0,
            severityLevel: "ERROR",
            tagFilters: [{
                includeMode: "INCLUDE_ALL",
                tagFilters: [
                    {
                        context: "CONTEXTLESS",
                        key: "EnvironmentC",
                        value: "production",
                    },
                    {
                        context: "CONTEXTLESS",
                        key: "Team",
                        value: "test",
                    },
                ],
            }],
        },
        {
            delayInMinutes: 0,
            severityLevel: "MONITORING_UNAVAILABLE",
            tagFilters: [{
                includeMode: "INCLUDE_ALL",
                tagFilters: [
                    {
                        context: "CONTEXTLESS",
                        key: "EnvironmentD",
                        value: "production",
                    },
                    {
                        context: "CONTEXTLESS",
                        key: "Team",
                        value: "test",
                    },
                ],
            }],
        },
        {
            delayInMinutes: 0,
            severityLevel: "PERFORMANCE",
            tagFilters: [{
                includeMode: "INCLUDE_ALL",
                tagFilters: [
                    {
                        context: "CONTEXTLESS",
                        key: "EnvironmentE",
                        value: "production",
                    },
                    {
                        context: "CONTEXTLESS",
                        key: "Team",
                        value: "test",
                    },
                ],
            }],
        },
        {
            delayInMinutes: 0,
            severityLevel: "RESOURCE_CONTENTION",
            tagFilters: [{
                includeMode: "INCLUDE_ALL",
                tagFilters: [
                    {
                        context: "CONTEXTLESS",
                        key: "EnvironmentF",
                        value: "production",
                    },
                    {
                        context: "CONTEXTLESS",
                        key: "Team",
                        value: "test",
                    },
                ],
            }],
        },
    ],
});
Copy
import pulumi
import pulumiverse_dynatrace as dynatrace

_name_ = dynatrace.AlertingProfile("#name#",
    display_name="#name#",
    mz_id="",
    rules=[
        {
            "delay_in_minutes": 0,
            "severity_level": "AVAILABILITY",
            "tag_filters": [{
                "include_mode": "INCLUDE_ALL",
                "tag_filters": [
                    {
                        "context": "CONTEXTLESS",
                        "key": "EnvironmentA",
                        "value": "production",
                    },
                    {
                        "context": "CONTEXTLESS",
                        "key": "Team",
                        "value": "test",
                    },
                ],
            }],
        },
        {
            "delay_in_minutes": 0,
            "severity_level": "CUSTOM_ALERT",
            "tag_filters": [{
                "include_mode": "INCLUDE_ALL",
                "tag_filters": [
                    {
                        "context": "CONTEXTLESS",
                        "key": "EnvironmentB",
                        "value": "production",
                    },
                    {
                        "context": "CONTEXTLESS",
                        "key": "Team",
                        "value": "test",
                    },
                ],
            }],
        },
        {
            "delay_in_minutes": 0,
            "severity_level": "ERROR",
            "tag_filters": [{
                "include_mode": "INCLUDE_ALL",
                "tag_filters": [
                    {
                        "context": "CONTEXTLESS",
                        "key": "EnvironmentC",
                        "value": "production",
                    },
                    {
                        "context": "CONTEXTLESS",
                        "key": "Team",
                        "value": "test",
                    },
                ],
            }],
        },
        {
            "delay_in_minutes": 0,
            "severity_level": "MONITORING_UNAVAILABLE",
            "tag_filters": [{
                "include_mode": "INCLUDE_ALL",
                "tag_filters": [
                    {
                        "context": "CONTEXTLESS",
                        "key": "EnvironmentD",
                        "value": "production",
                    },
                    {
                        "context": "CONTEXTLESS",
                        "key": "Team",
                        "value": "test",
                    },
                ],
            }],
        },
        {
            "delay_in_minutes": 0,
            "severity_level": "PERFORMANCE",
            "tag_filters": [{
                "include_mode": "INCLUDE_ALL",
                "tag_filters": [
                    {
                        "context": "CONTEXTLESS",
                        "key": "EnvironmentE",
                        "value": "production",
                    },
                    {
                        "context": "CONTEXTLESS",
                        "key": "Team",
                        "value": "test",
                    },
                ],
            }],
        },
        {
            "delay_in_minutes": 0,
            "severity_level": "RESOURCE_CONTENTION",
            "tag_filters": [{
                "include_mode": "INCLUDE_ALL",
                "tag_filters": [
                    {
                        "context": "CONTEXTLESS",
                        "key": "EnvironmentF",
                        "value": "production",
                    },
                    {
                        "context": "CONTEXTLESS",
                        "key": "Team",
                        "value": "test",
                    },
                ],
            }],
        },
    ])
Copy
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.NewAlertingProfile(ctx, "#name#", &dynatrace.AlertingProfileArgs{
			DisplayName: pulumi.String("#name#"),
			MzId:        pulumi.String(""),
			Rules: dynatrace.AlertingProfileRuleArray{
				&dynatrace.AlertingProfileRuleArgs{
					DelayInMinutes: pulumi.Int(0),
					SeverityLevel:  pulumi.String("AVAILABILITY"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterArgs{
							IncludeMode: pulumi.String("INCLUDE_ALL"),
							TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("EnvironmentA"),
									Value:   pulumi.String("production"),
								},
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("Team"),
									Value:   pulumi.String("test"),
								},
							},
						},
					},
				},
				&dynatrace.AlertingProfileRuleArgs{
					DelayInMinutes: pulumi.Int(0),
					SeverityLevel:  pulumi.String("CUSTOM_ALERT"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterArgs{
							IncludeMode: pulumi.String("INCLUDE_ALL"),
							TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("EnvironmentB"),
									Value:   pulumi.String("production"),
								},
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("Team"),
									Value:   pulumi.String("test"),
								},
							},
						},
					},
				},
				&dynatrace.AlertingProfileRuleArgs{
					DelayInMinutes: pulumi.Int(0),
					SeverityLevel:  pulumi.String("ERROR"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterArgs{
							IncludeMode: pulumi.String("INCLUDE_ALL"),
							TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("EnvironmentC"),
									Value:   pulumi.String("production"),
								},
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("Team"),
									Value:   pulumi.String("test"),
								},
							},
						},
					},
				},
				&dynatrace.AlertingProfileRuleArgs{
					DelayInMinutes: pulumi.Int(0),
					SeverityLevel:  pulumi.String("MONITORING_UNAVAILABLE"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterArgs{
							IncludeMode: pulumi.String("INCLUDE_ALL"),
							TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("EnvironmentD"),
									Value:   pulumi.String("production"),
								},
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("Team"),
									Value:   pulumi.String("test"),
								},
							},
						},
					},
				},
				&dynatrace.AlertingProfileRuleArgs{
					DelayInMinutes: pulumi.Int(0),
					SeverityLevel:  pulumi.String("PERFORMANCE"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterArgs{
							IncludeMode: pulumi.String("INCLUDE_ALL"),
							TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("EnvironmentE"),
									Value:   pulumi.String("production"),
								},
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("Team"),
									Value:   pulumi.String("test"),
								},
							},
						},
					},
				},
				&dynatrace.AlertingProfileRuleArgs{
					DelayInMinutes: pulumi.Int(0),
					SeverityLevel:  pulumi.String("RESOURCE_CONTENTION"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterArgs{
							IncludeMode: pulumi.String("INCLUDE_ALL"),
							TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("EnvironmentF"),
									Value:   pulumi.String("production"),
								},
								&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
									Context: pulumi.String("CONTEXTLESS"),
									Key:     pulumi.String("Team"),
									Value:   pulumi.String("test"),
								},
							},
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;

return await Deployment.RunAsync(() => 
{
    var _name_ = new Dynatrace.AlertingProfile("#name#", new()
    {
        DisplayName = "#name#",
        MzId = "",
        Rules = new[]
        {
            new Dynatrace.Inputs.AlertingProfileRuleArgs
            {
                DelayInMinutes = 0,
                SeverityLevel = "AVAILABILITY",
                TagFilters = new[]
                {
                    new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                    {
                        IncludeMode = "INCLUDE_ALL",
                        TagFilters = new[]
                        {
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "EnvironmentA",
                                Value = "production",
                            },
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "Team",
                                Value = "test",
                            },
                        },
                    },
                },
            },
            new Dynatrace.Inputs.AlertingProfileRuleArgs
            {
                DelayInMinutes = 0,
                SeverityLevel = "CUSTOM_ALERT",
                TagFilters = new[]
                {
                    new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                    {
                        IncludeMode = "INCLUDE_ALL",
                        TagFilters = new[]
                        {
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "EnvironmentB",
                                Value = "production",
                            },
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "Team",
                                Value = "test",
                            },
                        },
                    },
                },
            },
            new Dynatrace.Inputs.AlertingProfileRuleArgs
            {
                DelayInMinutes = 0,
                SeverityLevel = "ERROR",
                TagFilters = new[]
                {
                    new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                    {
                        IncludeMode = "INCLUDE_ALL",
                        TagFilters = new[]
                        {
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "EnvironmentC",
                                Value = "production",
                            },
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "Team",
                                Value = "test",
                            },
                        },
                    },
                },
            },
            new Dynatrace.Inputs.AlertingProfileRuleArgs
            {
                DelayInMinutes = 0,
                SeverityLevel = "MONITORING_UNAVAILABLE",
                TagFilters = new[]
                {
                    new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                    {
                        IncludeMode = "INCLUDE_ALL",
                        TagFilters = new[]
                        {
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "EnvironmentD",
                                Value = "production",
                            },
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "Team",
                                Value = "test",
                            },
                        },
                    },
                },
            },
            new Dynatrace.Inputs.AlertingProfileRuleArgs
            {
                DelayInMinutes = 0,
                SeverityLevel = "PERFORMANCE",
                TagFilters = new[]
                {
                    new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                    {
                        IncludeMode = "INCLUDE_ALL",
                        TagFilters = new[]
                        {
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "EnvironmentE",
                                Value = "production",
                            },
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "Team",
                                Value = "test",
                            },
                        },
                    },
                },
            },
            new Dynatrace.Inputs.AlertingProfileRuleArgs
            {
                DelayInMinutes = 0,
                SeverityLevel = "RESOURCE_CONTENTION",
                TagFilters = new[]
                {
                    new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                    {
                        IncludeMode = "INCLUDE_ALL",
                        TagFilters = new[]
                        {
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "EnvironmentF",
                                Value = "production",
                            },
                            new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                            {
                                Context = "CONTEXTLESS",
                                Key = "Team",
                                Value = "test",
                            },
                        },
                    },
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.AlertingProfile;
import com.pulumi.dynatrace.AlertingProfileArgs;
import com.pulumi.dynatrace.inputs.AlertingProfileRuleArgs;
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 AlertingProfile("#name#", AlertingProfileArgs.builder()
            .displayName("#name#")
            .mzId("")
            .rules(            
                AlertingProfileRuleArgs.builder()
                    .delayInMinutes(0)
                    .severityLevel("AVAILABILITY")
                    .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
                        .includeMode("INCLUDE_ALL")
                        .tagFilters(                        
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("EnvironmentA")
                                .value("production")
                                .build(),
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("Team")
                                .value("test")
                                .build())
                        .build())
                    .build(),
                AlertingProfileRuleArgs.builder()
                    .delayInMinutes(0)
                    .severityLevel("CUSTOM_ALERT")
                    .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
                        .includeMode("INCLUDE_ALL")
                        .tagFilters(                        
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("EnvironmentB")
                                .value("production")
                                .build(),
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("Team")
                                .value("test")
                                .build())
                        .build())
                    .build(),
                AlertingProfileRuleArgs.builder()
                    .delayInMinutes(0)
                    .severityLevel("ERROR")
                    .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
                        .includeMode("INCLUDE_ALL")
                        .tagFilters(                        
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("EnvironmentC")
                                .value("production")
                                .build(),
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("Team")
                                .value("test")
                                .build())
                        .build())
                    .build(),
                AlertingProfileRuleArgs.builder()
                    .delayInMinutes(0)
                    .severityLevel("MONITORING_UNAVAILABLE")
                    .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
                        .includeMode("INCLUDE_ALL")
                        .tagFilters(                        
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("EnvironmentD")
                                .value("production")
                                .build(),
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("Team")
                                .value("test")
                                .build())
                        .build())
                    .build(),
                AlertingProfileRuleArgs.builder()
                    .delayInMinutes(0)
                    .severityLevel("PERFORMANCE")
                    .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
                        .includeMode("INCLUDE_ALL")
                        .tagFilters(                        
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("EnvironmentE")
                                .value("production")
                                .build(),
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("Team")
                                .value("test")
                                .build())
                        .build())
                    .build(),
                AlertingProfileRuleArgs.builder()
                    .delayInMinutes(0)
                    .severityLevel("RESOURCE_CONTENTION")
                    .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
                        .includeMode("INCLUDE_ALL")
                        .tagFilters(                        
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("EnvironmentF")
                                .value("production")
                                .build(),
                            AlertingProfileRuleTagFilterTagFilterArgs.builder()
                                .context("CONTEXTLESS")
                                .key("Team")
                                .value("test")
                                .build())
                        .build())
                    .build())
            .build());

    }
}
Copy
resources:
  '#name#':
    type: dynatrace:AlertingProfile
    properties:
      displayName: '#name#'
      mzId: ""
      rules:
        - delayInMinutes: 0
          severityLevel: AVAILABILITY
          tagFilters:
            - includeMode: INCLUDE_ALL
              tagFilters:
                - context: CONTEXTLESS
                  key: EnvironmentA
                  value: production
                - context: CONTEXTLESS
                  key: Team
                  value: test
        - delayInMinutes: 0
          severityLevel: CUSTOM_ALERT
          tagFilters:
            - includeMode: INCLUDE_ALL
              tagFilters:
                - context: CONTEXTLESS
                  key: EnvironmentB
                  value: production
                - context: CONTEXTLESS
                  key: Team
                  value: test
        - delayInMinutes: 0
          severityLevel: ERROR
          tagFilters:
            - includeMode: INCLUDE_ALL
              tagFilters:
                - context: CONTEXTLESS
                  key: EnvironmentC
                  value: production
                - context: CONTEXTLESS
                  key: Team
                  value: test
        - delayInMinutes: 0
          severityLevel: MONITORING_UNAVAILABLE
          tagFilters:
            - includeMode: INCLUDE_ALL
              tagFilters:
                - context: CONTEXTLESS
                  key: EnvironmentD
                  value: production
                - context: CONTEXTLESS
                  key: Team
                  value: test
        - delayInMinutes: 0
          severityLevel: PERFORMANCE
          tagFilters:
            - includeMode: INCLUDE_ALL
              tagFilters:
                - context: CONTEXTLESS
                  key: EnvironmentE
                  value: production
                - context: CONTEXTLESS
                  key: Team
                  value: test
        - delayInMinutes: 0
          severityLevel: RESOURCE_CONTENTION
          tagFilters:
            - includeMode: INCLUDE_ALL
              tagFilters:
                - context: CONTEXTLESS
                  key: EnvironmentF
                  value: production
                - context: CONTEXTLESS
                  key: Team
                  value: test
Copy

Create AlertingProfile Resource

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

Constructor syntax

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

@overload
def AlertingProfile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    display_name: Optional[str] = None,
                    event_type_filters: Optional[Sequence[AlertingProfileEventTypeFilterArgs]] = None,
                    metadata: Optional[AlertingProfileMetadataArgs] = None,
                    mz_id: Optional[str] = None,
                    rules: Optional[Sequence[AlertingProfileRuleArgs]] = None,
                    unknowns: Optional[str] = None)
func NewAlertingProfile(ctx *Context, name string, args AlertingProfileArgs, opts ...ResourceOption) (*AlertingProfile, error)
public AlertingProfile(string name, AlertingProfileArgs args, CustomResourceOptions? opts = null)
public AlertingProfile(String name, AlertingProfileArgs args)
public AlertingProfile(String name, AlertingProfileArgs args, CustomResourceOptions options)
type: dynatrace:AlertingProfile
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. AlertingProfileArgs
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. AlertingProfileArgs
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. AlertingProfileArgs
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. AlertingProfileArgs
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. AlertingProfileArgs
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 alertingProfileResource = new Dynatrace.AlertingProfile("alertingProfileResource", new()
{
    DisplayName = "string",
    EventTypeFilters = new[]
    {
        new Dynatrace.Inputs.AlertingProfileEventTypeFilterArgs
        {
            CustomEventFilters = new[]
            {
                new Dynatrace.Inputs.AlertingProfileEventTypeFilterCustomEventFilterArgs
                {
                    CustomDescriptionFilters = new[]
                    {
                        new Dynatrace.Inputs.AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilterArgs
                        {
                            Operator = "string",
                            Value = "string",
                            CaseInsensitive = false,
                            Enabled = false,
                            Negate = false,
                            Unknowns = "string",
                        },
                    },
                    CustomTitleFilters = new[]
                    {
                        new Dynatrace.Inputs.AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilterArgs
                        {
                            Operator = "string",
                            Value = "string",
                            CaseInsensitive = false,
                            Enabled = false,
                            Negate = false,
                            Unknowns = "string",
                        },
                    },
                    Unknowns = "string",
                },
            },
            PredefinedEventFilters = new[]
            {
                new Dynatrace.Inputs.AlertingProfileEventTypeFilterPredefinedEventFilterArgs
                {
                    EventType = "string",
                    Negate = false,
                    Unknowns = "string",
                },
            },
            Unknowns = "string",
        },
    },
    MzId = "string",
    Rules = new[]
    {
        new Dynatrace.Inputs.AlertingProfileRuleArgs
        {
            DelayInMinutes = 0,
            SeverityLevel = "string",
            TagFilters = new[]
            {
                new Dynatrace.Inputs.AlertingProfileRuleTagFilterArgs
                {
                    IncludeMode = "string",
                    TagFilters = new[]
                    {
                        new Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilterArgs
                        {
                            Context = "string",
                            Key = "string",
                            Value = "string",
                        },
                    },
                    Unknowns = "string",
                },
            },
            Unknowns = "string",
        },
    },
    Unknowns = "string",
});
Copy
example, err := dynatrace.NewAlertingProfile(ctx, "alertingProfileResource", &dynatrace.AlertingProfileArgs{
	DisplayName: pulumi.String("string"),
	EventTypeFilters: dynatrace.AlertingProfileEventTypeFilterArray{
		&dynatrace.AlertingProfileEventTypeFilterArgs{
			CustomEventFilters: dynatrace.AlertingProfileEventTypeFilterCustomEventFilterArray{
				&dynatrace.AlertingProfileEventTypeFilterCustomEventFilterArgs{
					CustomDescriptionFilters: dynatrace.AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilterArray{
						&dynatrace.AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilterArgs{
							Operator:        pulumi.String("string"),
							Value:           pulumi.String("string"),
							CaseInsensitive: pulumi.Bool(false),
							Enabled:         pulumi.Bool(false),
							Negate:          pulumi.Bool(false),
							Unknowns:        pulumi.String("string"),
						},
					},
					CustomTitleFilters: dynatrace.AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilterArray{
						&dynatrace.AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilterArgs{
							Operator:        pulumi.String("string"),
							Value:           pulumi.String("string"),
							CaseInsensitive: pulumi.Bool(false),
							Enabled:         pulumi.Bool(false),
							Negate:          pulumi.Bool(false),
							Unknowns:        pulumi.String("string"),
						},
					},
					Unknowns: pulumi.String("string"),
				},
			},
			PredefinedEventFilters: dynatrace.AlertingProfileEventTypeFilterPredefinedEventFilterArray{
				&dynatrace.AlertingProfileEventTypeFilterPredefinedEventFilterArgs{
					EventType: pulumi.String("string"),
					Negate:    pulumi.Bool(false),
					Unknowns:  pulumi.String("string"),
				},
			},
			Unknowns: pulumi.String("string"),
		},
	},
	MzId: pulumi.String("string"),
	Rules: dynatrace.AlertingProfileRuleArray{
		&dynatrace.AlertingProfileRuleArgs{
			DelayInMinutes: pulumi.Int(0),
			SeverityLevel:  pulumi.String("string"),
			TagFilters: dynatrace.AlertingProfileRuleTagFilterArray{
				&dynatrace.AlertingProfileRuleTagFilterArgs{
					IncludeMode: pulumi.String("string"),
					TagFilters: dynatrace.AlertingProfileRuleTagFilterTagFilterArray{
						&dynatrace.AlertingProfileRuleTagFilterTagFilterArgs{
							Context: pulumi.String("string"),
							Key:     pulumi.String("string"),
							Value:   pulumi.String("string"),
						},
					},
					Unknowns: pulumi.String("string"),
				},
			},
			Unknowns: pulumi.String("string"),
		},
	},
	Unknowns: pulumi.String("string"),
})
Copy
var alertingProfileResource = new AlertingProfile("alertingProfileResource", AlertingProfileArgs.builder()
    .displayName("string")
    .eventTypeFilters(AlertingProfileEventTypeFilterArgs.builder()
        .customEventFilters(AlertingProfileEventTypeFilterCustomEventFilterArgs.builder()
            .customDescriptionFilters(AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilterArgs.builder()
                .operator("string")
                .value("string")
                .caseInsensitive(false)
                .enabled(false)
                .negate(false)
                .unknowns("string")
                .build())
            .customTitleFilters(AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilterArgs.builder()
                .operator("string")
                .value("string")
                .caseInsensitive(false)
                .enabled(false)
                .negate(false)
                .unknowns("string")
                .build())
            .unknowns("string")
            .build())
        .predefinedEventFilters(AlertingProfileEventTypeFilterPredefinedEventFilterArgs.builder()
            .eventType("string")
            .negate(false)
            .unknowns("string")
            .build())
        .unknowns("string")
        .build())
    .mzId("string")
    .rules(AlertingProfileRuleArgs.builder()
        .delayInMinutes(0)
        .severityLevel("string")
        .tagFilters(AlertingProfileRuleTagFilterArgs.builder()
            .includeMode("string")
            .tagFilters(AlertingProfileRuleTagFilterTagFilterArgs.builder()
                .context("string")
                .key("string")
                .value("string")
                .build())
            .unknowns("string")
            .build())
        .unknowns("string")
        .build())
    .unknowns("string")
    .build());
Copy
alerting_profile_resource = dynatrace.AlertingProfile("alertingProfileResource",
    display_name="string",
    event_type_filters=[{
        "custom_event_filters": [{
            "custom_description_filters": [{
                "operator": "string",
                "value": "string",
                "case_insensitive": False,
                "enabled": False,
                "negate": False,
                "unknowns": "string",
            }],
            "custom_title_filters": [{
                "operator": "string",
                "value": "string",
                "case_insensitive": False,
                "enabled": False,
                "negate": False,
                "unknowns": "string",
            }],
            "unknowns": "string",
        }],
        "predefined_event_filters": [{
            "event_type": "string",
            "negate": False,
            "unknowns": "string",
        }],
        "unknowns": "string",
    }],
    mz_id="string",
    rules=[{
        "delay_in_minutes": 0,
        "severity_level": "string",
        "tag_filters": [{
            "include_mode": "string",
            "tag_filters": [{
                "context": "string",
                "key": "string",
                "value": "string",
            }],
            "unknowns": "string",
        }],
        "unknowns": "string",
    }],
    unknowns="string")
Copy
const alertingProfileResource = new dynatrace.AlertingProfile("alertingProfileResource", {
    displayName: "string",
    eventTypeFilters: [{
        customEventFilters: [{
            customDescriptionFilters: [{
                operator: "string",
                value: "string",
                caseInsensitive: false,
                enabled: false,
                negate: false,
                unknowns: "string",
            }],
            customTitleFilters: [{
                operator: "string",
                value: "string",
                caseInsensitive: false,
                enabled: false,
                negate: false,
                unknowns: "string",
            }],
            unknowns: "string",
        }],
        predefinedEventFilters: [{
            eventType: "string",
            negate: false,
            unknowns: "string",
        }],
        unknowns: "string",
    }],
    mzId: "string",
    rules: [{
        delayInMinutes: 0,
        severityLevel: "string",
        tagFilters: [{
            includeMode: "string",
            tagFilters: [{
                context: "string",
                key: "string",
                value: "string",
            }],
            unknowns: "string",
        }],
        unknowns: "string",
    }],
    unknowns: "string",
});
Copy
type: dynatrace:AlertingProfile
properties:
    displayName: string
    eventTypeFilters:
        - customEventFilters:
            - customDescriptionFilters:
                - caseInsensitive: false
                  enabled: false
                  negate: false
                  operator: string
                  unknowns: string
                  value: string
              customTitleFilters:
                - caseInsensitive: false
                  enabled: false
                  negate: false
                  operator: string
                  unknowns: string
                  value: string
              unknowns: string
          predefinedEventFilters:
            - eventType: string
              negate: false
              unknowns: string
          unknowns: string
    mzId: string
    rules:
        - delayInMinutes: 0
          severityLevel: string
          tagFilters:
            - includeMode: string
              tagFilters:
                - context: string
                  key: string
                  value: string
              unknowns: string
          unknowns: string
    unknowns: string
Copy

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

DisplayName This property is required. string
The name of the alerting profile, displayed in the UI
EventTypeFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileEventTypeFilter>
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
Metadata Pulumiverse.Dynatrace.Inputs.AlertingProfileMetadata
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

MzId string
The ID of the management zone to which the alerting profile applies
Rules List<Pulumiverse.Dynatrace.Inputs.AlertingProfileRule>
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
DisplayName This property is required. string
The name of the alerting profile, displayed in the UI
EventTypeFilters []AlertingProfileEventTypeFilterArgs
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
Metadata AlertingProfileMetadataArgs
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

MzId string
The ID of the management zone to which the alerting profile applies
Rules []AlertingProfileRuleArgs
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
displayName This property is required. String
The name of the alerting profile, displayed in the UI
eventTypeFilters List<AlertingProfileEventTypeFilter>
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata AlertingProfileMetadata
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mzId String
The ID of the management zone to which the alerting profile applies
rules List<AlertingProfileRule>
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
displayName This property is required. string
The name of the alerting profile, displayed in the UI
eventTypeFilters AlertingProfileEventTypeFilter[]
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata AlertingProfileMetadata
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mzId string
The ID of the management zone to which the alerting profile applies
rules AlertingProfileRule[]
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
display_name This property is required. str
The name of the alerting profile, displayed in the UI
event_type_filters Sequence[AlertingProfileEventTypeFilterArgs]
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata AlertingProfileMetadataArgs
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mz_id str
The ID of the management zone to which the alerting profile applies
rules Sequence[AlertingProfileRuleArgs]
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
displayName This property is required. String
The name of the alerting profile, displayed in the UI
eventTypeFilters List<Property Map>
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata Property Map
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mzId String
The ID of the management zone to which the alerting profile applies
rules List<Property Map>
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

Outputs

All input properties are implicitly available as output properties. Additionally, the AlertingProfile 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 AlertingProfile Resource

Get an existing AlertingProfile 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?: AlertingProfileState, opts?: CustomResourceOptions): AlertingProfile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        display_name: Optional[str] = None,
        event_type_filters: Optional[Sequence[AlertingProfileEventTypeFilterArgs]] = None,
        metadata: Optional[AlertingProfileMetadataArgs] = None,
        mz_id: Optional[str] = None,
        rules: Optional[Sequence[AlertingProfileRuleArgs]] = None,
        unknowns: Optional[str] = None) -> AlertingProfile
func GetAlertingProfile(ctx *Context, name string, id IDInput, state *AlertingProfileState, opts ...ResourceOption) (*AlertingProfile, error)
public static AlertingProfile Get(string name, Input<string> id, AlertingProfileState? state, CustomResourceOptions? opts = null)
public static AlertingProfile get(String name, Output<String> id, AlertingProfileState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:AlertingProfile    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:
DisplayName string
The name of the alerting profile, displayed in the UI
EventTypeFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileEventTypeFilter>
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
Metadata Pulumiverse.Dynatrace.Inputs.AlertingProfileMetadata
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

MzId string
The ID of the management zone to which the alerting profile applies
Rules List<Pulumiverse.Dynatrace.Inputs.AlertingProfileRule>
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
DisplayName string
The name of the alerting profile, displayed in the UI
EventTypeFilters []AlertingProfileEventTypeFilterArgs
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
Metadata AlertingProfileMetadataArgs
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

MzId string
The ID of the management zone to which the alerting profile applies
Rules []AlertingProfileRuleArgs
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
displayName String
The name of the alerting profile, displayed in the UI
eventTypeFilters List<AlertingProfileEventTypeFilter>
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata AlertingProfileMetadata
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mzId String
The ID of the management zone to which the alerting profile applies
rules List<AlertingProfileRule>
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
displayName string
The name of the alerting profile, displayed in the UI
eventTypeFilters AlertingProfileEventTypeFilter[]
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata AlertingProfileMetadata
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mzId string
The ID of the management zone to which the alerting profile applies
rules AlertingProfileRule[]
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
display_name str
The name of the alerting profile, displayed in the UI
event_type_filters Sequence[AlertingProfileEventTypeFilterArgs]
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata AlertingProfileMetadataArgs
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mz_id str
The ID of the management zone to which the alerting profile applies
rules Sequence[AlertingProfileRuleArgs]
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
displayName String
The name of the alerting profile, displayed in the UI
eventTypeFilters List<Property Map>
The list of event filters. For all filters that are negated inside of these event filters, that is all Predefined as well as Custom (Title and/or Description) ones the AND logic applies. For all non-negated ones the OR logic applies. Between these two groups, negated and non-negated, the AND logic applies. If you specify both severity rule and event filter, the AND logic applies
metadata Property Map
metadata exists for backwards compatibility but shouldn't get specified anymore

Deprecated: metadata exists for backwards compatibility but shouldn't get specified anymore

mzId String
The ID of the management zone to which the alerting profile applies
rules List<Property Map>
A list of rules for management zone usage. Each rule is evaluated independently of all other rules
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

Supporting Types

AlertingProfileEventTypeFilter
, AlertingProfileEventTypeFilterArgs

CustomEventFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileEventTypeFilterCustomEventFilter>
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
PredefinedEventFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileEventTypeFilterPredefinedEventFilter>
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
CustomEventFilters []AlertingProfileEventTypeFilterCustomEventFilter
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
PredefinedEventFilters []AlertingProfileEventTypeFilterPredefinedEventFilter
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
customEventFilters List<AlertingProfileEventTypeFilterCustomEventFilter>
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
predefinedEventFilters List<AlertingProfileEventTypeFilterPredefinedEventFilter>
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
customEventFilters AlertingProfileEventTypeFilterCustomEventFilter[]
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
predefinedEventFilters AlertingProfileEventTypeFilterPredefinedEventFilter[]
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
custom_event_filters Sequence[AlertingProfileEventTypeFilterCustomEventFilter]
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
predefined_event_filters Sequence[AlertingProfileEventTypeFilterPredefinedEventFilter]
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
customEventFilters List<Property Map>
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
predefinedEventFilters List<Property Map>
Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileEventTypeFilterCustomEventFilter
, AlertingProfileEventTypeFilterCustomEventFilterArgs

CustomDescriptionFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilter>
Configuration of a matching filter
CustomTitleFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilter>
Configuration of a matching filter
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
CustomDescriptionFilters []AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilter
Configuration of a matching filter
CustomTitleFilters []AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilter
Configuration of a matching filter
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
customDescriptionFilters List<AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilter>
Configuration of a matching filter
customTitleFilters List<AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilter>
Configuration of a matching filter
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
customDescriptionFilters AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilter[]
Configuration of a matching filter
customTitleFilters AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilter[]
Configuration of a matching filter
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
custom_description_filters Sequence[AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilter]
Configuration of a matching filter
custom_title_filters Sequence[AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilter]
Configuration of a matching filter
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
customDescriptionFilters List<Property Map>
Configuration of a matching filter
customTitleFilters List<Property Map>
Configuration of a matching filter
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilter
, AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilterArgs

Operator This property is required. string
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
Value This property is required. string
The value to compare to
CaseInsensitive bool
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
Enabled bool
The filter is enabled (true) or disabled (false)
Negate bool
Reverses the comparison operator. For example it turns the begins with into does not begin with
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
Operator This property is required. string
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
Value This property is required. string
The value to compare to
CaseInsensitive bool
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
Enabled bool
The filter is enabled (true) or disabled (false)
Negate bool
Reverses the comparison operator. For example it turns the begins with into does not begin with
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. String
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. String
The value to compare to
caseInsensitive Boolean
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled Boolean
The filter is enabled (true) or disabled (false)
negate Boolean
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. string
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. string
The value to compare to
caseInsensitive boolean
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled boolean
The filter is enabled (true) or disabled (false)
negate boolean
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. str
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. str
The value to compare to
case_insensitive bool
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled bool
The filter is enabled (true) or disabled (false)
negate bool
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. String
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. String
The value to compare to
caseInsensitive Boolean
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled Boolean
The filter is enabled (true) or disabled (false)
negate Boolean
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilter
, AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilterArgs

Operator This property is required. string
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
Value This property is required. string
The value to compare to
CaseInsensitive bool
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
Enabled bool
The filter is enabled (true) or disabled (false)
Negate bool
Reverses the comparison operator. For example it turns the begins with into does not begin with
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
Operator This property is required. string
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
Value This property is required. string
The value to compare to
CaseInsensitive bool
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
Enabled bool
The filter is enabled (true) or disabled (false)
Negate bool
Reverses the comparison operator. For example it turns the begins with into does not begin with
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. String
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. String
The value to compare to
caseInsensitive Boolean
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled Boolean
The filter is enabled (true) or disabled (false)
negate Boolean
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. string
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. string
The value to compare to
caseInsensitive boolean
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled boolean
The filter is enabled (true) or disabled (false)
negate boolean
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. str
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. str
The value to compare to
case_insensitive bool
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled bool
The filter is enabled (true) or disabled (false)
negate bool
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
operator This property is required. String
Operator of the comparison. You can reverse it by setting negate to true. Possible values are BEGINS_WITH, CONTAINS, CONTAINS_REGEX, ENDS_WITH and EQUALS
value This property is required. String
The value to compare to
caseInsensitive Boolean
The condition is case sensitive (false) or case insensitive (true). If not set, then false is used, making the condition case sensitive
enabled Boolean
The filter is enabled (true) or disabled (false)
negate Boolean
Reverses the comparison operator. For example it turns the begins with into does not begin with
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileEventTypeFilterPredefinedEventFilter
, AlertingProfileEventTypeFilterPredefinedEventFilterArgs

EventType This property is required. string
The type of the predefined event. Possible values are APPLICATION_ERROR_RATE_INCREASED, APPLICATION_SLOWDOWN, APPLICATION_UNEXPECTED_HIGH_LOAD, APPLICATION_UNEXPECTED_LOW_LOAD, AWS_LAMBDA_HIGH_ERROR_RATE, CUSTOM_APPLICATION_ERROR_RATE_INCREASED, CUSTOM_APPLICATION_SLOWDOWN, CUSTOM_APPLICATION_UNEXPECTED_HIGH_LOAD, CUSTOM_APPLICATION_UNEXPECTED_LOW_LOAD, CUSTOM_APP_CRASH_RATE_INCREASED, DATABASE_CONNECTION_FAILURE, DATA_CENTER_SERVICE_PERFORMANCE_DEGRADATION, DATA_CENTER_SERVICE_UNAVAILABLE, EBS_VOLUME_HIGH_LATENCY, EC2_HIGH_CPU, ELB_HIGH_BACKEND_ERROR_RATE, ENTERPRICE_APPLICATION_PERFORMANCE_DEGRADATION, ENTERPRISE_APPLICATION_UNAVAILABLE, ESXI_GUEST_ACTIVE_SWAP_WAIT, ESXI_GUEST_CPU_LIMIT_REACHED, ESXI_HOST_CPU_SATURATION, ESXI_HOST_DATASTORE_LOW_DISK_SPACE, ESXI_HOST_DISK_QUEUE_SLOW, ESXI_HOST_DISK_SLOW, ESXI_HOST_MEMORY_SATURATION, ESXI_HOST_NETWORK_PROBLEMS, ESXI_HOST_OVERLOADED_STORAGE, ESXI_VM_IMPACT_HOST_CPU_SATURATION, ESXI_VM_IMPACT_HOST_MEMORY_SATURATION, EXTERNAL_SYNTHETIC_TEST_OUTAGE, EXTERNAL_SYNTHETIC_TEST_SLOWDOWN, HOST_OF_SERVICE_UNAVAILABLE, HTTP_CHECK_GLOBAL_OUTAGE, HTTP_CHECK_LOCAL_OUTAGE, HTTP_CHECK_TEST_LOCATION_SLOWDOWN, MOBILE_APPLICATION_ERROR_RATE_INCREASED, MOBILE_APPLICATION_SLOWDOWN, MOBILE_APPLICATION_UNEXPECTED_HIGH_LOAD, MOBILE_APPLICATION_UNEXPECTED_LOW_LOAD, MOBILE_APP_CRASH_RATE_INCREASED, MONITORING_UNAVAILABLE, OSI_DISK_LOW_INODES, OSI_GRACEFULLY_SHUTDOWN, OSI_HIGH_CPU, OSI_HIGH_MEMORY, OSI_LOW_DISK_SPACE, OSI_NIC_DROPPED_PACKETS_HIGH, OSI_NIC_ERRORS_HIGH, OSI_NIC_UTILIZATION_HIGH, OSI_SLOW_DISK, OSI_UNEXPECTEDLY_UNAVAILABLE, PGI_OF_SERVICE_UNAVAILABLE, PGI_UNAVAILABLE, PG_LOW_INSTANCE_COUNT, PROCESS_CRASHED, PROCESS_HIGH_GC_ACTIVITY, PROCESS_MEMORY_RESOURCE_EXHAUSTED, PROCESS_NA_HIGH_CONN_FAIL_RATE, PROCESS_NA_HIGH_LOSS_RATE, PROCESS_THREADS_RESOURCE_EXHAUSTED, RDS_HIGH_CPU, RDS_HIGH_LATENCY, RDS_LOW_MEMORY, RDS_LOW_STORAGE_SPACE, RDS_OF_SERVICE_UNAVAILABLE, RDS_RESTART_SEQUENCE, SERVICE_ERROR_RATE_INCREASED, SERVICE_SLOWDOWN, SERVICE_UNEXPECTED_HIGH_LOAD, SERVICE_UNEXPECTED_LOW_LOAD, SYNTHETIC_GLOBAL_OUTAGE, SYNTHETIC_LOCAL_OUTAGE, SYNTHETIC_NODE_OUTAGE, SYNTHETIC_PRIVATE_LOCATION_OUTAGE and SYNTHETIC_TEST_LOCATION_SLOWDOWN
Negate bool
The alert triggers when the problem of specified severity arises while the specified event is happening (false) or while the specified event is not happening (true). For example, if you chose the Slowdown (PERFORMANCE) severity and Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event with negate set to true, the alerting profile will trigger only when the slowdown problem is raised while there is no unexpected high traffic event. Consider the following use case as an example. The Slowdown (PERFORMANCE) severity rule is set. Depending on the configuration of the event filter (Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event is used as an example), the behavior of the alerting profile is one of the following:* **negate** is set to false: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set to true: The alert triggers when the slowdown problem is raised while there is no unexpected high traffic event. * no event rule is set: The alert triggers when the slowdown problem is raised, regardless of any events
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
EventType This property is required. string
The type of the predefined event. Possible values are APPLICATION_ERROR_RATE_INCREASED, APPLICATION_SLOWDOWN, APPLICATION_UNEXPECTED_HIGH_LOAD, APPLICATION_UNEXPECTED_LOW_LOAD, AWS_LAMBDA_HIGH_ERROR_RATE, CUSTOM_APPLICATION_ERROR_RATE_INCREASED, CUSTOM_APPLICATION_SLOWDOWN, CUSTOM_APPLICATION_UNEXPECTED_HIGH_LOAD, CUSTOM_APPLICATION_UNEXPECTED_LOW_LOAD, CUSTOM_APP_CRASH_RATE_INCREASED, DATABASE_CONNECTION_FAILURE, DATA_CENTER_SERVICE_PERFORMANCE_DEGRADATION, DATA_CENTER_SERVICE_UNAVAILABLE, EBS_VOLUME_HIGH_LATENCY, EC2_HIGH_CPU, ELB_HIGH_BACKEND_ERROR_RATE, ENTERPRICE_APPLICATION_PERFORMANCE_DEGRADATION, ENTERPRISE_APPLICATION_UNAVAILABLE, ESXI_GUEST_ACTIVE_SWAP_WAIT, ESXI_GUEST_CPU_LIMIT_REACHED, ESXI_HOST_CPU_SATURATION, ESXI_HOST_DATASTORE_LOW_DISK_SPACE, ESXI_HOST_DISK_QUEUE_SLOW, ESXI_HOST_DISK_SLOW, ESXI_HOST_MEMORY_SATURATION, ESXI_HOST_NETWORK_PROBLEMS, ESXI_HOST_OVERLOADED_STORAGE, ESXI_VM_IMPACT_HOST_CPU_SATURATION, ESXI_VM_IMPACT_HOST_MEMORY_SATURATION, EXTERNAL_SYNTHETIC_TEST_OUTAGE, EXTERNAL_SYNTHETIC_TEST_SLOWDOWN, HOST_OF_SERVICE_UNAVAILABLE, HTTP_CHECK_GLOBAL_OUTAGE, HTTP_CHECK_LOCAL_OUTAGE, HTTP_CHECK_TEST_LOCATION_SLOWDOWN, MOBILE_APPLICATION_ERROR_RATE_INCREASED, MOBILE_APPLICATION_SLOWDOWN, MOBILE_APPLICATION_UNEXPECTED_HIGH_LOAD, MOBILE_APPLICATION_UNEXPECTED_LOW_LOAD, MOBILE_APP_CRASH_RATE_INCREASED, MONITORING_UNAVAILABLE, OSI_DISK_LOW_INODES, OSI_GRACEFULLY_SHUTDOWN, OSI_HIGH_CPU, OSI_HIGH_MEMORY, OSI_LOW_DISK_SPACE, OSI_NIC_DROPPED_PACKETS_HIGH, OSI_NIC_ERRORS_HIGH, OSI_NIC_UTILIZATION_HIGH, OSI_SLOW_DISK, OSI_UNEXPECTEDLY_UNAVAILABLE, PGI_OF_SERVICE_UNAVAILABLE, PGI_UNAVAILABLE, PG_LOW_INSTANCE_COUNT, PROCESS_CRASHED, PROCESS_HIGH_GC_ACTIVITY, PROCESS_MEMORY_RESOURCE_EXHAUSTED, PROCESS_NA_HIGH_CONN_FAIL_RATE, PROCESS_NA_HIGH_LOSS_RATE, PROCESS_THREADS_RESOURCE_EXHAUSTED, RDS_HIGH_CPU, RDS_HIGH_LATENCY, RDS_LOW_MEMORY, RDS_LOW_STORAGE_SPACE, RDS_OF_SERVICE_UNAVAILABLE, RDS_RESTART_SEQUENCE, SERVICE_ERROR_RATE_INCREASED, SERVICE_SLOWDOWN, SERVICE_UNEXPECTED_HIGH_LOAD, SERVICE_UNEXPECTED_LOW_LOAD, SYNTHETIC_GLOBAL_OUTAGE, SYNTHETIC_LOCAL_OUTAGE, SYNTHETIC_NODE_OUTAGE, SYNTHETIC_PRIVATE_LOCATION_OUTAGE and SYNTHETIC_TEST_LOCATION_SLOWDOWN
Negate bool
The alert triggers when the problem of specified severity arises while the specified event is happening (false) or while the specified event is not happening (true). For example, if you chose the Slowdown (PERFORMANCE) severity and Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event with negate set to true, the alerting profile will trigger only when the slowdown problem is raised while there is no unexpected high traffic event. Consider the following use case as an example. The Slowdown (PERFORMANCE) severity rule is set. Depending on the configuration of the event filter (Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event is used as an example), the behavior of the alerting profile is one of the following:* **negate** is set to false: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set to true: The alert triggers when the slowdown problem is raised while there is no unexpected high traffic event. * no event rule is set: The alert triggers when the slowdown problem is raised, regardless of any events
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
eventType This property is required. String
The type of the predefined event. Possible values are APPLICATION_ERROR_RATE_INCREASED, APPLICATION_SLOWDOWN, APPLICATION_UNEXPECTED_HIGH_LOAD, APPLICATION_UNEXPECTED_LOW_LOAD, AWS_LAMBDA_HIGH_ERROR_RATE, CUSTOM_APPLICATION_ERROR_RATE_INCREASED, CUSTOM_APPLICATION_SLOWDOWN, CUSTOM_APPLICATION_UNEXPECTED_HIGH_LOAD, CUSTOM_APPLICATION_UNEXPECTED_LOW_LOAD, CUSTOM_APP_CRASH_RATE_INCREASED, DATABASE_CONNECTION_FAILURE, DATA_CENTER_SERVICE_PERFORMANCE_DEGRADATION, DATA_CENTER_SERVICE_UNAVAILABLE, EBS_VOLUME_HIGH_LATENCY, EC2_HIGH_CPU, ELB_HIGH_BACKEND_ERROR_RATE, ENTERPRICE_APPLICATION_PERFORMANCE_DEGRADATION, ENTERPRISE_APPLICATION_UNAVAILABLE, ESXI_GUEST_ACTIVE_SWAP_WAIT, ESXI_GUEST_CPU_LIMIT_REACHED, ESXI_HOST_CPU_SATURATION, ESXI_HOST_DATASTORE_LOW_DISK_SPACE, ESXI_HOST_DISK_QUEUE_SLOW, ESXI_HOST_DISK_SLOW, ESXI_HOST_MEMORY_SATURATION, ESXI_HOST_NETWORK_PROBLEMS, ESXI_HOST_OVERLOADED_STORAGE, ESXI_VM_IMPACT_HOST_CPU_SATURATION, ESXI_VM_IMPACT_HOST_MEMORY_SATURATION, EXTERNAL_SYNTHETIC_TEST_OUTAGE, EXTERNAL_SYNTHETIC_TEST_SLOWDOWN, HOST_OF_SERVICE_UNAVAILABLE, HTTP_CHECK_GLOBAL_OUTAGE, HTTP_CHECK_LOCAL_OUTAGE, HTTP_CHECK_TEST_LOCATION_SLOWDOWN, MOBILE_APPLICATION_ERROR_RATE_INCREASED, MOBILE_APPLICATION_SLOWDOWN, MOBILE_APPLICATION_UNEXPECTED_HIGH_LOAD, MOBILE_APPLICATION_UNEXPECTED_LOW_LOAD, MOBILE_APP_CRASH_RATE_INCREASED, MONITORING_UNAVAILABLE, OSI_DISK_LOW_INODES, OSI_GRACEFULLY_SHUTDOWN, OSI_HIGH_CPU, OSI_HIGH_MEMORY, OSI_LOW_DISK_SPACE, OSI_NIC_DROPPED_PACKETS_HIGH, OSI_NIC_ERRORS_HIGH, OSI_NIC_UTILIZATION_HIGH, OSI_SLOW_DISK, OSI_UNEXPECTEDLY_UNAVAILABLE, PGI_OF_SERVICE_UNAVAILABLE, PGI_UNAVAILABLE, PG_LOW_INSTANCE_COUNT, PROCESS_CRASHED, PROCESS_HIGH_GC_ACTIVITY, PROCESS_MEMORY_RESOURCE_EXHAUSTED, PROCESS_NA_HIGH_CONN_FAIL_RATE, PROCESS_NA_HIGH_LOSS_RATE, PROCESS_THREADS_RESOURCE_EXHAUSTED, RDS_HIGH_CPU, RDS_HIGH_LATENCY, RDS_LOW_MEMORY, RDS_LOW_STORAGE_SPACE, RDS_OF_SERVICE_UNAVAILABLE, RDS_RESTART_SEQUENCE, SERVICE_ERROR_RATE_INCREASED, SERVICE_SLOWDOWN, SERVICE_UNEXPECTED_HIGH_LOAD, SERVICE_UNEXPECTED_LOW_LOAD, SYNTHETIC_GLOBAL_OUTAGE, SYNTHETIC_LOCAL_OUTAGE, SYNTHETIC_NODE_OUTAGE, SYNTHETIC_PRIVATE_LOCATION_OUTAGE and SYNTHETIC_TEST_LOCATION_SLOWDOWN
negate Boolean
The alert triggers when the problem of specified severity arises while the specified event is happening (false) or while the specified event is not happening (true). For example, if you chose the Slowdown (PERFORMANCE) severity and Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event with negate set to true, the alerting profile will trigger only when the slowdown problem is raised while there is no unexpected high traffic event. Consider the following use case as an example. The Slowdown (PERFORMANCE) severity rule is set. Depending on the configuration of the event filter (Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event is used as an example), the behavior of the alerting profile is one of the following:* **negate** is set to false: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set to true: The alert triggers when the slowdown problem is raised while there is no unexpected high traffic event. * no event rule is set: The alert triggers when the slowdown problem is raised, regardless of any events
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
eventType This property is required. string
The type of the predefined event. Possible values are APPLICATION_ERROR_RATE_INCREASED, APPLICATION_SLOWDOWN, APPLICATION_UNEXPECTED_HIGH_LOAD, APPLICATION_UNEXPECTED_LOW_LOAD, AWS_LAMBDA_HIGH_ERROR_RATE, CUSTOM_APPLICATION_ERROR_RATE_INCREASED, CUSTOM_APPLICATION_SLOWDOWN, CUSTOM_APPLICATION_UNEXPECTED_HIGH_LOAD, CUSTOM_APPLICATION_UNEXPECTED_LOW_LOAD, CUSTOM_APP_CRASH_RATE_INCREASED, DATABASE_CONNECTION_FAILURE, DATA_CENTER_SERVICE_PERFORMANCE_DEGRADATION, DATA_CENTER_SERVICE_UNAVAILABLE, EBS_VOLUME_HIGH_LATENCY, EC2_HIGH_CPU, ELB_HIGH_BACKEND_ERROR_RATE, ENTERPRICE_APPLICATION_PERFORMANCE_DEGRADATION, ENTERPRISE_APPLICATION_UNAVAILABLE, ESXI_GUEST_ACTIVE_SWAP_WAIT, ESXI_GUEST_CPU_LIMIT_REACHED, ESXI_HOST_CPU_SATURATION, ESXI_HOST_DATASTORE_LOW_DISK_SPACE, ESXI_HOST_DISK_QUEUE_SLOW, ESXI_HOST_DISK_SLOW, ESXI_HOST_MEMORY_SATURATION, ESXI_HOST_NETWORK_PROBLEMS, ESXI_HOST_OVERLOADED_STORAGE, ESXI_VM_IMPACT_HOST_CPU_SATURATION, ESXI_VM_IMPACT_HOST_MEMORY_SATURATION, EXTERNAL_SYNTHETIC_TEST_OUTAGE, EXTERNAL_SYNTHETIC_TEST_SLOWDOWN, HOST_OF_SERVICE_UNAVAILABLE, HTTP_CHECK_GLOBAL_OUTAGE, HTTP_CHECK_LOCAL_OUTAGE, HTTP_CHECK_TEST_LOCATION_SLOWDOWN, MOBILE_APPLICATION_ERROR_RATE_INCREASED, MOBILE_APPLICATION_SLOWDOWN, MOBILE_APPLICATION_UNEXPECTED_HIGH_LOAD, MOBILE_APPLICATION_UNEXPECTED_LOW_LOAD, MOBILE_APP_CRASH_RATE_INCREASED, MONITORING_UNAVAILABLE, OSI_DISK_LOW_INODES, OSI_GRACEFULLY_SHUTDOWN, OSI_HIGH_CPU, OSI_HIGH_MEMORY, OSI_LOW_DISK_SPACE, OSI_NIC_DROPPED_PACKETS_HIGH, OSI_NIC_ERRORS_HIGH, OSI_NIC_UTILIZATION_HIGH, OSI_SLOW_DISK, OSI_UNEXPECTEDLY_UNAVAILABLE, PGI_OF_SERVICE_UNAVAILABLE, PGI_UNAVAILABLE, PG_LOW_INSTANCE_COUNT, PROCESS_CRASHED, PROCESS_HIGH_GC_ACTIVITY, PROCESS_MEMORY_RESOURCE_EXHAUSTED, PROCESS_NA_HIGH_CONN_FAIL_RATE, PROCESS_NA_HIGH_LOSS_RATE, PROCESS_THREADS_RESOURCE_EXHAUSTED, RDS_HIGH_CPU, RDS_HIGH_LATENCY, RDS_LOW_MEMORY, RDS_LOW_STORAGE_SPACE, RDS_OF_SERVICE_UNAVAILABLE, RDS_RESTART_SEQUENCE, SERVICE_ERROR_RATE_INCREASED, SERVICE_SLOWDOWN, SERVICE_UNEXPECTED_HIGH_LOAD, SERVICE_UNEXPECTED_LOW_LOAD, SYNTHETIC_GLOBAL_OUTAGE, SYNTHETIC_LOCAL_OUTAGE, SYNTHETIC_NODE_OUTAGE, SYNTHETIC_PRIVATE_LOCATION_OUTAGE and SYNTHETIC_TEST_LOCATION_SLOWDOWN
negate boolean
The alert triggers when the problem of specified severity arises while the specified event is happening (false) or while the specified event is not happening (true). For example, if you chose the Slowdown (PERFORMANCE) severity and Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event with negate set to true, the alerting profile will trigger only when the slowdown problem is raised while there is no unexpected high traffic event. Consider the following use case as an example. The Slowdown (PERFORMANCE) severity rule is set. Depending on the configuration of the event filter (Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event is used as an example), the behavior of the alerting profile is one of the following:* **negate** is set to false: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set to true: The alert triggers when the slowdown problem is raised while there is no unexpected high traffic event. * no event rule is set: The alert triggers when the slowdown problem is raised, regardless of any events
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
event_type This property is required. str
The type of the predefined event. Possible values are APPLICATION_ERROR_RATE_INCREASED, APPLICATION_SLOWDOWN, APPLICATION_UNEXPECTED_HIGH_LOAD, APPLICATION_UNEXPECTED_LOW_LOAD, AWS_LAMBDA_HIGH_ERROR_RATE, CUSTOM_APPLICATION_ERROR_RATE_INCREASED, CUSTOM_APPLICATION_SLOWDOWN, CUSTOM_APPLICATION_UNEXPECTED_HIGH_LOAD, CUSTOM_APPLICATION_UNEXPECTED_LOW_LOAD, CUSTOM_APP_CRASH_RATE_INCREASED, DATABASE_CONNECTION_FAILURE, DATA_CENTER_SERVICE_PERFORMANCE_DEGRADATION, DATA_CENTER_SERVICE_UNAVAILABLE, EBS_VOLUME_HIGH_LATENCY, EC2_HIGH_CPU, ELB_HIGH_BACKEND_ERROR_RATE, ENTERPRICE_APPLICATION_PERFORMANCE_DEGRADATION, ENTERPRISE_APPLICATION_UNAVAILABLE, ESXI_GUEST_ACTIVE_SWAP_WAIT, ESXI_GUEST_CPU_LIMIT_REACHED, ESXI_HOST_CPU_SATURATION, ESXI_HOST_DATASTORE_LOW_DISK_SPACE, ESXI_HOST_DISK_QUEUE_SLOW, ESXI_HOST_DISK_SLOW, ESXI_HOST_MEMORY_SATURATION, ESXI_HOST_NETWORK_PROBLEMS, ESXI_HOST_OVERLOADED_STORAGE, ESXI_VM_IMPACT_HOST_CPU_SATURATION, ESXI_VM_IMPACT_HOST_MEMORY_SATURATION, EXTERNAL_SYNTHETIC_TEST_OUTAGE, EXTERNAL_SYNTHETIC_TEST_SLOWDOWN, HOST_OF_SERVICE_UNAVAILABLE, HTTP_CHECK_GLOBAL_OUTAGE, HTTP_CHECK_LOCAL_OUTAGE, HTTP_CHECK_TEST_LOCATION_SLOWDOWN, MOBILE_APPLICATION_ERROR_RATE_INCREASED, MOBILE_APPLICATION_SLOWDOWN, MOBILE_APPLICATION_UNEXPECTED_HIGH_LOAD, MOBILE_APPLICATION_UNEXPECTED_LOW_LOAD, MOBILE_APP_CRASH_RATE_INCREASED, MONITORING_UNAVAILABLE, OSI_DISK_LOW_INODES, OSI_GRACEFULLY_SHUTDOWN, OSI_HIGH_CPU, OSI_HIGH_MEMORY, OSI_LOW_DISK_SPACE, OSI_NIC_DROPPED_PACKETS_HIGH, OSI_NIC_ERRORS_HIGH, OSI_NIC_UTILIZATION_HIGH, OSI_SLOW_DISK, OSI_UNEXPECTEDLY_UNAVAILABLE, PGI_OF_SERVICE_UNAVAILABLE, PGI_UNAVAILABLE, PG_LOW_INSTANCE_COUNT, PROCESS_CRASHED, PROCESS_HIGH_GC_ACTIVITY, PROCESS_MEMORY_RESOURCE_EXHAUSTED, PROCESS_NA_HIGH_CONN_FAIL_RATE, PROCESS_NA_HIGH_LOSS_RATE, PROCESS_THREADS_RESOURCE_EXHAUSTED, RDS_HIGH_CPU, RDS_HIGH_LATENCY, RDS_LOW_MEMORY, RDS_LOW_STORAGE_SPACE, RDS_OF_SERVICE_UNAVAILABLE, RDS_RESTART_SEQUENCE, SERVICE_ERROR_RATE_INCREASED, SERVICE_SLOWDOWN, SERVICE_UNEXPECTED_HIGH_LOAD, SERVICE_UNEXPECTED_LOW_LOAD, SYNTHETIC_GLOBAL_OUTAGE, SYNTHETIC_LOCAL_OUTAGE, SYNTHETIC_NODE_OUTAGE, SYNTHETIC_PRIVATE_LOCATION_OUTAGE and SYNTHETIC_TEST_LOCATION_SLOWDOWN
negate bool
The alert triggers when the problem of specified severity arises while the specified event is happening (false) or while the specified event is not happening (true). For example, if you chose the Slowdown (PERFORMANCE) severity and Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event with negate set to true, the alerting profile will trigger only when the slowdown problem is raised while there is no unexpected high traffic event. Consider the following use case as an example. The Slowdown (PERFORMANCE) severity rule is set. Depending on the configuration of the event filter (Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event is used as an example), the behavior of the alerting profile is one of the following:* **negate** is set to false: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set to true: The alert triggers when the slowdown problem is raised while there is no unexpected high traffic event. * no event rule is set: The alert triggers when the slowdown problem is raised, regardless of any events
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
eventType This property is required. String
The type of the predefined event. Possible values are APPLICATION_ERROR_RATE_INCREASED, APPLICATION_SLOWDOWN, APPLICATION_UNEXPECTED_HIGH_LOAD, APPLICATION_UNEXPECTED_LOW_LOAD, AWS_LAMBDA_HIGH_ERROR_RATE, CUSTOM_APPLICATION_ERROR_RATE_INCREASED, CUSTOM_APPLICATION_SLOWDOWN, CUSTOM_APPLICATION_UNEXPECTED_HIGH_LOAD, CUSTOM_APPLICATION_UNEXPECTED_LOW_LOAD, CUSTOM_APP_CRASH_RATE_INCREASED, DATABASE_CONNECTION_FAILURE, DATA_CENTER_SERVICE_PERFORMANCE_DEGRADATION, DATA_CENTER_SERVICE_UNAVAILABLE, EBS_VOLUME_HIGH_LATENCY, EC2_HIGH_CPU, ELB_HIGH_BACKEND_ERROR_RATE, ENTERPRICE_APPLICATION_PERFORMANCE_DEGRADATION, ENTERPRISE_APPLICATION_UNAVAILABLE, ESXI_GUEST_ACTIVE_SWAP_WAIT, ESXI_GUEST_CPU_LIMIT_REACHED, ESXI_HOST_CPU_SATURATION, ESXI_HOST_DATASTORE_LOW_DISK_SPACE, ESXI_HOST_DISK_QUEUE_SLOW, ESXI_HOST_DISK_SLOW, ESXI_HOST_MEMORY_SATURATION, ESXI_HOST_NETWORK_PROBLEMS, ESXI_HOST_OVERLOADED_STORAGE, ESXI_VM_IMPACT_HOST_CPU_SATURATION, ESXI_VM_IMPACT_HOST_MEMORY_SATURATION, EXTERNAL_SYNTHETIC_TEST_OUTAGE, EXTERNAL_SYNTHETIC_TEST_SLOWDOWN, HOST_OF_SERVICE_UNAVAILABLE, HTTP_CHECK_GLOBAL_OUTAGE, HTTP_CHECK_LOCAL_OUTAGE, HTTP_CHECK_TEST_LOCATION_SLOWDOWN, MOBILE_APPLICATION_ERROR_RATE_INCREASED, MOBILE_APPLICATION_SLOWDOWN, MOBILE_APPLICATION_UNEXPECTED_HIGH_LOAD, MOBILE_APPLICATION_UNEXPECTED_LOW_LOAD, MOBILE_APP_CRASH_RATE_INCREASED, MONITORING_UNAVAILABLE, OSI_DISK_LOW_INODES, OSI_GRACEFULLY_SHUTDOWN, OSI_HIGH_CPU, OSI_HIGH_MEMORY, OSI_LOW_DISK_SPACE, OSI_NIC_DROPPED_PACKETS_HIGH, OSI_NIC_ERRORS_HIGH, OSI_NIC_UTILIZATION_HIGH, OSI_SLOW_DISK, OSI_UNEXPECTEDLY_UNAVAILABLE, PGI_OF_SERVICE_UNAVAILABLE, PGI_UNAVAILABLE, PG_LOW_INSTANCE_COUNT, PROCESS_CRASHED, PROCESS_HIGH_GC_ACTIVITY, PROCESS_MEMORY_RESOURCE_EXHAUSTED, PROCESS_NA_HIGH_CONN_FAIL_RATE, PROCESS_NA_HIGH_LOSS_RATE, PROCESS_THREADS_RESOURCE_EXHAUSTED, RDS_HIGH_CPU, RDS_HIGH_LATENCY, RDS_LOW_MEMORY, RDS_LOW_STORAGE_SPACE, RDS_OF_SERVICE_UNAVAILABLE, RDS_RESTART_SEQUENCE, SERVICE_ERROR_RATE_INCREASED, SERVICE_SLOWDOWN, SERVICE_UNEXPECTED_HIGH_LOAD, SERVICE_UNEXPECTED_LOW_LOAD, SYNTHETIC_GLOBAL_OUTAGE, SYNTHETIC_LOCAL_OUTAGE, SYNTHETIC_NODE_OUTAGE, SYNTHETIC_PRIVATE_LOCATION_OUTAGE and SYNTHETIC_TEST_LOCATION_SLOWDOWN
negate Boolean
The alert triggers when the problem of specified severity arises while the specified event is happening (false) or while the specified event is not happening (true). For example, if you chose the Slowdown (PERFORMANCE) severity and Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event with negate set to true, the alerting profile will trigger only when the slowdown problem is raised while there is no unexpected high traffic event. Consider the following use case as an example. The Slowdown (PERFORMANCE) severity rule is set. Depending on the configuration of the event filter (Unexpected high traffic (APPLICATION_UNEXPECTED_HIGH_LOAD) event is used as an example), the behavior of the alerting profile is one of the following:* **negate** is set to false: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set to true: The alert triggers when the slowdown problem is raised while there is no unexpected high traffic event. * no event rule is set: The alert triggers when the slowdown problem is raised, regardless of any events
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileMetadata
, AlertingProfileMetadataArgs

ClusterVersion string
Dynatrace server version
ConfigurationVersions List<int>
A Sorted list of the version numbers of the configuration
CurrentConfigurationVersions List<string>
A Sorted list of the version numbers of the configuration
ClusterVersion string
Dynatrace server version
ConfigurationVersions []int
A Sorted list of the version numbers of the configuration
CurrentConfigurationVersions []string
A Sorted list of the version numbers of the configuration
clusterVersion String
Dynatrace server version
configurationVersions List<Integer>
A Sorted list of the version numbers of the configuration
currentConfigurationVersions List<String>
A Sorted list of the version numbers of the configuration
clusterVersion string
Dynatrace server version
configurationVersions number[]
A Sorted list of the version numbers of the configuration
currentConfigurationVersions string[]
A Sorted list of the version numbers of the configuration
cluster_version str
Dynatrace server version
configuration_versions Sequence[int]
A Sorted list of the version numbers of the configuration
current_configuration_versions Sequence[str]
A Sorted list of the version numbers of the configuration
clusterVersion String
Dynatrace server version
configurationVersions List<Number>
A Sorted list of the version numbers of the configuration
currentConfigurationVersions List<String>
A Sorted list of the version numbers of the configuration

AlertingProfileRule
, AlertingProfileRuleArgs

DelayInMinutes This property is required. int
Send a notification if a problem remains open longer than X minutes
SeverityLevel This property is required. string
The severity level to trigger the alert. Possible values are AVAILABILITY, CUSTOM_ALERT, ERROR,MONITORING_UNAVAILABLE,PERFORMANCE and RESOURCE_CONTENTION.
TagFilters This property is required. List<Pulumiverse.Dynatrace.Inputs.AlertingProfileRuleTagFilter>
Configuration of the tag filtering of the alerting profile
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
DelayInMinutes This property is required. int
Send a notification if a problem remains open longer than X minutes
SeverityLevel This property is required. string
The severity level to trigger the alert. Possible values are AVAILABILITY, CUSTOM_ALERT, ERROR,MONITORING_UNAVAILABLE,PERFORMANCE and RESOURCE_CONTENTION.
TagFilters This property is required. []AlertingProfileRuleTagFilter
Configuration of the tag filtering of the alerting profile
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
delayInMinutes This property is required. Integer
Send a notification if a problem remains open longer than X minutes
severityLevel This property is required. String
The severity level to trigger the alert. Possible values are AVAILABILITY, CUSTOM_ALERT, ERROR,MONITORING_UNAVAILABLE,PERFORMANCE and RESOURCE_CONTENTION.
tagFilters This property is required. List<AlertingProfileRuleTagFilter>
Configuration of the tag filtering of the alerting profile
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
delayInMinutes This property is required. number
Send a notification if a problem remains open longer than X minutes
severityLevel This property is required. string
The severity level to trigger the alert. Possible values are AVAILABILITY, CUSTOM_ALERT, ERROR,MONITORING_UNAVAILABLE,PERFORMANCE and RESOURCE_CONTENTION.
tagFilters This property is required. AlertingProfileRuleTagFilter[]
Configuration of the tag filtering of the alerting profile
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
delay_in_minutes This property is required. int
Send a notification if a problem remains open longer than X minutes
severity_level This property is required. str
The severity level to trigger the alert. Possible values are AVAILABILITY, CUSTOM_ALERT, ERROR,MONITORING_UNAVAILABLE,PERFORMANCE and RESOURCE_CONTENTION.
tag_filters This property is required. Sequence[AlertingProfileRuleTagFilter]
Configuration of the tag filtering of the alerting profile
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
delayInMinutes This property is required. Number
Send a notification if a problem remains open longer than X minutes
severityLevel This property is required. String
The severity level to trigger the alert. Possible values are AVAILABILITY, CUSTOM_ALERT, ERROR,MONITORING_UNAVAILABLE,PERFORMANCE and RESOURCE_CONTENTION.
tagFilters This property is required. List<Property Map>
Configuration of the tag filtering of the alerting profile
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileRuleTagFilter
, AlertingProfileRuleTagFilterArgs

IncludeMode This property is required. string
The filtering mode: * INCLUDE_ANY: The rule applies to monitored entities that have at least one of the specified tags. You can specify up to 100 tags. * INCLUDE_ALL: The rule applies to monitored entities that have all of the specified tags. You can specify up to 10 tags. * NONE: The rule applies to all monitored entities
TagFilters List<Pulumiverse.Dynatrace.Inputs.AlertingProfileRuleTagFilterTagFilter>
A list of required tags
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
IncludeMode This property is required. string
The filtering mode: * INCLUDE_ANY: The rule applies to monitored entities that have at least one of the specified tags. You can specify up to 100 tags. * INCLUDE_ALL: The rule applies to monitored entities that have all of the specified tags. You can specify up to 10 tags. * NONE: The rule applies to all monitored entities
TagFilters []AlertingProfileRuleTagFilterTagFilter
A list of required tags
Unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
includeMode This property is required. String
The filtering mode: * INCLUDE_ANY: The rule applies to monitored entities that have at least one of the specified tags. You can specify up to 100 tags. * INCLUDE_ALL: The rule applies to monitored entities that have all of the specified tags. You can specify up to 10 tags. * NONE: The rule applies to all monitored entities
tagFilters List<AlertingProfileRuleTagFilterTagFilter>
A list of required tags
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider
includeMode This property is required. string
The filtering mode: * INCLUDE_ANY: The rule applies to monitored entities that have at least one of the specified tags. You can specify up to 100 tags. * INCLUDE_ALL: The rule applies to monitored entities that have all of the specified tags. You can specify up to 10 tags. * NONE: The rule applies to all monitored entities
tagFilters AlertingProfileRuleTagFilterTagFilter[]
A list of required tags
unknowns string
allows for configuring properties that are not explicitly supported by the current version of this provider
include_mode This property is required. str
The filtering mode: * INCLUDE_ANY: The rule applies to monitored entities that have at least one of the specified tags. You can specify up to 100 tags. * INCLUDE_ALL: The rule applies to monitored entities that have all of the specified tags. You can specify up to 10 tags. * NONE: The rule applies to all monitored entities
tag_filters Sequence[AlertingProfileRuleTagFilterTagFilter]
A list of required tags
unknowns str
allows for configuring properties that are not explicitly supported by the current version of this provider
includeMode This property is required. String
The filtering mode: * INCLUDE_ANY: The rule applies to monitored entities that have at least one of the specified tags. You can specify up to 100 tags. * INCLUDE_ALL: The rule applies to monitored entities that have all of the specified tags. You can specify up to 10 tags. * NONE: The rule applies to all monitored entities
tagFilters List<Property Map>
A list of required tags
unknowns String
allows for configuring properties that are not explicitly supported by the current version of this provider

AlertingProfileRuleTagFilterTagFilter
, AlertingProfileRuleTagFilterTagFilterArgs

Context This property is required. string
The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the CONTEXTLESS value
Key This property is required. string
The key of the tag. Custom tags have the tag value here
Value string
The value of the tag. Not applicable to custom tags
Context This property is required. string
The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the CONTEXTLESS value
Key This property is required. string
The key of the tag. Custom tags have the tag value here
Value string
The value of the tag. Not applicable to custom tags
context This property is required. String
The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the CONTEXTLESS value
key This property is required. String
The key of the tag. Custom tags have the tag value here
value String
The value of the tag. Not applicable to custom tags
context This property is required. string
The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the CONTEXTLESS value
key This property is required. string
The key of the tag. Custom tags have the tag value here
value string
The value of the tag. Not applicable to custom tags
context This property is required. str
The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the CONTEXTLESS value
key This property is required. str
The key of the tag. Custom tags have the tag value here
value str
The value of the tag. Not applicable to custom tags
context This property is required. String
The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the CONTEXTLESS value
key This property is required. String
The key of the tag. Custom tags have the tag value here
value String
The value of the tag. Not applicable to custom tags

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.