1. Packages
  2. Dynatrace
  3. API Docs
  4. OsServices
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.OsServices

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create OsServices Resource

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

    Constructor syntax

    new OsServices(name: string, args: OsServicesArgs, opts?: CustomResourceOptions);
    @overload
    def OsServices(resource_name: str,
                   args: OsServicesArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def OsServices(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   enabled: Optional[bool] = None,
                   alerting: Optional[bool] = None,
                   system: Optional[str] = None,
                   monitoring: Optional[bool] = None,
                   detection_conditions_windows: Optional[OsServicesDetectionConditionsWindowsArgs] = None,
                   metadata: Optional[OsServicesMetadataArgs] = None,
                   alert_activation_duration: Optional[int] = None,
                   name: Optional[str] = None,
                   not_installed_alerting: Optional[bool] = None,
                   scope: Optional[str] = None,
                   status_condition_linux: Optional[str] = None,
                   status_condition_windows: Optional[str] = None,
                   detection_conditions_linux: Optional[OsServicesDetectionConditionsLinuxArgs] = None)
    func NewOsServices(ctx *Context, name string, args OsServicesArgs, opts ...ResourceOption) (*OsServices, error)
    public OsServices(string name, OsServicesArgs args, CustomResourceOptions? opts = null)
    public OsServices(String name, OsServicesArgs args)
    public OsServices(String name, OsServicesArgs args, CustomResourceOptions options)
    
    type: dynatrace:OsServices
    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 OsServicesArgs
    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 OsServicesArgs
    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 OsServicesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OsServicesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OsServicesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var osServicesResource = new Dynatrace.OsServices("osServicesResource", new()
    {
        Enabled = false,
        Alerting = false,
        System = "string",
        Monitoring = false,
        DetectionConditionsWindows = new Dynatrace.Inputs.OsServicesDetectionConditionsWindowsArgs
        {
            DetectionConditionsWindows = new[]
            {
                new Dynatrace.Inputs.OsServicesDetectionConditionsWindowsDetectionConditionsWindowArgs
                {
                    Property = "string",
                    Condition = "string",
                    StartupCondition = "string",
                },
            },
        },
        Metadata = new Dynatrace.Inputs.OsServicesMetadataArgs
        {
            Items = new[]
            {
                new Dynatrace.Inputs.OsServicesMetadataItemArgs
                {
                    MetadataKey = "string",
                    MetadataValue = "string",
                },
            },
        },
        AlertActivationDuration = 0,
        Name = "string",
        NotInstalledAlerting = false,
        Scope = "string",
        StatusConditionLinux = "string",
        StatusConditionWindows = "string",
        DetectionConditionsLinux = new Dynatrace.Inputs.OsServicesDetectionConditionsLinuxArgs
        {
            LinuxDetectionConditions = new[]
            {
                new Dynatrace.Inputs.OsServicesDetectionConditionsLinuxLinuxDetectionConditionArgs
                {
                    Property = "string",
                    Condition = "string",
                    StartupCondition = "string",
                },
            },
        },
    });
    
    example, err := dynatrace.NewOsServices(ctx, "osServicesResource", &dynatrace.OsServicesArgs{
    	Enabled:    pulumi.Bool(false),
    	Alerting:   pulumi.Bool(false),
    	System:     pulumi.String("string"),
    	Monitoring: pulumi.Bool(false),
    	DetectionConditionsWindows: &dynatrace.OsServicesDetectionConditionsWindowsArgs{
    		DetectionConditionsWindows: dynatrace.OsServicesDetectionConditionsWindowsDetectionConditionsWindowArray{
    			&dynatrace.OsServicesDetectionConditionsWindowsDetectionConditionsWindowArgs{
    				Property:         pulumi.String("string"),
    				Condition:        pulumi.String("string"),
    				StartupCondition: pulumi.String("string"),
    			},
    		},
    	},
    	Metadata: &dynatrace.OsServicesMetadataArgs{
    		Items: dynatrace.OsServicesMetadataItemArray{
    			&dynatrace.OsServicesMetadataItemArgs{
    				MetadataKey:   pulumi.String("string"),
    				MetadataValue: pulumi.String("string"),
    			},
    		},
    	},
    	AlertActivationDuration: pulumi.Int(0),
    	Name:                    pulumi.String("string"),
    	NotInstalledAlerting:    pulumi.Bool(false),
    	Scope:                   pulumi.String("string"),
    	StatusConditionLinux:    pulumi.String("string"),
    	StatusConditionWindows:  pulumi.String("string"),
    	DetectionConditionsLinux: &dynatrace.OsServicesDetectionConditionsLinuxArgs{
    		LinuxDetectionConditions: dynatrace.OsServicesDetectionConditionsLinuxLinuxDetectionConditionArray{
    			&dynatrace.OsServicesDetectionConditionsLinuxLinuxDetectionConditionArgs{
    				Property:         pulumi.String("string"),
    				Condition:        pulumi.String("string"),
    				StartupCondition: pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var osServicesResource = new OsServices("osServicesResource", OsServicesArgs.builder()        
        .enabled(false)
        .alerting(false)
        .system("string")
        .monitoring(false)
        .detectionConditionsWindows(OsServicesDetectionConditionsWindowsArgs.builder()
            .detectionConditionsWindows(OsServicesDetectionConditionsWindowsDetectionConditionsWindowArgs.builder()
                .property("string")
                .condition("string")
                .startupCondition("string")
                .build())
            .build())
        .metadata(OsServicesMetadataArgs.builder()
            .items(OsServicesMetadataItemArgs.builder()
                .metadataKey("string")
                .metadataValue("string")
                .build())
            .build())
        .alertActivationDuration(0)
        .name("string")
        .notInstalledAlerting(false)
        .scope("string")
        .statusConditionLinux("string")
        .statusConditionWindows("string")
        .detectionConditionsLinux(OsServicesDetectionConditionsLinuxArgs.builder()
            .linuxDetectionConditions(OsServicesDetectionConditionsLinuxLinuxDetectionConditionArgs.builder()
                .property("string")
                .condition("string")
                .startupCondition("string")
                .build())
            .build())
        .build());
    
    os_services_resource = dynatrace.OsServices("osServicesResource",
        enabled=False,
        alerting=False,
        system="string",
        monitoring=False,
        detection_conditions_windows=dynatrace.OsServicesDetectionConditionsWindowsArgs(
            detection_conditions_windows=[dynatrace.OsServicesDetectionConditionsWindowsDetectionConditionsWindowArgs(
                property="string",
                condition="string",
                startup_condition="string",
            )],
        ),
        metadata=dynatrace.OsServicesMetadataArgs(
            items=[dynatrace.OsServicesMetadataItemArgs(
                metadata_key="string",
                metadata_value="string",
            )],
        ),
        alert_activation_duration=0,
        name="string",
        not_installed_alerting=False,
        scope="string",
        status_condition_linux="string",
        status_condition_windows="string",
        detection_conditions_linux=dynatrace.OsServicesDetectionConditionsLinuxArgs(
            linux_detection_conditions=[dynatrace.OsServicesDetectionConditionsLinuxLinuxDetectionConditionArgs(
                property="string",
                condition="string",
                startup_condition="string",
            )],
        ))
    
    const osServicesResource = new dynatrace.OsServices("osServicesResource", {
        enabled: false,
        alerting: false,
        system: "string",
        monitoring: false,
        detectionConditionsWindows: {
            detectionConditionsWindows: [{
                property: "string",
                condition: "string",
                startupCondition: "string",
            }],
        },
        metadata: {
            items: [{
                metadataKey: "string",
                metadataValue: "string",
            }],
        },
        alertActivationDuration: 0,
        name: "string",
        notInstalledAlerting: false,
        scope: "string",
        statusConditionLinux: "string",
        statusConditionWindows: "string",
        detectionConditionsLinux: {
            linuxDetectionConditions: [{
                property: "string",
                condition: "string",
                startupCondition: "string",
            }],
        },
    });
    
    type: dynatrace:OsServices
    properties:
        alertActivationDuration: 0
        alerting: false
        detectionConditionsLinux:
            linuxDetectionConditions:
                - condition: string
                  property: string
                  startupCondition: string
        detectionConditionsWindows:
            detectionConditionsWindows:
                - condition: string
                  property: string
                  startupCondition: string
        enabled: false
        metadata:
            items:
                - metadataKey: string
                  metadataValue: string
        monitoring: false
        name: string
        notInstalledAlerting: false
        scope: string
        statusConditionLinux: string
        statusConditionWindows: string
        system: string
    

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

    Alerting bool
    Toggle the switch in order to enable or disable alerting for this policy
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Monitoring bool
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    System string
    Possible Values: LINUX, WINDOWS
    AlertActivationDuration int
    The number of 10-second measurement cycles before alerting is triggered
    DetectionConditionsLinux Lbrlabs.PulumiPackage.Dynatrace.Inputs.OsServicesDetectionConditionsLinux
    Detection rules
    DetectionConditionsWindows Lbrlabs.PulumiPackage.Dynatrace.Inputs.OsServicesDetectionConditionsWindows
    Detection rules
    Metadata Lbrlabs.PulumiPackage.Dynatrace.Inputs.OsServicesMetadata
    Set of additional key-value properties to be attached to the triggered event.
    Name string
    Rule name
    NotInstalledAlerting bool
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    StatusConditionLinux string
    This string has to match a required format. See OS services monitoring.
    StatusConditionWindows string
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    Alerting bool
    Toggle the switch in order to enable or disable alerting for this policy
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Monitoring bool
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    System string
    Possible Values: LINUX, WINDOWS
    AlertActivationDuration int
    The number of 10-second measurement cycles before alerting is triggered
    DetectionConditionsLinux OsServicesDetectionConditionsLinuxArgs
    Detection rules
    DetectionConditionsWindows OsServicesDetectionConditionsWindowsArgs
    Detection rules
    Metadata OsServicesMetadataArgs
    Set of additional key-value properties to be attached to the triggered event.
    Name string
    Rule name
    NotInstalledAlerting bool
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    StatusConditionLinux string
    This string has to match a required format. See OS services monitoring.
    StatusConditionWindows string
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    alerting Boolean
    Toggle the switch in order to enable or disable alerting for this policy
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    monitoring Boolean
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    system String
    Possible Values: LINUX, WINDOWS
    alertActivationDuration Integer
    The number of 10-second measurement cycles before alerting is triggered
    detectionConditionsLinux OsServicesDetectionConditionsLinux
    Detection rules
    detectionConditionsWindows OsServicesDetectionConditionsWindows
    Detection rules
    metadata OsServicesMetadata
    Set of additional key-value properties to be attached to the triggered event.
    name String
    Rule name
    notInstalledAlerting Boolean
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    statusConditionLinux String
    This string has to match a required format. See OS services monitoring.
    statusConditionWindows String
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    alerting boolean
    Toggle the switch in order to enable or disable alerting for this policy
    enabled boolean
    This setting is enabled (true) or disabled (false)
    monitoring boolean
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    system string
    Possible Values: LINUX, WINDOWS
    alertActivationDuration number
    The number of 10-second measurement cycles before alerting is triggered
    detectionConditionsLinux OsServicesDetectionConditionsLinux
    Detection rules
    detectionConditionsWindows OsServicesDetectionConditionsWindows
    Detection rules
    metadata OsServicesMetadata
    Set of additional key-value properties to be attached to the triggered event.
    name string
    Rule name
    notInstalledAlerting boolean
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    statusConditionLinux string
    This string has to match a required format. See OS services monitoring.
    statusConditionWindows string
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    alerting bool
    Toggle the switch in order to enable or disable alerting for this policy
    enabled bool
    This setting is enabled (true) or disabled (false)
    monitoring bool
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    system str
    Possible Values: LINUX, WINDOWS
    alert_activation_duration int
    The number of 10-second measurement cycles before alerting is triggered
    detection_conditions_linux OsServicesDetectionConditionsLinuxArgs
    Detection rules
    detection_conditions_windows OsServicesDetectionConditionsWindowsArgs
    Detection rules
    metadata OsServicesMetadataArgs
    Set of additional key-value properties to be attached to the triggered event.
    name str
    Rule name
    not_installed_alerting bool
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope str
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    status_condition_linux str
    This string has to match a required format. See OS services monitoring.
    status_condition_windows str
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    alerting Boolean
    Toggle the switch in order to enable or disable alerting for this policy
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    monitoring Boolean
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    system String
    Possible Values: LINUX, WINDOWS
    alertActivationDuration Number
    The number of 10-second measurement cycles before alerting is triggered
    detectionConditionsLinux Property Map
    Detection rules
    detectionConditionsWindows Property Map
    Detection rules
    metadata Property Map
    Set of additional key-value properties to be attached to the triggered event.
    name String
    Rule name
    notInstalledAlerting Boolean
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    statusConditionLinux String
    This string has to match a required format. See OS services monitoring.
    statusConditionWindows String
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused

    Outputs

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

    Get an existing OsServices 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?: OsServicesState, opts?: CustomResourceOptions): OsServices
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alert_activation_duration: Optional[int] = None,
            alerting: Optional[bool] = None,
            detection_conditions_linux: Optional[OsServicesDetectionConditionsLinuxArgs] = None,
            detection_conditions_windows: Optional[OsServicesDetectionConditionsWindowsArgs] = None,
            enabled: Optional[bool] = None,
            metadata: Optional[OsServicesMetadataArgs] = None,
            monitoring: Optional[bool] = None,
            name: Optional[str] = None,
            not_installed_alerting: Optional[bool] = None,
            scope: Optional[str] = None,
            status_condition_linux: Optional[str] = None,
            status_condition_windows: Optional[str] = None,
            system: Optional[str] = None) -> OsServices
    func GetOsServices(ctx *Context, name string, id IDInput, state *OsServicesState, opts ...ResourceOption) (*OsServices, error)
    public static OsServices Get(string name, Input<string> id, OsServicesState? state, CustomResourceOptions? opts = null)
    public static OsServices get(String name, Output<String> id, OsServicesState 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.
    The following state arguments are supported:
    AlertActivationDuration int
    The number of 10-second measurement cycles before alerting is triggered
    Alerting bool
    Toggle the switch in order to enable or disable alerting for this policy
    DetectionConditionsLinux Lbrlabs.PulumiPackage.Dynatrace.Inputs.OsServicesDetectionConditionsLinux
    Detection rules
    DetectionConditionsWindows Lbrlabs.PulumiPackage.Dynatrace.Inputs.OsServicesDetectionConditionsWindows
    Detection rules
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Metadata Lbrlabs.PulumiPackage.Dynatrace.Inputs.OsServicesMetadata
    Set of additional key-value properties to be attached to the triggered event.
    Monitoring bool
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    Name string
    Rule name
    NotInstalledAlerting bool
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    StatusConditionLinux string
    This string has to match a required format. See OS services monitoring.
    StatusConditionWindows string
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    System string
    Possible Values: LINUX, WINDOWS
    AlertActivationDuration int
    The number of 10-second measurement cycles before alerting is triggered
    Alerting bool
    Toggle the switch in order to enable or disable alerting for this policy
    DetectionConditionsLinux OsServicesDetectionConditionsLinuxArgs
    Detection rules
    DetectionConditionsWindows OsServicesDetectionConditionsWindowsArgs
    Detection rules
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Metadata OsServicesMetadataArgs
    Set of additional key-value properties to be attached to the triggered event.
    Monitoring bool
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    Name string
    Rule name
    NotInstalledAlerting bool
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    StatusConditionLinux string
    This string has to match a required format. See OS services monitoring.
    StatusConditionWindows string
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    System string
    Possible Values: LINUX, WINDOWS
    alertActivationDuration Integer
    The number of 10-second measurement cycles before alerting is triggered
    alerting Boolean
    Toggle the switch in order to enable or disable alerting for this policy
    detectionConditionsLinux OsServicesDetectionConditionsLinux
    Detection rules
    detectionConditionsWindows OsServicesDetectionConditionsWindows
    Detection rules
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    metadata OsServicesMetadata
    Set of additional key-value properties to be attached to the triggered event.
    monitoring Boolean
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    name String
    Rule name
    notInstalledAlerting Boolean
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    statusConditionLinux String
    This string has to match a required format. See OS services monitoring.
    statusConditionWindows String
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    system String
    Possible Values: LINUX, WINDOWS
    alertActivationDuration number
    The number of 10-second measurement cycles before alerting is triggered
    alerting boolean
    Toggle the switch in order to enable or disable alerting for this policy
    detectionConditionsLinux OsServicesDetectionConditionsLinux
    Detection rules
    detectionConditionsWindows OsServicesDetectionConditionsWindows
    Detection rules
    enabled boolean
    This setting is enabled (true) or disabled (false)
    metadata OsServicesMetadata
    Set of additional key-value properties to be attached to the triggered event.
    monitoring boolean
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    name string
    Rule name
    notInstalledAlerting boolean
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    statusConditionLinux string
    This string has to match a required format. See OS services monitoring.
    statusConditionWindows string
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    system string
    Possible Values: LINUX, WINDOWS
    alert_activation_duration int
    The number of 10-second measurement cycles before alerting is triggered
    alerting bool
    Toggle the switch in order to enable or disable alerting for this policy
    detection_conditions_linux OsServicesDetectionConditionsLinuxArgs
    Detection rules
    detection_conditions_windows OsServicesDetectionConditionsWindowsArgs
    Detection rules
    enabled bool
    This setting is enabled (true) or disabled (false)
    metadata OsServicesMetadataArgs
    Set of additional key-value properties to be attached to the triggered event.
    monitoring bool
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    name str
    Rule name
    not_installed_alerting bool
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope str
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    status_condition_linux str
    This string has to match a required format. See OS services monitoring.
    status_condition_windows str
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    system str
    Possible Values: LINUX, WINDOWS
    alertActivationDuration Number
    The number of 10-second measurement cycles before alerting is triggered
    alerting Boolean
    Toggle the switch in order to enable or disable alerting for this policy
    detectionConditionsLinux Property Map
    Detection rules
    detectionConditionsWindows Property Map
    Detection rules
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    metadata Property Map
    Set of additional key-value properties to be attached to the triggered event.
    monitoring Boolean
    Toggle the switch in order to enable or disable availability metric monitoring for this policy. Availability metrics consume custom metrics (DDUs). Refer to documentation for DDU consumption examples. Each monitored service consumes one custom metric.
    name String
    Rule name
    notInstalledAlerting Boolean
    By default, Dynatrace does not alert if the service is not installed. Toggle the switch to enable or disable this feature
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    statusConditionLinux String
    This string has to match a required format. See OS services monitoring.
    statusConditionWindows String
    This string has to match a required format. See OS services monitoring. - $eq(paused) – Matches services that are in paused state. Available logic operations: - $not($eq(paused)) – Matches services that are in state different from paused. - $or($eq(paused),$eq(running)) – Matches services that are either in paused or running state. Use one of the following values as a parameter for this condition: - running - stopped - start_pending - stop_pending - continue_pending - pause_pending - paused
    system String
    Possible Values: LINUX, WINDOWS

    Supporting Types

    OsServicesDetectionConditionsLinux, OsServicesDetectionConditionsLinuxArgs

    OsServicesDetectionConditionsLinuxLinuxDetectionCondition, OsServicesDetectionConditionsLinuxLinuxDetectionConditionArgs

    OsServicesDetectionConditionsWindows, OsServicesDetectionConditionsWindowsArgs

    OsServicesDetectionConditionsWindowsDetectionConditionsWindow, OsServicesDetectionConditionsWindowsDetectionConditionsWindowArgs

    OsServicesMetadata, OsServicesMetadataArgs

    OsServicesMetadataItem, OsServicesMetadataItemArgs

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs