azure.monitoring.SmartDetectorAlertRule
Manages an Monitor Smart Detector Alert Rule.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleInsights = new Azure.AppInsights.Insights("exampleInsights", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
ApplicationType = "web",
});
var exampleActionGroup = new Azure.Monitoring.ActionGroup("exampleActionGroup", new()
{
ResourceGroupName = exampleResourceGroup.Name,
ShortName = "example",
});
var exampleSmartDetectorAlertRule = new Azure.Monitoring.SmartDetectorAlertRule("exampleSmartDetectorAlertRule", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Severity = "Sev0",
ScopeResourceIds = new[]
{
exampleInsights.Id,
},
Frequency = "PT1M",
DetectorType = "FailureAnomaliesDetector",
ActionGroup = new Azure.Monitoring.Inputs.SmartDetectorAlertRuleActionGroupArgs
{
Ids = new[]
{
exampleActionGroup.Id,
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appinsights"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/monitoring"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleInsights, err := appinsights.NewInsights(ctx, "exampleInsights", &appinsights.InsightsArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
ApplicationType: pulumi.String("web"),
})
if err != nil {
return err
}
exampleActionGroup, err := monitoring.NewActionGroup(ctx, "exampleActionGroup", &monitoring.ActionGroupArgs{
ResourceGroupName: exampleResourceGroup.Name,
ShortName: pulumi.String("example"),
})
if err != nil {
return err
}
_, err = monitoring.NewSmartDetectorAlertRule(ctx, "exampleSmartDetectorAlertRule", &monitoring.SmartDetectorAlertRuleArgs{
ResourceGroupName: exampleResourceGroup.Name,
Severity: pulumi.String("Sev0"),
ScopeResourceIds: pulumi.StringArray{
exampleInsights.ID(),
},
Frequency: pulumi.String("PT1M"),
DetectorType: pulumi.String("FailureAnomaliesDetector"),
ActionGroup: &monitoring.SmartDetectorAlertRuleActionGroupArgs{
Ids: pulumi.StringArray{
exampleActionGroup.ID(),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appinsights.Insights;
import com.pulumi.azure.appinsights.InsightsArgs;
import com.pulumi.azure.monitoring.ActionGroup;
import com.pulumi.azure.monitoring.ActionGroupArgs;
import com.pulumi.azure.monitoring.SmartDetectorAlertRule;
import com.pulumi.azure.monitoring.SmartDetectorAlertRuleArgs;
import com.pulumi.azure.monitoring.inputs.SmartDetectorAlertRuleActionGroupArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.applicationType("web")
.build());
var exampleActionGroup = new ActionGroup("exampleActionGroup", ActionGroupArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.shortName("example")
.build());
var exampleSmartDetectorAlertRule = new SmartDetectorAlertRule("exampleSmartDetectorAlertRule", SmartDetectorAlertRuleArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.severity("Sev0")
.scopeResourceIds(exampleInsights.id())
.frequency("PT1M")
.detectorType("FailureAnomaliesDetector")
.actionGroup(SmartDetectorAlertRuleActionGroupArgs.builder()
.ids(exampleActionGroup.id())
.build())
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_insights = azure.appinsights.Insights("exampleInsights",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
application_type="web")
example_action_group = azure.monitoring.ActionGroup("exampleActionGroup",
resource_group_name=example_resource_group.name,
short_name="example")
example_smart_detector_alert_rule = azure.monitoring.SmartDetectorAlertRule("exampleSmartDetectorAlertRule",
resource_group_name=example_resource_group.name,
severity="Sev0",
scope_resource_ids=[example_insights.id],
frequency="PT1M",
detector_type="FailureAnomaliesDetector",
action_group=azure.monitoring.SmartDetectorAlertRuleActionGroupArgs(
ids=[example_action_group.id],
))
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleInsights = new azure.appinsights.Insights("exampleInsights", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
applicationType: "web",
});
const exampleActionGroup = new azure.monitoring.ActionGroup("exampleActionGroup", {
resourceGroupName: exampleResourceGroup.name,
shortName: "example",
});
const exampleSmartDetectorAlertRule = new azure.monitoring.SmartDetectorAlertRule("exampleSmartDetectorAlertRule", {
resourceGroupName: exampleResourceGroup.name,
severity: "Sev0",
scopeResourceIds: [exampleInsights.id],
frequency: "PT1M",
detectorType: "FailureAnomaliesDetector",
actionGroup: {
ids: [exampleActionGroup.id],
},
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleInsights:
type: azure:appinsights:Insights
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
applicationType: web
exampleActionGroup:
type: azure:monitoring:ActionGroup
properties:
resourceGroupName: ${exampleResourceGroup.name}
shortName: example
exampleSmartDetectorAlertRule:
type: azure:monitoring:SmartDetectorAlertRule
properties:
resourceGroupName: ${exampleResourceGroup.name}
severity: Sev0
scopeResourceIds:
- ${exampleInsights.id}
frequency: PT1M
detectorType: FailureAnomaliesDetector
actionGroup:
ids:
- ${exampleActionGroup.id}
Create SmartDetectorAlertRule Resource
new SmartDetectorAlertRule(name: string, args: SmartDetectorAlertRuleArgs, opts?: CustomResourceOptions);
@overload
def SmartDetectorAlertRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_group: Optional[SmartDetectorAlertRuleActionGroupArgs] = None,
description: Optional[str] = None,
detector_type: Optional[str] = None,
enabled: Optional[bool] = None,
frequency: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
scope_resource_ids: Optional[Sequence[str]] = None,
severity: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
throttling_duration: Optional[str] = None)
@overload
def SmartDetectorAlertRule(resource_name: str,
args: SmartDetectorAlertRuleArgs,
opts: Optional[ResourceOptions] = None)
func NewSmartDetectorAlertRule(ctx *Context, name string, args SmartDetectorAlertRuleArgs, opts ...ResourceOption) (*SmartDetectorAlertRule, error)
public SmartDetectorAlertRule(string name, SmartDetectorAlertRuleArgs args, CustomResourceOptions? opts = null)
public SmartDetectorAlertRule(String name, SmartDetectorAlertRuleArgs args)
public SmartDetectorAlertRule(String name, SmartDetectorAlertRuleArgs args, CustomResourceOptions options)
type: azure:monitoring:SmartDetectorAlertRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SmartDetectorAlertRuleArgs
- 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 SmartDetectorAlertRuleArgs
- 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 SmartDetectorAlertRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SmartDetectorAlertRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SmartDetectorAlertRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SmartDetectorAlertRule 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 SmartDetectorAlertRule resource accepts the following input properties:
- Action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- Detector
Type string Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- Frequency string
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- Scope
Resource List<string>Ids Specifies the scopes of this Smart Detector Alert Rule.
- Severity string
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- Description string
Specifies a description for the Smart Detector Alert Rule.
- Enabled bool
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- Name string
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Throttling
Duration string Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- Action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- Detector
Type string Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- Frequency string
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- Scope
Resource []stringIds Specifies the scopes of this Smart Detector Alert Rule.
- Severity string
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- Description string
Specifies a description for the Smart Detector Alert Rule.
- Enabled bool
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- Name string
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- map[string]string
A mapping of tags to assign to the resource.
- Throttling
Duration string Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- detector
Type String Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- frequency String
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope
Resource List<String>Ids Specifies the scopes of this Smart Detector Alert Rule.
- severity String
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- description String
Specifies a description for the Smart Detector Alert Rule.
- enabled Boolean
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- name String
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- Map<String,String>
A mapping of tags to assign to the resource.
- throttling
Duration String Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- detector
Type string Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- frequency string
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- resource
Group stringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope
Resource string[]Ids Specifies the scopes of this Smart Detector Alert Rule.
- severity string
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- description string
Specifies a description for the Smart Detector Alert Rule.
- enabled boolean
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- name string
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- {[key: string]: string}
A mapping of tags to assign to the resource.
- throttling
Duration string Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action_
group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- detector_
type str Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- frequency str
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- resource_
group_ strname Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope_
resource_ Sequence[str]ids Specifies the scopes of this Smart Detector Alert Rule.
- severity str
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- description str
Specifies a description for the Smart Detector Alert Rule.
- enabled bool
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- name str
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- Mapping[str, str]
A mapping of tags to assign to the resource.
- throttling_
duration str Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action
Group Property Map An
action_group
block as defined below.- detector
Type String Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- frequency String
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope
Resource List<String>Ids Specifies the scopes of this Smart Detector Alert Rule.
- severity String
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- description String
Specifies a description for the Smart Detector Alert Rule.
- enabled Boolean
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- name String
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- Map<String>
A mapping of tags to assign to the resource.
- throttling
Duration String Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
Outputs
All input properties are implicitly available as output properties. Additionally, the SmartDetectorAlertRule 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 SmartDetectorAlertRule Resource
Get an existing SmartDetectorAlertRule 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?: SmartDetectorAlertRuleState, opts?: CustomResourceOptions): SmartDetectorAlertRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_group: Optional[SmartDetectorAlertRuleActionGroupArgs] = None,
description: Optional[str] = None,
detector_type: Optional[str] = None,
enabled: Optional[bool] = None,
frequency: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
scope_resource_ids: Optional[Sequence[str]] = None,
severity: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
throttling_duration: Optional[str] = None) -> SmartDetectorAlertRule
func GetSmartDetectorAlertRule(ctx *Context, name string, id IDInput, state *SmartDetectorAlertRuleState, opts ...ResourceOption) (*SmartDetectorAlertRule, error)
public static SmartDetectorAlertRule Get(string name, Input<string> id, SmartDetectorAlertRuleState? state, CustomResourceOptions? opts = null)
public static SmartDetectorAlertRule get(String name, Output<String> id, SmartDetectorAlertRuleState 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.
- Action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- Description string
Specifies a description for the Smart Detector Alert Rule.
- Detector
Type string Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- Enabled bool
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- Frequency string
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- Name string
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- Scope
Resource List<string>Ids Specifies the scopes of this Smart Detector Alert Rule.
- Severity string
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Throttling
Duration string Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- Action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- Description string
Specifies a description for the Smart Detector Alert Rule.
- Detector
Type string Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- Enabled bool
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- Frequency string
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- Name string
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- Scope
Resource []stringIds Specifies the scopes of this Smart Detector Alert Rule.
- Severity string
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- map[string]string
A mapping of tags to assign to the resource.
- Throttling
Duration string Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- description String
Specifies a description for the Smart Detector Alert Rule.
- detector
Type String Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- enabled Boolean
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- frequency String
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- name String
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope
Resource List<String>Ids Specifies the scopes of this Smart Detector Alert Rule.
- severity String
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- Map<String,String>
A mapping of tags to assign to the resource.
- throttling
Duration String Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action
Group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- description string
Specifies a description for the Smart Detector Alert Rule.
- detector
Type string Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- enabled boolean
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- frequency string
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- name string
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- resource
Group stringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope
Resource string[]Ids Specifies the scopes of this Smart Detector Alert Rule.
- severity string
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- {[key: string]: string}
A mapping of tags to assign to the resource.
- throttling
Duration string Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action_
group SmartDetector Alert Rule Action Group Args An
action_group
block as defined below.- description str
Specifies a description for the Smart Detector Alert Rule.
- detector_
type str Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- enabled bool
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- frequency str
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- name str
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- resource_
group_ strname Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope_
resource_ Sequence[str]ids Specifies the scopes of this Smart Detector Alert Rule.
- severity str
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- Mapping[str, str]
A mapping of tags to assign to the resource.
- throttling_
duration str Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
- action
Group Property Map An
action_group
block as defined below.- description String
Specifies a description for the Smart Detector Alert Rule.
- detector
Type String Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are
FailureAnomaliesDetector
,RequestPerformanceDegradationDetector
,DependencyPerformanceDegradationDetector
,ExceptionVolumeChangedDetector
,TraceSeverityDetector
,MemoryLeakDetector
.- enabled Boolean
Is the Smart Detector Alert Rule enabled? Defaults to
true
.- frequency String
Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
- name String
Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.
- scope
Resource List<String>Ids Specifies the scopes of this Smart Detector Alert Rule.
- severity String
Specifies the severity of this Smart Detector Alert Rule. Possible values are
Sev0
,Sev1
,Sev2
,Sev3
orSev4
.- Map<String>
A mapping of tags to assign to the resource.
- throttling
Duration String Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
Supporting Types
SmartDetectorAlertRuleActionGroup
- Ids List<string>
Specifies the action group ids.
- Email
Subject string Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.
- Webhook
Payload string A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.
- Ids []string
Specifies the action group ids.
- Email
Subject string Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.
- Webhook
Payload string A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.
- ids List<String>
Specifies the action group ids.
- email
Subject String Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.
- webhook
Payload String A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.
- ids string[]
Specifies the action group ids.
- email
Subject string Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.
- webhook
Payload string A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.
- ids Sequence[str]
Specifies the action group ids.
- email_
subject str Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.
- webhook_
payload str A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.
- ids List<String>
Specifies the action group ids.
- email
Subject String Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.
- webhook
Payload String A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.
Import
Monitor Smart Detector Alert Rule can be imported using the resource id
, e.g.
$ pulumi import azure:monitoring/smartDetectorAlertRule:SmartDetectorAlertRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AlertsManagement/smartDetectorAlertRules/rule1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.