sysdig.MonitorAlertGroupOutlier
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sysdig from "@pulumi/sysdig";
const sample = new sysdig.MonitorAlertGroupOutlier("sample", {
    capture: {
        duration: 15,
        filename: "TERRAFORM_TEST",
    },
    description: "Monitors the cluster and checks when a node has more CPU usage than the others",
    monitors: ["cpu.used.percent"],
    severity: 6,
    triggerAfterMinutes: 10,
});
import pulumi
import pulumi_sysdig as sysdig
sample = sysdig.MonitorAlertGroupOutlier("sample",
    capture={
        "duration": 15,
        "filename": "TERRAFORM_TEST",
    },
    description="Monitors the cluster and checks when a node has more CPU usage than the others",
    monitors=["cpu.used.percent"],
    severity=6,
    trigger_after_minutes=10)
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/sysdig"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sysdig.NewMonitorAlertGroupOutlier(ctx, "sample", &sysdig.MonitorAlertGroupOutlierArgs{
			Capture: &sysdig.MonitorAlertGroupOutlierCaptureArgs{
				Duration: pulumi.Float64(15),
				Filename: pulumi.String("TERRAFORM_TEST"),
			},
			Description: pulumi.String("Monitors the cluster and checks when a node has more CPU usage than the others"),
			Monitors: pulumi.StringArray{
				pulumi.String("cpu.used.percent"),
			},
			Severity:            pulumi.Float64(6),
			TriggerAfterMinutes: pulumi.Float64(10),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sysdig = Pulumi.Sysdig;
