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",
},
],
}],
},
],
});
import pulumi
import pulumiverse_dynatrace as dynatrace
_name_ = dynatrace.AlertingProfile("#name#",
display_name="#name#",
mz_id="",
rules=[
dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="AVAILABILITY",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="INCLUDE_ALL",
tag_filters=[
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="EnvironmentA",
value="production",
),
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="Team",
value="test",
),
],
)],
),
dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="CUSTOM_ALERT",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="INCLUDE_ALL",
tag_filters=[
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="EnvironmentB",
value="production",
),
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="Team",
value="test",
),
],
)],
),
dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="ERROR",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="INCLUDE_ALL",
tag_filters=[
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="EnvironmentC",
value="production",
),
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="Team",
value="test",
),
],
)],
),
dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="MONITORING_UNAVAILABLE",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="INCLUDE_ALL",
tag_filters=[
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="EnvironmentD",
value="production",
),
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="Team",
value="test",
),
],
)],
),
dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="PERFORMANCE",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="INCLUDE_ALL",
tag_filters=[
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="EnvironmentE",
value="production",
),
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="Team",
value="test",
),
],
)],
),
dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="RESOURCE_CONTENTION",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="INCLUDE_ALL",
tag_filters=[
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="EnvironmentF",
value="production",
),
dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="CONTEXTLESS",
key="Team",
value="test",
),
],
)],
),
])
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
})
}
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",
},
},
},
},
},
},
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args AlertingProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args AlertingProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertingProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
alerting_profile_resource = dynatrace.AlertingProfile("alertingProfileResource",
display_name="string",
event_type_filters=[dynatrace.AlertingProfileEventTypeFilterArgs(
custom_event_filters=[dynatrace.AlertingProfileEventTypeFilterCustomEventFilterArgs(
custom_description_filters=[dynatrace.AlertingProfileEventTypeFilterCustomEventFilterCustomDescriptionFilterArgs(
operator="string",
value="string",
case_insensitive=False,
enabled=False,
negate=False,
unknowns="string",
)],
custom_title_filters=[dynatrace.AlertingProfileEventTypeFilterCustomEventFilterCustomTitleFilterArgs(
operator="string",
value="string",
case_insensitive=False,
enabled=False,
negate=False,
unknowns="string",
)],
unknowns="string",
)],
predefined_event_filters=[dynatrace.AlertingProfileEventTypeFilterPredefinedEventFilterArgs(
event_type="string",
negate=False,
unknowns="string",
)],
unknowns="string",
)],
mz_id="string",
rules=[dynatrace.AlertingProfileRuleArgs(
delay_in_minutes=0,
severity_level="string",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterArgs(
include_mode="string",
tag_filters=[dynatrace.AlertingProfileRuleTagFilterTagFilterArgs(
context="string",
key="string",
value="string",
)],
unknowns="string",
)],
unknowns="string",
)],
unknowns="string")
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",
});
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
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
The AlertingProfile resource accepts the following input properties:
- Display
Name string - The name of the alerting profile, displayed in the UI
- Event
Type List<Pulumiverse.Filters Dynatrace. Inputs. Alerting Profile Event Type Filter> - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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. Alerting Profile Metadata metadata
exists for backwards compatibility but shouldn't get specified anymore- Mz
Id string - The ID of the management zone to which the alerting profile applies
- Rules
List<Pulumiverse.
Dynatrace. Inputs. Alerting Profile Rule> - 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 string - The name of the alerting profile, displayed in the UI
- Event
Type []AlertingFilters Profile Event Type Filter Args - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata Args metadata
exists for backwards compatibility but shouldn't get specified anymore- Mz
Id string - The ID of the management zone to which the alerting profile applies
- Rules
[]Alerting
Profile Rule Args - 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 String - The name of the alerting profile, displayed in the UI
- event
Type List<AlertingFilters Profile Event Type Filter> - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata metadata
exists for backwards compatibility but shouldn't get specified anymore- mz
Id String - The ID of the management zone to which the alerting profile applies
- rules
List<Alerting
Profile Rule> - 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 string - The name of the alerting profile, displayed in the UI
- event
Type AlertingFilters Profile Event Type Filter[] - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata metadata
exists for backwards compatibility but shouldn't get specified anymore- mz
Id string - The ID of the management zone to which the alerting profile applies
- rules
Alerting
Profile Rule[] - 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_ Sequence[Alertingfilters Profile Event Type Filter Args] - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata Args 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[Alerting
Profile Rule Args] - 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
- display
Name String - The name of the alerting profile, displayed in the UI
- event
Type List<Property Map>Filters - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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- mz
Id 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Display
Name string - The name of the alerting profile, displayed in the UI
- Event
Type List<Pulumiverse.Filters Dynatrace. Inputs. Alerting Profile Event Type Filter> - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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. Alerting Profile Metadata metadata
exists for backwards compatibility but shouldn't get specified anymore- Mz
Id string - The ID of the management zone to which the alerting profile applies
- Rules
List<Pulumiverse.
Dynatrace. Inputs. Alerting Profile Rule> - 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 string - The name of the alerting profile, displayed in the UI
- Event
Type []AlertingFilters Profile Event Type Filter Args - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata Args metadata
exists for backwards compatibility but shouldn't get specified anymore- Mz
Id string - The ID of the management zone to which the alerting profile applies
- Rules
[]Alerting
Profile Rule Args - 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 String - The name of the alerting profile, displayed in the UI
- event
Type List<AlertingFilters Profile Event Type Filter> - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata metadata
exists for backwards compatibility but shouldn't get specified anymore- mz
Id String - The ID of the management zone to which the alerting profile applies
- rules
List<Alerting
Profile Rule> - 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 string - The name of the alerting profile, displayed in the UI
- event
Type AlertingFilters Profile Event Type Filter[] - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata metadata
exists for backwards compatibility but shouldn't get specified anymore- mz
Id string - The ID of the management zone to which the alerting profile applies
- rules
Alerting
Profile Rule[] - 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_ Sequence[Alertingfilters Profile Event Type Filter Args] - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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
Alerting
Profile Metadata Args 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[Alerting
Profile Rule Args] - 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
- display
Name String - The name of the alerting profile, displayed in the UI
- event
Type List<Property Map>Filters - The list of event filters. For all filters that are negated inside of these event filters, that is all
Predefined
as well asCustom
(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- mz
Id 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
- Custom
Event List<Pulumiverse.Filters Dynatrace. Inputs. Alerting Profile Event Type Filter Custom Event Filter> - Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
- Predefined
Event List<Pulumiverse.Filters Dynatrace. Inputs. Alerting Profile Event Type Filter Predefined Event Filter> - 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 []AlertingFilters Profile Event Type Filter Custom Event Filter - Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
- Predefined
Event []AlertingFilters Profile Event Type Filter Predefined Event Filter - 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 List<AlertingFilters Profile Event Type Filter Custom Event Filter> - Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
- predefined
Event List<AlertingFilters Profile Event Type Filter Predefined Event Filter> - 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 AlertingFilters Profile Event Type Filter Custom Event Filter[] - Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
- predefined
Event AlertingFilters Profile Event Type Filter Predefined Event Filter[] - 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_ Sequence[Alertingfilters Profile Event Type Filter Custom Event Filter] - Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
- predefined_
event_ Sequence[Alertingfilters Profile Event Type Filter Predefined Event Filter] - 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
- custom
Event List<Property Map>Filters - Configuration of a custom event filter. Filters custom events by title or description. If both specified, the AND logic applies
- predefined
Event List<Property Map>Filters - 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
- Custom
Description List<Pulumiverse.Filters Dynatrace. Inputs. Alerting Profile Event Type Filter Custom Event Filter Custom Description Filter> - Configuration of a matching filter
- Custom
Title List<Pulumiverse.Filters Dynatrace. Inputs. Alerting Profile Event Type Filter Custom Event Filter Custom Title Filter> - 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 []AlertingFilters Profile Event Type Filter Custom Event Filter Custom Description Filter - Configuration of a matching filter
- Custom
Title []AlertingFilters Profile Event Type Filter Custom Event Filter Custom Title Filter - 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 List<AlertingFilters Profile Event Type Filter Custom Event Filter Custom Description Filter> - Configuration of a matching filter
- custom
Title List<AlertingFilters Profile Event Type Filter Custom Event Filter Custom Title Filter> - 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 AlertingFilters Profile Event Type Filter Custom Event Filter Custom Description Filter[] - Configuration of a matching filter
- custom
Title AlertingFilters Profile Event Type Filter Custom Event Filter Custom Title Filter[] - 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_ Sequence[Alertingfilters Profile Event Type Filter Custom Event Filter Custom Description Filter] - Configuration of a matching filter
- custom_
title_ Sequence[Alertingfilters Profile Event Type Filter Custom Event Filter Custom Title Filter] - Configuration of a matching filter
- unknowns str
- allows for configuring properties that are not explicitly supported by the current version of this provider
- custom
Description List<Property Map>Filters - Configuration of a matching filter
- custom
Title List<Property Map>Filters - 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 string
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- Value string
- The value to compare to
- Case
Insensitive bool - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 string
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- Value string
- The value to compare to
- Case
Insensitive bool - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 String
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value String
- The value to compare to
- case
Insensitive Boolean - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 string
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value string
- The value to compare to
- case
Insensitive boolean - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 str
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value str
- The value to compare to
- case_
insensitive bool - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 String
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value String
- The value to compare to
- case
Insensitive Boolean - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 string
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- Value string
- The value to compare to
- Case
Insensitive bool - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 string
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- Value string
- The value to compare to
- Case
Insensitive bool - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 String
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value String
- The value to compare to
- case
Insensitive Boolean - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 string
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value string
- The value to compare to
- case
Insensitive boolean - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 str
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value str
- The value to compare to
- case_
insensitive bool - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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 String
- Operator of the comparison. You can reverse it by setting negate to
true
. Possible values areBEGINS_WITH
,CONTAINS
,CONTAINS_REGEX
,ENDS_WITH
andEQUALS
- value String
- The value to compare to
- case
Insensitive Boolean - The condition is case sensitive (
false
) or case insensitive (true
). If not set, thenfalse
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
- Event
Type 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
andSYNTHETIC_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 totrue
, 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 tofalse
: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set totrue
: 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 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
andSYNTHETIC_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 totrue
, 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 tofalse
: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set totrue
: 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 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
andSYNTHETIC_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 totrue
, 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 tofalse
: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set totrue
: 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 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
andSYNTHETIC_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 totrue
, 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 tofalse
: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set totrue
: 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 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
andSYNTHETIC_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 totrue
, 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 tofalse
: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set totrue
: 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
- event
Type 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
andSYNTHETIC_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 totrue
, 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 tofalse
: The alert triggers when the slowdown problem is raised while unexpected high traffic event is happening. * **negate** is set totrue
: 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
- Cluster
Version string - Dynatrace server version
- Configuration
Versions List<int> - A Sorted list of the version numbers of the configuration
- Current
Configuration List<string>Versions - A Sorted list of the version numbers of the configuration
- Cluster
Version string - Dynatrace server version
- Configuration
Versions []int - A Sorted list of the version numbers of the configuration
- Current
Configuration []stringVersions - A Sorted list of the version numbers of the configuration
- cluster
Version String - Dynatrace server version
- configuration
Versions List<Integer> - A Sorted list of the version numbers of the configuration
- current
Configuration List<String>Versions - A Sorted list of the version numbers of the configuration
- cluster
Version string - Dynatrace server version
- configuration
Versions number[] - A Sorted list of the version numbers of the configuration
- current
Configuration string[]Versions - 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_ Sequence[str]versions - A Sorted list of the version numbers of the configuration
- cluster
Version String - Dynatrace server version
- configuration
Versions List<Number> - A Sorted list of the version numbers of the configuration
- current
Configuration List<String>Versions - A Sorted list of the version numbers of the configuration
AlertingProfileRule, AlertingProfileRuleArgs
- Delay
In intMinutes - Send a notification if a problem remains open longer than X minutes
- Severity
Level string - The severity level to trigger the alert. Possible values are
AVAILABILITY
,CUSTOM_ALERT
,ERROR
,MONITORING_UNAVAILABLE
,PERFORMANCE
andRESOURCE_CONTENTION
. - Tag
Filters List<Pulumiverse.Dynatrace. Inputs. Alerting Profile Rule Tag Filter> - 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 intMinutes - Send a notification if a problem remains open longer than X minutes
- Severity
Level string - The severity level to trigger the alert. Possible values are
AVAILABILITY
,CUSTOM_ALERT
,ERROR
,MONITORING_UNAVAILABLE
,PERFORMANCE
andRESOURCE_CONTENTION
. - Tag
Filters []AlertingProfile Rule Tag Filter - 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 IntegerMinutes - Send a notification if a problem remains open longer than X minutes
- severity
Level String - The severity level to trigger the alert. Possible values are
AVAILABILITY
,CUSTOM_ALERT
,ERROR
,MONITORING_UNAVAILABLE
,PERFORMANCE
andRESOURCE_CONTENTION
. - tag
Filters List<AlertingProfile Rule Tag Filter> - 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 numberMinutes - Send a notification if a problem remains open longer than X minutes
- severity
Level string - The severity level to trigger the alert. Possible values are
AVAILABILITY
,CUSTOM_ALERT
,ERROR
,MONITORING_UNAVAILABLE
,PERFORMANCE
andRESOURCE_CONTENTION
. - tag
Filters AlertingProfile Rule Tag Filter[] - 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_ intminutes - Send a notification if a problem remains open longer than X minutes
- severity_
level str - The severity level to trigger the alert. Possible values are
AVAILABILITY
,CUSTOM_ALERT
,ERROR
,MONITORING_UNAVAILABLE
,PERFORMANCE
andRESOURCE_CONTENTION
. - tag_
filters Sequence[AlertingProfile Rule Tag Filter] - 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
- delay
In NumberMinutes - Send a notification if a problem remains open longer than X minutes
- severity
Level String - The severity level to trigger the alert. Possible values are
AVAILABILITY
,CUSTOM_ALERT
,ERROR
,MONITORING_UNAVAILABLE
,PERFORMANCE
andRESOURCE_CONTENTION
. - tag
Filters 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
- Include
Mode 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 - Tag
Filters List<Pulumiverse.Dynatrace. Inputs. Alerting Profile Rule Tag Filter Tag Filter> - 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 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 - Tag
Filters []AlertingProfile Rule Tag Filter Tag Filter - 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 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 - tag
Filters List<AlertingProfile Rule Tag Filter Tag Filter> - 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 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 - tag
Filters AlertingProfile Rule Tag Filter Tag Filter[] - 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 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[AlertingProfile Rule Tag Filter Tag Filter] - A list of required tags
- unknowns str
- allows for configuring properties that are not explicitly supported by the current version of this provider
- include
Mode 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 - tag
Filters 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
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.