return await Deployment.RunAsync(() => 
{
    var sample = new Sysdig.MonitorAlertGroupOutlier("sample", new()
    {
        Capture = new Sysdig.Inputs.MonitorAlertGroupOutlierCaptureArgs
        {
            Duration = 15,
            Filename = "TERRAFORM_TEST",
        },
        Description = "Monitors the cluster and checks when a node has more CPU usage than the others",
        Monitors = new[]
        {
            "cpu.used.percent",
        },
        Severity = 6,
        TriggerAfterMinutes = 10,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.MonitorAlertGroupOutlier;
import com.pulumi.sysdig.MonitorAlertGroupOutlierArgs;
import com.pulumi.sysdig.inputs.MonitorAlertGroupOutlierCaptureArgs;
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 sample = new MonitorAlertGroupOutlier("sample", MonitorAlertGroupOutlierArgs.builder()
            .capture(MonitorAlertGroupOutlierCaptureArgs.builder()
                .duration(15)
                .filename("TERRAFORM_TEST")
                .build())
            .description("Monitors the cluster and checks when a node has more CPU usage than the others")
            .monitors("cpu.used.percent")
            .severity(6)
            .triggerAfterMinutes(10)
            .build());
    }
}
resources:
  sample:
    type: sysdig:MonitorAlertGroupOutlier
    properties:
      capture:
        duration: 15
        filename: TERRAFORM_TEST
      description: Monitors the cluster and checks when a node has more CPU usage than the others
      monitors:
        - cpu.used.percent
      severity: 6
      triggerAfterMinutes: 10
Create MonitorAlertGroupOutlier Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MonitorAlertGroupOutlier(name: string, args: MonitorAlertGroupOutlierArgs, opts?: CustomResourceOptions);@overload
def MonitorAlertGroupOutlier(resource_name: str,
                             args: MonitorAlertGroupOutlierArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def MonitorAlertGroupOutlier(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             monitors: Optional[Sequence[str]] = None,
                             trigger_after_minutes: Optional[float] = None,
                             enabled: Optional[bool] = None,
                             capture: Optional[MonitorAlertGroupOutlierCaptureArgs] = None,
                             group_name: Optional[str] = None,
                             monitor_alert_group_outlier_id: Optional[str] = None,
                             description: Optional[str] = None,
                             name: Optional[str] = None,
                             notification_channels: Optional[Sequence[float]] = None,
                             renotification_minutes: Optional[float] = None,
                             scope: Optional[str] = None,
                             severity: Optional[float] = None,
                             timeouts: Optional[MonitorAlertGroupOutlierTimeoutsArgs] = None,
                             custom_notification: Optional[MonitorAlertGroupOutlierCustomNotificationArgs] = None)func NewMonitorAlertGroupOutlier(ctx *Context, name string, args MonitorAlertGroupOutlierArgs, opts ...ResourceOption) (*MonitorAlertGroupOutlier, error)public MonitorAlertGroupOutlier(string name, MonitorAlertGroupOutlierArgs args, CustomResourceOptions? opts = null)
public MonitorAlertGroupOutlier(String name, MonitorAlertGroupOutlierArgs args)
public MonitorAlertGroupOutlier(String name, MonitorAlertGroupOutlierArgs args, CustomResourceOptions options)
type: sysdig:MonitorAlertGroupOutlier
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 MonitorAlertGroupOutlierArgs
- 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 MonitorAlertGroupOutlierArgs
- 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 MonitorAlertGroupOutlierArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MonitorAlertGroupOutlierArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MonitorAlertGroupOutlierArgs
- 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 monitorAlertGroupOutlierResource = new Sysdig.MonitorAlertGroupOutlier("monitorAlertGroupOutlierResource", new()
{
    Monitors = new[]
    {
        "string",
    },
    TriggerAfterMinutes = 0,
    Enabled = false,
    Capture = new Sysdig.Inputs.MonitorAlertGroupOutlierCaptureArgs
    {
        Duration = 0,
        Filename = "string",
        Filter = "string",
    },
    GroupName = "string",
    MonitorAlertGroupOutlierId = "string",
    Description = "string",
    Name = "string",
    NotificationChannels = new[]
    {
        0,
    },
    RenotificationMinutes = 0,
    Scope = "string",
    Severity = 0,
    Timeouts = new Sysdig.Inputs.MonitorAlertGroupOutlierTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Read = "string",
        Update = "string",
    },
    CustomNotification = new Sysdig.Inputs.MonitorAlertGroupOutlierCustomNotificationArgs
    {
        Title = "string",
        Append = "string",
        Prepend = "string",
    },
});
example, err := sysdig.NewMonitorAlertGroupOutlier(ctx, "monitorAlertGroupOutlierResource", &sysdig.MonitorAlertGroupOutlierArgs{
Monitors: pulumi.StringArray{
pulumi.String("string"),
},
TriggerAfterMinutes: pulumi.Float64(0),
Enabled: pulumi.Bool(false),
Capture: &.MonitorAlertGroupOutlierCaptureArgs{
Duration: pulumi.Float64(0),
Filename: pulumi.String("string"),
Filter: pulumi.String("string"),
},
GroupName: pulumi.String("string"),
MonitorAlertGroupOutlierId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
NotificationChannels: pulumi.Float64Array{
pulumi.Float64(0),
},
RenotificationMinutes: pulumi.Float64(0),
Scope: pulumi.String("string"),
Severity: pulumi.Float64(0),
Timeouts: &.MonitorAlertGroupOutlierTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
CustomNotification: &.MonitorAlertGroupOutlierCustomNotificationArgs{
Title: pulumi.String("string"),
Append: pulumi.String("string"),
Prepend: pulumi.String("string"),
},
})
var monitorAlertGroupOutlierResource = new MonitorAlertGroupOutlier("monitorAlertGroupOutlierResource", MonitorAlertGroupOutlierArgs.builder()
    .monitors("string")
    .triggerAfterMinutes(0)
    .enabled(false)
    .capture(MonitorAlertGroupOutlierCaptureArgs.builder()
        .duration(0)
        .filename("string")
        .filter("string")
        .build())
    .groupName("string")
    .monitorAlertGroupOutlierId("string")
    .description("string")
    .name("string")
    .notificationChannels(0)
    .renotificationMinutes(0)
    .scope("string")
    .severity(0)
    .timeouts(MonitorAlertGroupOutlierTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .read("string")
        .update("string")
        .build())
    .customNotification(MonitorAlertGroupOutlierCustomNotificationArgs.builder()
        .title("string")
        .append("string")
        .prepend("string")
        .build())
    .build());
monitor_alert_group_outlier_resource = sysdig.MonitorAlertGroupOutlier("monitorAlertGroupOutlierResource",
    monitors=["string"],
    trigger_after_minutes=0,
    enabled=False,
    capture={
        "duration": 0,
        "filename": "string",
        "filter": "string",
    },
    group_name="string",
    monitor_alert_group_outlier_id="string",
    description="string",
    name="string",
    notification_channels=[0],
    renotification_minutes=0,
    scope="string",
    severity=0,
    timeouts={
        "create": "string",
        "delete": "string",
        "read": "string",
        "update": "string",
    },
    custom_notification={
        "title": "string",
        "append": "string",
        "prepend": "string",
    })
const monitorAlertGroupOutlierResource = new sysdig.MonitorAlertGroupOutlier("monitorAlertGroupOutlierResource", {
    monitors: ["string"],
    triggerAfterMinutes: 0,
    enabled: false,
    capture: {
        duration: 0,
        filename: "string",
        filter: "string",
    },
    groupName: "string",
    monitorAlertGroupOutlierId: "string",
    description: "string",
    name: "string",
    notificationChannels: [0],
    renotificationMinutes: 0,
    scope: "string",
    severity: 0,
    timeouts: {
        create: "string",
        "delete": "string",
        read: "string",
        update: "string",
    },
    customNotification: {
        title: "string",
        append: "string",
        prepend: "string",
    },
});
type: sysdig:MonitorAlertGroupOutlier
properties:
    capture:
        duration: 0
        filename: string
        filter: string
    customNotification:
        append: string
        prepend: string
        title: string
    description: string
    enabled: false
    groupName: string
    monitorAlertGroupOutlierId: string
    monitors:
        - string
    name: string
    notificationChannels:
        - 0
    renotificationMinutes: 0
    scope: string
    severity: 0
    timeouts:
        create: string
        delete: string
        read: string
        update: string
    triggerAfterMinutes: 0
MonitorAlertGroupOutlier Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MonitorAlertGroupOutlier resource accepts the following input properties:
- Monitors List<string>
- TriggerAfter doubleMinutes 
- Capture
MonitorAlert Group Outlier Capture 
- CustomNotification MonitorAlert Group Outlier Custom Notification 
- Description string
- Enabled bool
- GroupName string
- MonitorAlert stringGroup Outlier Id 
- ID of the alert created.
- Name string
- NotificationChannels List<double>
- RenotificationMinutes double
- Scope string
- Severity double
- Timeouts
MonitorAlert Group Outlier Timeouts 
- Monitors []string
- TriggerAfter float64Minutes 
- Capture
MonitorAlert Group Outlier Capture Args 
- CustomNotification MonitorAlert Group Outlier Custom Notification Args 
- Description string
- Enabled bool
- GroupName string
- MonitorAlert stringGroup Outlier Id 
- ID of the alert created.
- Name string
- NotificationChannels []float64
- RenotificationMinutes float64
- Scope string
- Severity float64
- Timeouts
MonitorAlert Group Outlier Timeouts Args 
- monitors List<String>
- triggerAfter DoubleMinutes 
- capture
MonitorAlert Group Outlier Capture 
- customNotification MonitorAlert Group Outlier Custom Notification 
- description String
- enabled Boolean
- groupName String
- monitorAlert StringGroup Outlier Id 
- ID of the alert created.
- name String
- notificationChannels List<Double>
- renotificationMinutes Double
- scope String
- severity Double
- timeouts
MonitorAlert Group Outlier Timeouts 
- monitors string[]
- triggerAfter numberMinutes 
- capture
MonitorAlert Group Outlier Capture 
- customNotification MonitorAlert Group Outlier Custom Notification 
- description string
- enabled boolean
- groupName string
- monitorAlert stringGroup Outlier Id 
- ID of the alert created.
- name string
- notificationChannels number[]
- renotificationMinutes number
- scope string
- severity number
- timeouts
MonitorAlert Group Outlier Timeouts 
- monitors Sequence[str]
- trigger_after_ floatminutes 
- capture
MonitorAlert Group Outlier Capture Args 
- custom_notification MonitorAlert Group Outlier Custom Notification Args 
- description str
- enabled bool
- group_name str
- monitor_alert_ strgroup_ outlier_ id 
- ID of the alert created.
- name str
- notification_channels Sequence[float]
- renotification_minutes float
- scope str
- severity float
- timeouts
MonitorAlert Group Outlier Timeouts Args 
- monitors List<String>
- triggerAfter NumberMinutes 
- capture Property Map
- customNotification Property Map
- description String
- enabled Boolean
- groupName String
- monitorAlert StringGroup Outlier Id 
- ID of the alert created.
- name String
- notificationChannels List<Number>
- renotificationMinutes Number
- scope String
- severity Number
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the MonitorAlertGroupOutlier resource produces the following output properties:
Look up Existing MonitorAlertGroupOutlier Resource
Get an existing MonitorAlertGroupOutlier 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?: MonitorAlertGroupOutlierState, opts?: CustomResourceOptions): MonitorAlertGroupOutlier@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        capture: Optional[MonitorAlertGroupOutlierCaptureArgs] = None,
        custom_notification: Optional[MonitorAlertGroupOutlierCustomNotificationArgs] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        group_name: Optional[str] = None,
        monitor_alert_group_outlier_id: Optional[str] = None,
        monitors: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        notification_channels: Optional[Sequence[float]] = None,
        renotification_minutes: Optional[float] = None,
        scope: Optional[str] = None,
        severity: Optional[float] = None,
        team: Optional[float] = None,
        timeouts: Optional[MonitorAlertGroupOutlierTimeoutsArgs] = None,
        trigger_after_minutes: Optional[float] = None,
        version: Optional[float] = None) -> MonitorAlertGroupOutlierfunc GetMonitorAlertGroupOutlier(ctx *Context, name string, id IDInput, state *MonitorAlertGroupOutlierState, opts ...ResourceOption) (*MonitorAlertGroupOutlier, error)public static MonitorAlertGroupOutlier Get(string name, Input<string> id, MonitorAlertGroupOutlierState? state, CustomResourceOptions? opts = null)public static MonitorAlertGroupOutlier get(String name, Output<String> id, MonitorAlertGroupOutlierState state, CustomResourceOptions options)resources:  _:    type: sysdig:MonitorAlertGroupOutlier    get:      id: ${id}- 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.
- Capture
MonitorAlert Group Outlier Capture 
- CustomNotification MonitorAlert Group Outlier Custom Notification 
- Description string
- Enabled bool
- GroupName string
- MonitorAlert stringGroup Outlier Id 
- ID of the alert created.
- Monitors List<string>
- Name string
- NotificationChannels List<double>
- RenotificationMinutes double
- Scope string
- Severity double
- Team double
- Team ID that owns the alert.
- Timeouts
MonitorAlert Group Outlier Timeouts 
- TriggerAfter doubleMinutes 
- Version double
- Current version of the resource in Sysdig Monitor.
- Capture
MonitorAlert Group Outlier Capture Args 
- CustomNotification MonitorAlert Group Outlier Custom Notification Args 
- Description string
- Enabled bool
- GroupName string
- MonitorAlert stringGroup Outlier Id 
- ID of the alert created.
- Monitors []string
- Name string
- NotificationChannels []float64
- RenotificationMinutes float64
- Scope string
- Severity float64
- Team float64
- Team ID that owns the alert.
- Timeouts
MonitorAlert Group Outlier Timeouts Args 
- TriggerAfter float64Minutes 
- Version float64
- Current version of the resource in Sysdig Monitor.
- capture
MonitorAlert Group Outlier Capture 
- customNotification MonitorAlert Group Outlier Custom Notification 
- description String
- enabled Boolean
- groupName String
- monitorAlert StringGroup Outlier Id 
- ID of the alert created.
- monitors List<String>
- name String
- notificationChannels List<Double>
- renotificationMinutes Double
- scope String
- severity Double
- team Double
- Team ID that owns the alert.
- timeouts
MonitorAlert Group Outlier Timeouts 
- triggerAfter DoubleMinutes 
- version Double
- Current version of the resource in Sysdig Monitor.
- capture
MonitorAlert Group Outlier Capture 
- customNotification MonitorAlert Group Outlier Custom Notification 
- description string
- enabled boolean
- groupName string
- monitorAlert stringGroup Outlier Id 
- ID of the alert created.
- monitors string[]
- name string
- notificationChannels number[]
- renotificationMinutes number
- scope string
- severity number
- team number
- Team ID that owns the alert.
- timeouts
MonitorAlert Group Outlier Timeouts 
- triggerAfter numberMinutes 
- version number
- Current version of the resource in Sysdig Monitor.
- capture
MonitorAlert Group Outlier Capture Args 
- custom_notification MonitorAlert Group Outlier Custom Notification Args 
- description str
- enabled bool
- group_name str
- monitor_alert_ strgroup_ outlier_ id 
- ID of the alert created.
- monitors Sequence[str]
- name str
- notification_channels Sequence[float]
- renotification_minutes float
- scope str
- severity float
- team float
- Team ID that owns the alert.
- timeouts
MonitorAlert Group Outlier Timeouts Args 
- trigger_after_ floatminutes 
- version float
- Current version of the resource in Sysdig Monitor.
- capture Property Map
- customNotification Property Map
- description String
- enabled Boolean
- groupName String
- monitorAlert StringGroup Outlier Id 
- ID of the alert created.
- monitors List<String>
- name String
- notificationChannels List<Number>
- renotificationMinutes Number
- scope String
- severity Number
- team Number
- Team ID that owns the alert.
- timeouts Property Map
- triggerAfter NumberMinutes 
- version Number
- Current version of the resource in Sysdig Monitor.
Supporting Types
MonitorAlertGroupOutlierCapture, MonitorAlertGroupOutlierCaptureArgs          
MonitorAlertGroupOutlierCustomNotification, MonitorAlertGroupOutlierCustomNotificationArgs            
MonitorAlertGroupOutlierTimeouts, MonitorAlertGroupOutlierTimeoutsArgs          
Import
Group Outlier alerts can be imported using the alert ID, e.g.
$ pulumi import sysdig:index/monitorAlertGroupOutlier:MonitorAlertGroupOutlier example 12345
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sysdig sysdiglabs/terraform-provider-sysdig
- License
- Notes
- This Pulumi package is based on the sysdigTerraform Provider.