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

dynatrace.AutotagRules

Explore with Pulumi AI

dynatrace.AutotagV2 is the primary resource to manage auto tags. This particular resource allows you to manage a subset of tags of a given auto tag ID. The benefit of this is that it allows the flexibility of multiple users to manage the same automatically applied tag.

This resource requires the API token scopes Read settings (settings.read) and Write settings (settings.write)

Dynatrace Documentation

  • Define and apply tags - https://www.dynatrace.com/support/help/how-to-use-dynatrace/tags-and-metadata/setup/how-to-define-tags

  • Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: builtin:tags.auto-tagging)

The full documentation of the export feature is available here.

Resource Example Usage

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

const sampleAutotagV2 = new dynatrace.AutotagV2("sampleAutotagV2", {rulesMaintainedExternally: true});
//Be careful when maintaining `dynatrace_autotag_rules` in separate modules.
//Do not execute `pulumi up` in parallel when several modules contain 
//`dynatrace_autotag_rules` referring to the same `dynatrace_autotag_v2`.
const sampleAutotagRules = new dynatrace.AutotagRules("sampleAutotagRules", {
    autoTagId: sampleAutotagV2.id,
    rules: {
        rules: [{
            type: "SELECTOR",
            enabled: true,
            entitySelector: "type(SERVICE),tag(sample)",
            valueFormat: "disabled",
            valueNormalization: "Leave text as-is",
        }],
    },
});
Copy
import pulumi
import pulumiverse_dynatrace as dynatrace

sample_autotag_v2 = dynatrace.AutotagV2("sampleAutotagV2", rules_maintained_externally=True)
#Be careful when maintaining `dynatrace_autotag_rules` in separate modules.
#Do not execute `pulumi up` in parallel when several modules contain 
#`dynatrace_autotag_rules` referring to the same `dynatrace_autotag_v2`.
sample_autotag_rules = dynatrace.AutotagRules("sampleAutotagRules",
    auto_tag_id=sample_autotag_v2.id,
    rules={
        "rules": [{
            "type": "SELECTOR",
            "enabled": True,
            "entity_selector": "type(SERVICE),tag(sample)",
            "value_format": "disabled",
            "value_normalization": "Leave text as-is",
        }],
    })
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		sampleAutotagV2, err := dynatrace.NewAutotagV2(ctx, "sampleAutotagV2", &dynatrace.AutotagV2Args{
			RulesMaintainedExternally: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = dynatrace.NewAutotagRules(ctx, "sampleAutotagRules", &dynatrace.AutotagRulesArgs{
			AutoTagId: sampleAutotagV2.ID(),
			Rules: &dynatrace.AutotagRulesRulesArgs{
				Rules: dynatrace.AutotagRulesRulesRuleArray{
					&dynatrace.AutotagRulesRulesRuleArgs{
						Type:               pulumi.String("SELECTOR"),
						Enabled:            pulumi.Bool(true),
						EntitySelector:     pulumi.String("type(SERVICE),tag(sample)"),
						ValueFormat:        pulumi.String("disabled"),
						ValueNormalization: pulumi.String("Leave text as-is"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;

return await Deployment.RunAsync(() => 
{
    var sampleAutotagV2 = new Dynatrace.AutotagV2("sampleAutotagV2", new()
    {
        RulesMaintainedExternally = true,
    });

    //Be careful when maintaining `dynatrace_autotag_rules` in separate modules.
    //Do not execute `pulumi up` in parallel when several modules contain 
    //`dynatrace_autotag_rules` referring to the same `dynatrace_autotag_v2`.
    var sampleAutotagRules = new Dynatrace.AutotagRules("sampleAutotagRules", new()
    {
        AutoTagId = sampleAutotagV2.Id,
        Rules = new Dynatrace.Inputs.AutotagRulesRulesArgs
        {
            Rules = new[]
            {
                new Dynatrace.Inputs.AutotagRulesRulesRuleArgs
                {
                    Type = "SELECTOR",
                    Enabled = true,
                    EntitySelector = "type(SERVICE),tag(sample)",
                    ValueFormat = "disabled",
                    ValueNormalization = "Leave text as-is",
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.AutotagV2;
import com.pulumi.dynatrace.AutotagV2Args;
import com.pulumi.dynatrace.AutotagRules;
import com.pulumi.dynatrace.AutotagRulesArgs;
import com.pulumi.dynatrace.inputs.AutotagRulesRulesArgs;
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 sampleAutotagV2 = new AutotagV2("sampleAutotagV2", AutotagV2Args.builder()
            .rulesMaintainedExternally(true)
            .build());

        //Be careful when maintaining `dynatrace_autotag_rules` in separate modules.
        //Do not execute `pulumi up` in parallel when several modules contain 
        //`dynatrace_autotag_rules` referring to the same `dynatrace_autotag_v2`.
        var sampleAutotagRules = new AutotagRules("sampleAutotagRules", AutotagRulesArgs.builder()
            .autoTagId(sampleAutotagV2.id())
            .rules(AutotagRulesRulesArgs.builder()
                .rules(AutotagRulesRulesRuleArgs.builder()
                    .type("SELECTOR")
                    .enabled(true)
                    .entitySelector("type(SERVICE),tag(sample)")
                    .valueFormat("disabled")
                    .valueNormalization("Leave text as-is")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  sampleAutotagV2: # /*
  # Be careful when maintaining `dynatrace_autotag_rules` in separate modules.
  # Do not execute `pulumi up` in parallel when several modules contain 
  # `dynatrace_autotag_rules` referring to the same `dynatrace_autotag_v2`.
  # */
    type: dynatrace:AutotagV2
    properties:
      rulesMaintainedExternally: true
  sampleAutotagRules:
    type: dynatrace:AutotagRules
    properties:
      autoTagId: ${sampleAutotagV2.id}
      rules:
        rules:
          - type: SELECTOR
            enabled: true
            entitySelector: type(SERVICE),tag(sample)
            valueFormat: disabled
            valueNormalization: Leave text as-is
Copy

Create AutotagRules Resource

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

Constructor syntax

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

@overload
def AutotagRules(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 auto_tag_id: Optional[str] = None,
                 current_state: Optional[str] = None,
                 rules: Optional[AutotagRulesRulesArgs] = None)
func NewAutotagRules(ctx *Context, name string, args AutotagRulesArgs, opts ...ResourceOption) (*AutotagRules, error)
public AutotagRules(string name, AutotagRulesArgs args, CustomResourceOptions? opts = null)
public AutotagRules(String name, AutotagRulesArgs args)
public AutotagRules(String name, AutotagRulesArgs args, CustomResourceOptions options)
type: dynatrace:AutotagRules
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AutotagRulesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AutotagRulesArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AutotagRulesArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AutotagRulesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AutotagRulesArgs
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 autotagRulesResource = new Dynatrace.AutotagRules("autotagRulesResource", new()
{
    AutoTagId = "string",
    CurrentState = "string",
    Rules = new Dynatrace.Inputs.AutotagRulesRulesArgs
    {
        Rules = new[]
        {
            new Dynatrace.Inputs.AutotagRulesRulesRuleArgs
            {
                Enabled = false,
                Type = "string",
                ValueNormalization = "string",
                AttributeRule = new Dynatrace.Inputs.AutotagRulesRulesRuleAttributeRuleArgs
                {
                    Conditions = new Dynatrace.Inputs.AutotagRulesRulesRuleAttributeRuleConditionsArgs
                    {
                        Conditions = new[]
                        {
                            new Dynatrace.Inputs.AutotagRulesRulesRuleAttributeRuleConditionsConditionArgs
                            {
                                Key = "string",
                                Operator = "string",
                                CaseSensitive = false,
                                DynamicKey = "string",
                                DynamicKeySource = "string",
                                EntityId = "string",
                                EnumValue = "string",
                                IntegerValue = 0,
                                StringValue = "string",
                                Tag = "string",
                            },
                        },
                    },
                    EntityType = "string",
                    AzureToPgpropagation = false,
                    AzureToServicePropagation = false,
                    HostToPgpropagation = false,
                    PgToHostPropagation = false,
                    PgToServicePropagation = false,
                    ServiceToHostPropagation = false,
                    ServiceToPgpropagation = false,
                },
                EntitySelector = "string",
                ValueFormat = "string",
            },
        },
    },
});
Copy
example, err := dynatrace.NewAutotagRules(ctx, "autotagRulesResource", &dynatrace.AutotagRulesArgs{
	AutoTagId:    pulumi.String("string"),
	CurrentState: pulumi.String("string"),
	Rules: &dynatrace.AutotagRulesRulesArgs{
		Rules: dynatrace.AutotagRulesRulesRuleArray{
			&dynatrace.AutotagRulesRulesRuleArgs{
				Enabled:            pulumi.Bool(false),
				Type:               pulumi.String("string"),
				ValueNormalization: pulumi.String("string"),
				AttributeRule: &dynatrace.AutotagRulesRulesRuleAttributeRuleArgs{
					Conditions: &dynatrace.AutotagRulesRulesRuleAttributeRuleConditionsArgs{
						Conditions: dynatrace.AutotagRulesRulesRuleAttributeRuleConditionsConditionArray{
							&dynatrace.AutotagRulesRulesRuleAttributeRuleConditionsConditionArgs{
								Key:              pulumi.String("string"),
								Operator:         pulumi.String("string"),
								CaseSensitive:    pulumi.Bool(false),
								DynamicKey:       pulumi.String("string"),
								DynamicKeySource: pulumi.String("string"),
								EntityId:         pulumi.String("string"),
								EnumValue:        pulumi.String("string"),
								IntegerValue:     pulumi.Int(0),
								StringValue:      pulumi.String("string"),
								Tag:              pulumi.String("string"),
							},
						},
					},
					EntityType:                pulumi.String("string"),
					AzureToPgpropagation:      pulumi.Bool(false),
					AzureToServicePropagation: pulumi.Bool(false),
					HostToPgpropagation:       pulumi.Bool(false),
					PgToHostPropagation:       pulumi.Bool(false),
					PgToServicePropagation:    pulumi.Bool(false),
					ServiceToHostPropagation:  pulumi.Bool(false),
					ServiceToPgpropagation:    pulumi.Bool(false),
				},
				EntitySelector: pulumi.String("string"),
				ValueFormat:    pulumi.String("string"),
			},
		},
	},
})
Copy
var autotagRulesResource = new AutotagRules("autotagRulesResource", AutotagRulesArgs.builder()
    .autoTagId("string")
    .currentState("string")
    .rules(AutotagRulesRulesArgs.builder()
        .rules(AutotagRulesRulesRuleArgs.builder()
            .enabled(false)
            .type("string")
            .valueNormalization("string")
            .attributeRule(AutotagRulesRulesRuleAttributeRuleArgs.builder()
                .conditions(AutotagRulesRulesRuleAttributeRuleConditionsArgs.builder()
                    .conditions(AutotagRulesRulesRuleAttributeRuleConditionsConditionArgs.builder()
                        .key("string")
                        .operator("string")
                        .caseSensitive(false)
                        .dynamicKey("string")
                        .dynamicKeySource("string")
                        .entityId("string")
                        .enumValue("string")
                        .integerValue(0)
                        .stringValue("string")
                        .tag("string")
                        .build())
                    .build())
                .entityType("string")
                .azureToPgpropagation(false)
                .azureToServicePropagation(false)
                .hostToPgpropagation(false)
                .pgToHostPropagation(false)
                .pgToServicePropagation(false)
                .serviceToHostPropagation(false)
                .serviceToPgpropagation(false)
                .build())
            .entitySelector("string")
            .valueFormat("string")
            .build())
        .build())
    .build());
Copy
autotag_rules_resource = dynatrace.AutotagRules("autotagRulesResource",
    auto_tag_id="string",
    current_state="string",
    rules={
        "rules": [{
            "enabled": False,
            "type": "string",
            "value_normalization": "string",
            "attribute_rule": {
                "conditions": {
                    "conditions": [{
                        "key": "string",
                        "operator": "string",
                        "case_sensitive": False,
                        "dynamic_key": "string",
                        "dynamic_key_source": "string",
                        "entity_id": "string",
                        "enum_value": "string",
                        "integer_value": 0,
                        "string_value": "string",
                        "tag": "string",
                    }],
                },
                "entity_type": "string",
                "azure_to_pgpropagation": False,
                "azure_to_service_propagation": False,
                "host_to_pgpropagation": False,
                "pg_to_host_propagation": False,
                "pg_to_service_propagation": False,
                "service_to_host_propagation": False,
                "service_to_pgpropagation": False,
            },
            "entity_selector": "string",
            "value_format": "string",
        }],
    })
Copy
const autotagRulesResource = new dynatrace.AutotagRules("autotagRulesResource", {
    autoTagId: "string",
    currentState: "string",
    rules: {
        rules: [{
            enabled: false,
            type: "string",
            valueNormalization: "string",
            attributeRule: {
                conditions: {
                    conditions: [{
                        key: "string",
                        operator: "string",
                        caseSensitive: false,
                        dynamicKey: "string",
                        dynamicKeySource: "string",
                        entityId: "string",
                        enumValue: "string",
                        integerValue: 0,
                        stringValue: "string",
                        tag: "string",
                    }],
                },
                entityType: "string",
                azureToPgpropagation: false,
                azureToServicePropagation: false,
                hostToPgpropagation: false,
                pgToHostPropagation: false,
                pgToServicePropagation: false,
                serviceToHostPropagation: false,
                serviceToPgpropagation: false,
            },
            entitySelector: "string",
            valueFormat: "string",
        }],
    },
});
Copy
type: dynatrace:AutotagRules
properties:
    autoTagId: string
    currentState: string
    rules:
        rules:
            - attributeRule:
                azureToPgpropagation: false
                azureToServicePropagation: false
                conditions:
                    conditions:
                        - caseSensitive: false
                          dynamicKey: string
                          dynamicKeySource: string
                          entityId: string
                          enumValue: string
                          integerValue: 0
                          key: string
                          operator: string
                          stringValue: string
                          tag: string
                entityType: string
                hostToPgpropagation: false
                pgToHostPropagation: false
                pgToServicePropagation: false
                serviceToHostPropagation: false
                serviceToPgpropagation: false
              enabled: false
              entitySelector: string
              type: string
              valueFormat: string
              valueNormalization: string
Copy

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

AutoTagId This property is required. string
Automatically applied tag ID
CurrentState string
For internal use: current state of rules in JSON format
Rules Pulumiverse.Dynatrace.Inputs.AutotagRulesRules
Rules
AutoTagId This property is required. string
Automatically applied tag ID
CurrentState string
For internal use: current state of rules in JSON format
Rules AutotagRulesRulesArgs
Rules
autoTagId This property is required. String
Automatically applied tag ID
currentState String
For internal use: current state of rules in JSON format
rules AutotagRulesRules
Rules
autoTagId This property is required. string
Automatically applied tag ID
currentState string
For internal use: current state of rules in JSON format
rules AutotagRulesRules
Rules
auto_tag_id This property is required. str
Automatically applied tag ID
current_state str
For internal use: current state of rules in JSON format
rules AutotagRulesRulesArgs
Rules
autoTagId This property is required. String
Automatically applied tag ID
currentState String
For internal use: current state of rules in JSON format
rules Property Map
Rules

Outputs

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

Get an existing AutotagRules 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?: AutotagRulesState, opts?: CustomResourceOptions): AutotagRules
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auto_tag_id: Optional[str] = None,
        current_state: Optional[str] = None,
        rules: Optional[AutotagRulesRulesArgs] = None) -> AutotagRules
func GetAutotagRules(ctx *Context, name string, id IDInput, state *AutotagRulesState, opts ...ResourceOption) (*AutotagRules, error)
public static AutotagRules Get(string name, Input<string> id, AutotagRulesState? state, CustomResourceOptions? opts = null)
public static AutotagRules get(String name, Output<String> id, AutotagRulesState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:AutotagRules    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AutoTagId string
Automatically applied tag ID
CurrentState string
For internal use: current state of rules in JSON format
Rules Pulumiverse.Dynatrace.Inputs.AutotagRulesRules
Rules
AutoTagId string
Automatically applied tag ID
CurrentState string
For internal use: current state of rules in JSON format
Rules AutotagRulesRulesArgs
Rules
autoTagId String
Automatically applied tag ID
currentState String
For internal use: current state of rules in JSON format
rules AutotagRulesRules
Rules
autoTagId string
Automatically applied tag ID
currentState string
For internal use: current state of rules in JSON format
rules AutotagRulesRules
Rules
auto_tag_id str
Automatically applied tag ID
current_state str
For internal use: current state of rules in JSON format
rules AutotagRulesRulesArgs
Rules
autoTagId String
Automatically applied tag ID
currentState String
For internal use: current state of rules in JSON format
rules Property Map
Rules

Supporting Types

AutotagRulesRules
, AutotagRulesRulesArgs

Rules This property is required. []AutotagRulesRulesRule
rules This property is required. List<AutotagRulesRulesRule>
rules This property is required. AutotagRulesRulesRule[]
rules This property is required. Sequence[AutotagRulesRulesRule]
rules This property is required. List<Property Map>

AutotagRulesRulesRule
, AutotagRulesRulesRuleArgs

Enabled This property is required. bool
This setting is enabled (true) or disabled (false)
Type This property is required. string
Possible Values: ME, SELECTOR
ValueNormalization This property is required. string
Possible Values: Leave text as-is, To lower case, To upper case
AttributeRule Pulumiverse.Dynatrace.Inputs.AutotagRulesRulesRuleAttributeRule
no documentation available
EntitySelector string
The documentation of the entity selector can be found here.
ValueFormat string
Optional tag value
Enabled This property is required. bool
This setting is enabled (true) or disabled (false)
Type This property is required. string
Possible Values: ME, SELECTOR
ValueNormalization This property is required. string
Possible Values: Leave text as-is, To lower case, To upper case
AttributeRule AutotagRulesRulesRuleAttributeRule
no documentation available
EntitySelector string
The documentation of the entity selector can be found here.
ValueFormat string
Optional tag value
enabled This property is required. Boolean
This setting is enabled (true) or disabled (false)
type This property is required. String
Possible Values: ME, SELECTOR
valueNormalization This property is required. String
Possible Values: Leave text as-is, To lower case, To upper case
attributeRule AutotagRulesRulesRuleAttributeRule
no documentation available
entitySelector String
The documentation of the entity selector can be found here.
valueFormat String
Optional tag value
enabled This property is required. boolean
This setting is enabled (true) or disabled (false)
type This property is required. string
Possible Values: ME, SELECTOR
valueNormalization This property is required. string
Possible Values: Leave text as-is, To lower case, To upper case
attributeRule AutotagRulesRulesRuleAttributeRule
no documentation available
entitySelector string
The documentation of the entity selector can be found here.
valueFormat string
Optional tag value
enabled This property is required. bool
This setting is enabled (true) or disabled (false)
type This property is required. str
Possible Values: ME, SELECTOR
value_normalization This property is required. str
Possible Values: Leave text as-is, To lower case, To upper case
attribute_rule AutotagRulesRulesRuleAttributeRule
no documentation available
entity_selector str
The documentation of the entity selector can be found here.
value_format str
Optional tag value
enabled This property is required. Boolean
This setting is enabled (true) or disabled (false)
type This property is required. String
Possible Values: ME, SELECTOR
valueNormalization This property is required. String
Possible Values: Leave text as-is, To lower case, To upper case
attributeRule Property Map
no documentation available
entitySelector String
The documentation of the entity selector can be found here.
valueFormat String
Optional tag value

AutotagRulesRulesRuleAttributeRule
, AutotagRulesRulesRuleAttributeRuleArgs

Conditions This property is required. Pulumiverse.Dynatrace.Inputs.AutotagRulesRulesRuleAttributeRuleConditions
no documentation available
EntityType This property is required. string
Possible Values: APPLICATION, AWS_APPLICATION_LOAD_BALANCER, AWS_CLASSIC_LOAD_BALANCER, AWS_NETWORK_LOAD_BALANCER, AWS_RELATIONAL_DATABASE_SERVICE, AZURE, CUSTOM_APPLICATION, CUSTOM_DEVICE, DCRUM_APPLICATION, ESXI_HOST, EXTERNAL_SYNTHETIC_TEST, HOST, HTTP_CHECK, MOBILE_APPLICATION, PROCESS_GROUP, SERVICE, SYNTHETIC_TEST
AzureToPgpropagation bool
Apply to process groups connected to matching Azure entities
AzureToServicePropagation bool
Apply to services provided by matching Azure entities
HostToPgpropagation bool
Apply to processes running on matching hosts
PgToHostPropagation bool
Apply to underlying hosts of matching process groups
PgToServicePropagation bool
Apply to all services provided by the process groups
ServiceToHostPropagation bool
Apply to underlying hosts of matching services
ServiceToPgpropagation bool
Apply to underlying process groups of matching services
Conditions This property is required. AutotagRulesRulesRuleAttributeRuleConditions
no documentation available
EntityType This property is required. string
Possible Values: APPLICATION, AWS_APPLICATION_LOAD_BALANCER, AWS_CLASSIC_LOAD_BALANCER, AWS_NETWORK_LOAD_BALANCER, AWS_RELATIONAL_DATABASE_SERVICE, AZURE, CUSTOM_APPLICATION, CUSTOM_DEVICE, DCRUM_APPLICATION, ESXI_HOST, EXTERNAL_SYNTHETIC_TEST, HOST, HTTP_CHECK, MOBILE_APPLICATION, PROCESS_GROUP, SERVICE, SYNTHETIC_TEST
AzureToPgpropagation bool
Apply to process groups connected to matching Azure entities
AzureToServicePropagation bool
Apply to services provided by matching Azure entities
HostToPgpropagation bool
Apply to processes running on matching hosts
PgToHostPropagation bool
Apply to underlying hosts of matching process groups
PgToServicePropagation bool
Apply to all services provided by the process groups
ServiceToHostPropagation bool
Apply to underlying hosts of matching services
ServiceToPgpropagation bool
Apply to underlying process groups of matching services
conditions This property is required. AutotagRulesRulesRuleAttributeRuleConditions
no documentation available
entityType This property is required. String
Possible Values: APPLICATION, AWS_APPLICATION_LOAD_BALANCER, AWS_CLASSIC_LOAD_BALANCER, AWS_NETWORK_LOAD_BALANCER, AWS_RELATIONAL_DATABASE_SERVICE, AZURE, CUSTOM_APPLICATION, CUSTOM_DEVICE, DCRUM_APPLICATION, ESXI_HOST, EXTERNAL_SYNTHETIC_TEST, HOST, HTTP_CHECK, MOBILE_APPLICATION, PROCESS_GROUP, SERVICE, SYNTHETIC_TEST
azureToPgpropagation Boolean
Apply to process groups connected to matching Azure entities
azureToServicePropagation Boolean
Apply to services provided by matching Azure entities
hostToPgpropagation Boolean
Apply to processes running on matching hosts
pgToHostPropagation Boolean
Apply to underlying hosts of matching process groups
pgToServicePropagation Boolean
Apply to all services provided by the process groups
serviceToHostPropagation Boolean
Apply to underlying hosts of matching services
serviceToPgpropagation Boolean
Apply to underlying process groups of matching services
conditions This property is required. AutotagRulesRulesRuleAttributeRuleConditions
no documentation available
entityType This property is required. string
Possible Values: APPLICATION, AWS_APPLICATION_LOAD_BALANCER, AWS_CLASSIC_LOAD_BALANCER, AWS_NETWORK_LOAD_BALANCER, AWS_RELATIONAL_DATABASE_SERVICE, AZURE, CUSTOM_APPLICATION, CUSTOM_DEVICE, DCRUM_APPLICATION, ESXI_HOST, EXTERNAL_SYNTHETIC_TEST, HOST, HTTP_CHECK, MOBILE_APPLICATION, PROCESS_GROUP, SERVICE, SYNTHETIC_TEST
azureToPgpropagation boolean
Apply to process groups connected to matching Azure entities
azureToServicePropagation boolean
Apply to services provided by matching Azure entities
hostToPgpropagation boolean
Apply to processes running on matching hosts
pgToHostPropagation boolean
Apply to underlying hosts of matching process groups
pgToServicePropagation boolean
Apply to all services provided by the process groups
serviceToHostPropagation boolean
Apply to underlying hosts of matching services
serviceToPgpropagation boolean
Apply to underlying process groups of matching services
conditions This property is required. AutotagRulesRulesRuleAttributeRuleConditions
no documentation available
entity_type This property is required. str
Possible Values: APPLICATION, AWS_APPLICATION_LOAD_BALANCER, AWS_CLASSIC_LOAD_BALANCER, AWS_NETWORK_LOAD_BALANCER, AWS_RELATIONAL_DATABASE_SERVICE, AZURE, CUSTOM_APPLICATION, CUSTOM_DEVICE, DCRUM_APPLICATION, ESXI_HOST, EXTERNAL_SYNTHETIC_TEST, HOST, HTTP_CHECK, MOBILE_APPLICATION, PROCESS_GROUP, SERVICE, SYNTHETIC_TEST
azure_to_pgpropagation bool
Apply to process groups connected to matching Azure entities
azure_to_service_propagation bool
Apply to services provided by matching Azure entities
host_to_pgpropagation bool
Apply to processes running on matching hosts
pg_to_host_propagation bool
Apply to underlying hosts of matching process groups
pg_to_service_propagation bool
Apply to all services provided by the process groups
service_to_host_propagation bool
Apply to underlying hosts of matching services
service_to_pgpropagation bool
Apply to underlying process groups of matching services
conditions This property is required. Property Map
no documentation available
entityType This property is required. String
Possible Values: APPLICATION, AWS_APPLICATION_LOAD_BALANCER, AWS_CLASSIC_LOAD_BALANCER, AWS_NETWORK_LOAD_BALANCER, AWS_RELATIONAL_DATABASE_SERVICE, AZURE, CUSTOM_APPLICATION, CUSTOM_DEVICE, DCRUM_APPLICATION, ESXI_HOST, EXTERNAL_SYNTHETIC_TEST, HOST, HTTP_CHECK, MOBILE_APPLICATION, PROCESS_GROUP, SERVICE, SYNTHETIC_TEST
azureToPgpropagation Boolean
Apply to process groups connected to matching Azure entities
azureToServicePropagation Boolean
Apply to services provided by matching Azure entities
hostToPgpropagation Boolean
Apply to processes running on matching hosts
pgToHostPropagation Boolean
Apply to underlying hosts of matching process groups
pgToServicePropagation Boolean
Apply to all services provided by the process groups
serviceToHostPropagation Boolean
Apply to underlying hosts of matching services
serviceToPgpropagation Boolean
Apply to underlying process groups of matching services

AutotagRulesRulesRuleAttributeRuleConditions
, AutotagRulesRulesRuleAttributeRuleConditionsArgs

conditions This property is required. List<Property Map>

AutotagRulesRulesRuleAttributeRuleConditionsCondition
, AutotagRulesRulesRuleAttributeRuleConditionsConditionArgs

Key This property is required. string
Possible Values: APPMON_SERVER_NAME, APPMON_SYSTEM_PROFILE_NAME, AWS_ACCOUNT_ID, AWS_ACCOUNT_NAME, AWS_APPLICATION_LOAD_BALANCER_NAME, AWS_APPLICATION_LOAD_BALANCER_TAGS, AWS_AUTO_SCALING_GROUP_NAME, AWS_AUTO_SCALING_GROUP_TAGS, AWS_AVAILABILITY_ZONE_NAME, AWS_CLASSIC_LOAD_BALANCER_FRONTEND_PORTS, AWS_CLASSIC_LOAD_BALANCER_NAME, AWS_CLASSIC_LOAD_BALANCER_TAGS, AWS_NETWORK_LOAD_BALANCER_NAME, AWS_NETWORK_LOAD_BALANCER_TAGS, AWS_RELATIONAL_DATABASE_SERVICE_DB_NAME, AWS_RELATIONAL_DATABASE_SERVICE_ENDPOINT, AWS_RELATIONAL_DATABASE_SERVICE_ENGINE, AWS_RELATIONAL_DATABASE_SERVICE_INSTANCE_CLASS, AWS_RELATIONAL_DATABASE_SERVICE_NAME, AWS_RELATIONAL_DATABASE_SERVICE_PORT, AWS_RELATIONAL_DATABASE_SERVICE_TAGS, AZURE_ENTITY_NAME, AZURE_ENTITY_TAGS, AZURE_MGMT_GROUP_NAME, AZURE_MGMT_GROUP_UUID, AZURE_REGION_NAME, AZURE_SCALE_SET_NAME, AZURE_SUBSCRIPTION_NAME, AZURE_SUBSCRIPTION_UUID, AZURE_TENANT_NAME, AZURE_TENANT_UUID, AZURE_VM_NAME, BROWSER_MONITOR_NAME, BROWSER_MONITOR_TAGS, CLOUD_APPLICATION_LABELS, CLOUD_APPLICATION_NAME, CLOUD_APPLICATION_NAMESPACE_LABELS, CLOUD_APPLICATION_NAMESPACE_NAME, CLOUD_FOUNDRY_FOUNDATION_NAME, CLOUD_FOUNDRY_ORG_NAME, CUSTOM_APPLICATION_NAME, CUSTOM_APPLICATION_PLATFORM, CUSTOM_APPLICATION_TAGS, CUSTOM_APPLICATION_TYPE, CUSTOM_DEVICE_DNS_ADDRESS, CUSTOM_DEVICE_GROUP_NAME, CUSTOM_DEVICE_GROUP_TAGS, CUSTOM_DEVICE_IP_ADDRESS, CUSTOM_DEVICE_METADATA, CUSTOM_DEVICE_NAME, CUSTOM_DEVICE_PORT, CUSTOM_DEVICE_TAGS, CUSTOM_DEVICE_TECHNOLOGY, DATA_CENTER_SERVICE_DECODER_TYPE, DATA_CENTER_SERVICE_IP_ADDRESS, DATA_CENTER_SERVICE_METADATA, DATA_CENTER_SERVICE_NAME, DATA_CENTER_SERVICE_PORT, DATA_CENTER_SERVICE_TAGS, DOCKER_CONTAINER_NAME, DOCKER_FULL_IMAGE_NAME, DOCKER_IMAGE_VERSION, EC2_INSTANCE_AMI_ID, EC2_INSTANCE_AWS_INSTANCE_TYPE, EC2_INSTANCE_AWS_SECURITY_GROUP, EC2_INSTANCE_BEANSTALK_ENV_NAME, EC2_INSTANCE_ID, EC2_INSTANCE_NAME, EC2_INSTANCE_PRIVATE_HOST_NAME, EC2_INSTANCE_PUBLIC_HOST_NAME, EC2_INSTANCE_TAGS, ENTERPRISE_APPLICATION_DECODER_TYPE, ENTERPRISE_APPLICATION_IP_ADDRESS, ENTERPRISE_APPLICATION_METADATA, ENTERPRISE_APPLICATION_NAME, ENTERPRISE_APPLICATION_PORT, ENTERPRISE_APPLICATION_TAGS, ESXI_HOST_CLUSTER_NAME, ESXI_HOST_HARDWARE_MODEL, ESXI_HOST_HARDWARE_VENDOR, ESXI_HOST_NAME, ESXI_HOST_PRODUCT_NAME, ESXI_HOST_PRODUCT_VERSION, ESXI_HOST_TAGS, EXTERNAL_MONITOR_ENGINE_DESCRIPTION, EXTERNAL_MONITOR_ENGINE_NAME, EXTERNAL_MONITOR_ENGINE_TYPE, EXTERNAL_MONITOR_NAME, EXTERNAL_MONITOR_TAGS, GEOLOCATION_SITE_NAME, GOOGLE_CLOUD_PLATFORM_ZONE_NAME, GOOGLE_COMPUTE_INSTANCE_ID, GOOGLE_COMPUTE_INSTANCE_MACHINE_TYPE, GOOGLE_COMPUTE_INSTANCE_NAME, GOOGLE_COMPUTE_INSTANCE_PROJECT, GOOGLE_COMPUTE_INSTANCE_PROJECT_ID, GOOGLE_COMPUTE_INSTANCE_PUBLIC_IP_ADDRESSES, HOST_AIX_LOGICAL_CPU_COUNT, HOST_AIX_SIMULTANEOUS_THREADS, HOST_AIX_VIRTUAL_CPU_COUNT, HOST_ARCHITECTURE, HOST_AWS_NAME_TAG, HOST_AZURE_COMPUTE_MODE, HOST_AZURE_SKU, HOST_AZURE_WEB_APPLICATION_HOST_NAMES, HOST_AZURE_WEB_APPLICATION_SITE_NAMES, HOST_BITNESS, HOST_BOSH_AVAILABILITY_ZONE, HOST_BOSH_DEPLOYMENT_ID, HOST_BOSH_INSTANCE_ID, HOST_BOSH_INSTANCE_NAME, HOST_BOSH_NAME, HOST_BOSH_STEMCELL_VERSION, HOST_CLOUD_TYPE, HOST_CPU_CORES, HOST_CUSTOM_METADATA, HOST_DETECTED_NAME, HOST_GROUP_ID, HOST_GROUP_NAME, HOST_HYPERVISOR_TYPE, HOST_IP_ADDRESS, HOST_KUBERNETES_LABELS, HOST_LOGICAL_CPU_CORES, HOST_NAME, HOST_ONEAGENT_CUSTOM_HOST_NAME, HOST_OS_TYPE, HOST_OS_VERSION, HOST_PAAS_MEMORY_LIMIT, HOST_PAAS_TYPE, HOST_TAGS, HOST_TECHNOLOGY, HTTP_MONITOR_NAME, HTTP_MONITOR_TAGS, KUBERNETES_CLUSTER_NAME, KUBERNETES_NODE_NAME, KUBERNETES_SERVICE_NAME, MOBILE_APPLICATION_NAME, MOBILE_APPLICATION_PLATFORM, MOBILE_APPLICATION_TAGS, NAME_OF_COMPUTE_NODE, OPENSTACK_ACCOUNT_NAME, OPENSTACK_ACCOUNT_PROJECT_NAME, OPENSTACK_AVAILABILITY_ZONE_NAME, OPENSTACK_PROJECT_NAME, OPENSTACK_REGION_NAME, OPENSTACK_VM_INSTANCE_TYPE, OPENSTACK_VM_NAME, OPENSTACK_VM_SECURITY_GROUP, PROCESS_GROUP_AZURE_HOST_NAME, PROCESS_GROUP_AZURE_SITE_NAME, PROCESS_GROUP_CUSTOM_METADATA, PROCESS_GROUP_DETECTED_NAME, PROCESS_GROUP_ID, PROCESS_GROUP_LISTEN_PORT, PROCESS_GROUP_NAME, PROCESS_GROUP_PREDEFINED_METADATA, PROCESS_GROUP_TAGS, PROCESS_GROUP_TECHNOLOGY, PROCESS_GROUP_TECHNOLOGY_EDITION, PROCESS_GROUP_TECHNOLOGY_VERSION, QUEUE_NAME, QUEUE_TECHNOLOGY, QUEUE_VENDOR, SERVICE_AKKA_ACTOR_SYSTEM, SERVICE_CTG_SERVICE_NAME, SERVICE_DATABASE_HOST_NAME, SERVICE_DATABASE_NAME, SERVICE_DATABASE_TOPOLOGY, SERVICE_DATABASE_VENDOR, SERVICE_DETECTED_NAME, SERVICE_ESB_APPLICATION_NAME, SERVICE_IBM_CTG_GATEWAY_URL, SERVICE_MESSAGING_LISTENER_CLASS_NAME, SERVICE_NAME, SERVICE_PORT, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_REMOTE_ENDPOINT, SERVICE_REMOTE_SERVICE_NAME, SERVICE_TAGS, SERVICE_TECHNOLOGY, SERVICE_TECHNOLOGY_EDITION, SERVICE_TECHNOLOGY_VERSION, SERVICE_TOPOLOGY, SERVICE_TYPE, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_ENDPOINT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, VMWARE_DATACENTER_NAME, VMWARE_VM_NAME, WEB_APPLICATION_NAME, WEB_APPLICATION_NAME_PATTERN, WEB_APPLICATION_TAGS, WEB_APPLICATION_TYPE
Operator This property is required. string
Possible Values: BEGINS_WITH, CONTAINS, ENDS_WITH, EQUALS, EXISTS, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_IP_IN_RANGE, LOWER_THAN, LOWER_THAN_OR_EQUAL, NOT_BEGINS_WITH, NOT_CONTAINS, NOT_ENDS_WITH, NOT_EQUALS, NOT_EXISTS, NOT_GREATER_THAN, NOT_GREATER_THAN_OR_EQUAL, NOT_IS_IP_IN_RANGE, NOT_LOWER_THAN, NOT_LOWER_THAN_OR_EQUAL, NOT_REGEX_MATCHES, NOT_TAG_KEY_EQUALS, REGEX_MATCHES, TAG_KEY_EQUALS
CaseSensitive bool
Case sensitive
DynamicKey string
Dynamic key
DynamicKeySource string
Key source
EntityId string
Value
EnumValue string
Value
IntegerValue int
Value
StringValue string
Value
Tag string
Format: [CONTEXT]tagKey:tagValue
Key This property is required. string
Possible Values: APPMON_SERVER_NAME, APPMON_SYSTEM_PROFILE_NAME, AWS_ACCOUNT_ID, AWS_ACCOUNT_NAME, AWS_APPLICATION_LOAD_BALANCER_NAME, AWS_APPLICATION_LOAD_BALANCER_TAGS, AWS_AUTO_SCALING_GROUP_NAME, AWS_AUTO_SCALING_GROUP_TAGS, AWS_AVAILABILITY_ZONE_NAME, AWS_CLASSIC_LOAD_BALANCER_FRONTEND_PORTS, AWS_CLASSIC_LOAD_BALANCER_NAME, AWS_CLASSIC_LOAD_BALANCER_TAGS, AWS_NETWORK_LOAD_BALANCER_NAME, AWS_NETWORK_LOAD_BALANCER_TAGS, AWS_RELATIONAL_DATABASE_SERVICE_DB_NAME, AWS_RELATIONAL_DATABASE_SERVICE_ENDPOINT, AWS_RELATIONAL_DATABASE_SERVICE_ENGINE, AWS_RELATIONAL_DATABASE_SERVICE_INSTANCE_CLASS, AWS_RELATIONAL_DATABASE_SERVICE_NAME, AWS_RELATIONAL_DATABASE_SERVICE_PORT, AWS_RELATIONAL_DATABASE_SERVICE_TAGS, AZURE_ENTITY_NAME, AZURE_ENTITY_TAGS, AZURE_MGMT_GROUP_NAME, AZURE_MGMT_GROUP_UUID, AZURE_REGION_NAME, AZURE_SCALE_SET_NAME, AZURE_SUBSCRIPTION_NAME, AZURE_SUBSCRIPTION_UUID, AZURE_TENANT_NAME, AZURE_TENANT_UUID, AZURE_VM_NAME, BROWSER_MONITOR_NAME, BROWSER_MONITOR_TAGS, CLOUD_APPLICATION_LABELS, CLOUD_APPLICATION_NAME, CLOUD_APPLICATION_NAMESPACE_LABELS, CLOUD_APPLICATION_NAMESPACE_NAME, CLOUD_FOUNDRY_FOUNDATION_NAME, CLOUD_FOUNDRY_ORG_NAME, CUSTOM_APPLICATION_NAME, CUSTOM_APPLICATION_PLATFORM, CUSTOM_APPLICATION_TAGS, CUSTOM_APPLICATION_TYPE, CUSTOM_DEVICE_DNS_ADDRESS, CUSTOM_DEVICE_GROUP_NAME, CUSTOM_DEVICE_GROUP_TAGS, CUSTOM_DEVICE_IP_ADDRESS, CUSTOM_DEVICE_METADATA, CUSTOM_DEVICE_NAME, CUSTOM_DEVICE_PORT, CUSTOM_DEVICE_TAGS, CUSTOM_DEVICE_TECHNOLOGY, DATA_CENTER_SERVICE_DECODER_TYPE, DATA_CENTER_SERVICE_IP_ADDRESS, DATA_CENTER_SERVICE_METADATA, DATA_CENTER_SERVICE_NAME, DATA_CENTER_SERVICE_PORT, DATA_CENTER_SERVICE_TAGS, DOCKER_CONTAINER_NAME, DOCKER_FULL_IMAGE_NAME, DOCKER_IMAGE_VERSION, EC2_INSTANCE_AMI_ID, EC2_INSTANCE_AWS_INSTANCE_TYPE, EC2_INSTANCE_AWS_SECURITY_GROUP, EC2_INSTANCE_BEANSTALK_ENV_NAME, EC2_INSTANCE_ID, EC2_INSTANCE_NAME, EC2_INSTANCE_PRIVATE_HOST_NAME, EC2_INSTANCE_PUBLIC_HOST_NAME, EC2_INSTANCE_TAGS, ENTERPRISE_APPLICATION_DECODER_TYPE, ENTERPRISE_APPLICATION_IP_ADDRESS, ENTERPRISE_APPLICATION_METADATA, ENTERPRISE_APPLICATION_NAME, ENTERPRISE_APPLICATION_PORT, ENTERPRISE_APPLICATION_TAGS, ESXI_HOST_CLUSTER_NAME, ESXI_HOST_HARDWARE_MODEL, ESXI_HOST_HARDWARE_VENDOR, ESXI_HOST_NAME, ESXI_HOST_PRODUCT_NAME, ESXI_HOST_PRODUCT_VERSION, ESXI_HOST_TAGS, EXTERNAL_MONITOR_ENGINE_DESCRIPTION, EXTERNAL_MONITOR_ENGINE_NAME, EXTERNAL_MONITOR_ENGINE_TYPE, EXTERNAL_MONITOR_NAME, EXTERNAL_MONITOR_TAGS, GEOLOCATION_SITE_NAME, GOOGLE_CLOUD_PLATFORM_ZONE_NAME, GOOGLE_COMPUTE_INSTANCE_ID, GOOGLE_COMPUTE_INSTANCE_MACHINE_TYPE, GOOGLE_COMPUTE_INSTANCE_NAME, GOOGLE_COMPUTE_INSTANCE_PROJECT, GOOGLE_COMPUTE_INSTANCE_PROJECT_ID, GOOGLE_COMPUTE_INSTANCE_PUBLIC_IP_ADDRESSES, HOST_AIX_LOGICAL_CPU_COUNT, HOST_AIX_SIMULTANEOUS_THREADS, HOST_AIX_VIRTUAL_CPU_COUNT, HOST_ARCHITECTURE, HOST_AWS_NAME_TAG, HOST_AZURE_COMPUTE_MODE, HOST_AZURE_SKU, HOST_AZURE_WEB_APPLICATION_HOST_NAMES, HOST_AZURE_WEB_APPLICATION_SITE_NAMES, HOST_BITNESS, HOST_BOSH_AVAILABILITY_ZONE, HOST_BOSH_DEPLOYMENT_ID, HOST_BOSH_INSTANCE_ID, HOST_BOSH_INSTANCE_NAME, HOST_BOSH_NAME, HOST_BOSH_STEMCELL_VERSION, HOST_CLOUD_TYPE, HOST_CPU_CORES, HOST_CUSTOM_METADATA, HOST_DETECTED_NAME, HOST_GROUP_ID, HOST_GROUP_NAME, HOST_HYPERVISOR_TYPE, HOST_IP_ADDRESS, HOST_KUBERNETES_LABELS, HOST_LOGICAL_CPU_CORES, HOST_NAME, HOST_ONEAGENT_CUSTOM_HOST_NAME, HOST_OS_TYPE, HOST_OS_VERSION, HOST_PAAS_MEMORY_LIMIT, HOST_PAAS_TYPE, HOST_TAGS, HOST_TECHNOLOGY, HTTP_MONITOR_NAME, HTTP_MONITOR_TAGS, KUBERNETES_CLUSTER_NAME, KUBERNETES_NODE_NAME, KUBERNETES_SERVICE_NAME, MOBILE_APPLICATION_NAME, MOBILE_APPLICATION_PLATFORM, MOBILE_APPLICATION_TAGS, NAME_OF_COMPUTE_NODE, OPENSTACK_ACCOUNT_NAME, OPENSTACK_ACCOUNT_PROJECT_NAME, OPENSTACK_AVAILABILITY_ZONE_NAME, OPENSTACK_PROJECT_NAME, OPENSTACK_REGION_NAME, OPENSTACK_VM_INSTANCE_TYPE, OPENSTACK_VM_NAME, OPENSTACK_VM_SECURITY_GROUP, PROCESS_GROUP_AZURE_HOST_NAME, PROCESS_GROUP_AZURE_SITE_NAME, PROCESS_GROUP_CUSTOM_METADATA, PROCESS_GROUP_DETECTED_NAME, PROCESS_GROUP_ID, PROCESS_GROUP_LISTEN_PORT, PROCESS_GROUP_NAME, PROCESS_GROUP_PREDEFINED_METADATA, PROCESS_GROUP_TAGS, PROCESS_GROUP_TECHNOLOGY, PROCESS_GROUP_TECHNOLOGY_EDITION, PROCESS_GROUP_TECHNOLOGY_VERSION, QUEUE_NAME, QUEUE_TECHNOLOGY, QUEUE_VENDOR, SERVICE_AKKA_ACTOR_SYSTEM, SERVICE_CTG_SERVICE_NAME, SERVICE_DATABASE_HOST_NAME, SERVICE_DATABASE_NAME, SERVICE_DATABASE_TOPOLOGY, SERVICE_DATABASE_VENDOR, SERVICE_DETECTED_NAME, SERVICE_ESB_APPLICATION_NAME, SERVICE_IBM_CTG_GATEWAY_URL, SERVICE_MESSAGING_LISTENER_CLASS_NAME, SERVICE_NAME, SERVICE_PORT, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_REMOTE_ENDPOINT, SERVICE_REMOTE_SERVICE_NAME, SERVICE_TAGS, SERVICE_TECHNOLOGY, SERVICE_TECHNOLOGY_EDITION, SERVICE_TECHNOLOGY_VERSION, SERVICE_TOPOLOGY, SERVICE_TYPE, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_ENDPOINT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, VMWARE_DATACENTER_NAME, VMWARE_VM_NAME, WEB_APPLICATION_NAME, WEB_APPLICATION_NAME_PATTERN, WEB_APPLICATION_TAGS, WEB_APPLICATION_TYPE
Operator This property is required. string
Possible Values: BEGINS_WITH, CONTAINS, ENDS_WITH, EQUALS, EXISTS, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_IP_IN_RANGE, LOWER_THAN, LOWER_THAN_OR_EQUAL, NOT_BEGINS_WITH, NOT_CONTAINS, NOT_ENDS_WITH, NOT_EQUALS, NOT_EXISTS, NOT_GREATER_THAN, NOT_GREATER_THAN_OR_EQUAL, NOT_IS_IP_IN_RANGE, NOT_LOWER_THAN, NOT_LOWER_THAN_OR_EQUAL, NOT_REGEX_MATCHES, NOT_TAG_KEY_EQUALS, REGEX_MATCHES, TAG_KEY_EQUALS
CaseSensitive bool
Case sensitive
DynamicKey string
Dynamic key
DynamicKeySource string
Key source
EntityId string
Value
EnumValue string
Value
IntegerValue int
Value
StringValue string
Value
Tag string
Format: [CONTEXT]tagKey:tagValue
key This property is required. String
Possible Values: APPMON_SERVER_NAME, APPMON_SYSTEM_PROFILE_NAME, AWS_ACCOUNT_ID, AWS_ACCOUNT_NAME, AWS_APPLICATION_LOAD_BALANCER_NAME, AWS_APPLICATION_LOAD_BALANCER_TAGS, AWS_AUTO_SCALING_GROUP_NAME, AWS_AUTO_SCALING_GROUP_TAGS, AWS_AVAILABILITY_ZONE_NAME, AWS_CLASSIC_LOAD_BALANCER_FRONTEND_PORTS, AWS_CLASSIC_LOAD_BALANCER_NAME, AWS_CLASSIC_LOAD_BALANCER_TAGS, AWS_NETWORK_LOAD_BALANCER_NAME, AWS_NETWORK_LOAD_BALANCER_TAGS, AWS_RELATIONAL_DATABASE_SERVICE_DB_NAME, AWS_RELATIONAL_DATABASE_SERVICE_ENDPOINT, AWS_RELATIONAL_DATABASE_SERVICE_ENGINE, AWS_RELATIONAL_DATABASE_SERVICE_INSTANCE_CLASS, AWS_RELATIONAL_DATABASE_SERVICE_NAME, AWS_RELATIONAL_DATABASE_SERVICE_PORT, AWS_RELATIONAL_DATABASE_SERVICE_TAGS, AZURE_ENTITY_NAME, AZURE_ENTITY_TAGS, AZURE_MGMT_GROUP_NAME, AZURE_MGMT_GROUP_UUID, AZURE_REGION_NAME, AZURE_SCALE_SET_NAME, AZURE_SUBSCRIPTION_NAME, AZURE_SUBSCRIPTION_UUID, AZURE_TENANT_NAME, AZURE_TENANT_UUID, AZURE_VM_NAME, BROWSER_MONITOR_NAME, BROWSER_MONITOR_TAGS, CLOUD_APPLICATION_LABELS, CLOUD_APPLICATION_NAME, CLOUD_APPLICATION_NAMESPACE_LABELS, CLOUD_APPLICATION_NAMESPACE_NAME, CLOUD_FOUNDRY_FOUNDATION_NAME, CLOUD_FOUNDRY_ORG_NAME, CUSTOM_APPLICATION_NAME, CUSTOM_APPLICATION_PLATFORM, CUSTOM_APPLICATION_TAGS, CUSTOM_APPLICATION_TYPE, CUSTOM_DEVICE_DNS_ADDRESS, CUSTOM_DEVICE_GROUP_NAME, CUSTOM_DEVICE_GROUP_TAGS, CUSTOM_DEVICE_IP_ADDRESS, CUSTOM_DEVICE_METADATA, CUSTOM_DEVICE_NAME, CUSTOM_DEVICE_PORT, CUSTOM_DEVICE_TAGS, CUSTOM_DEVICE_TECHNOLOGY, DATA_CENTER_SERVICE_DECODER_TYPE, DATA_CENTER_SERVICE_IP_ADDRESS, DATA_CENTER_SERVICE_METADATA, DATA_CENTER_SERVICE_NAME, DATA_CENTER_SERVICE_PORT, DATA_CENTER_SERVICE_TAGS, DOCKER_CONTAINER_NAME, DOCKER_FULL_IMAGE_NAME, DOCKER_IMAGE_VERSION, EC2_INSTANCE_AMI_ID, EC2_INSTANCE_AWS_INSTANCE_TYPE, EC2_INSTANCE_AWS_SECURITY_GROUP, EC2_INSTANCE_BEANSTALK_ENV_NAME, EC2_INSTANCE_ID, EC2_INSTANCE_NAME, EC2_INSTANCE_PRIVATE_HOST_NAME, EC2_INSTANCE_PUBLIC_HOST_NAME, EC2_INSTANCE_TAGS, ENTERPRISE_APPLICATION_DECODER_TYPE, ENTERPRISE_APPLICATION_IP_ADDRESS, ENTERPRISE_APPLICATION_METADATA, ENTERPRISE_APPLICATION_NAME, ENTERPRISE_APPLICATION_PORT, ENTERPRISE_APPLICATION_TAGS, ESXI_HOST_CLUSTER_NAME, ESXI_HOST_HARDWARE_MODEL, ESXI_HOST_HARDWARE_VENDOR, ESXI_HOST_NAME, ESXI_HOST_PRODUCT_NAME, ESXI_HOST_PRODUCT_VERSION, ESXI_HOST_TAGS, EXTERNAL_MONITOR_ENGINE_DESCRIPTION, EXTERNAL_MONITOR_ENGINE_NAME, EXTERNAL_MONITOR_ENGINE_TYPE, EXTERNAL_MONITOR_NAME, EXTERNAL_MONITOR_TAGS, GEOLOCATION_SITE_NAME, GOOGLE_CLOUD_PLATFORM_ZONE_NAME, GOOGLE_COMPUTE_INSTANCE_ID, GOOGLE_COMPUTE_INSTANCE_MACHINE_TYPE, GOOGLE_COMPUTE_INSTANCE_NAME, GOOGLE_COMPUTE_INSTANCE_PROJECT, GOOGLE_COMPUTE_INSTANCE_PROJECT_ID, GOOGLE_COMPUTE_INSTANCE_PUBLIC_IP_ADDRESSES, HOST_AIX_LOGICAL_CPU_COUNT, HOST_AIX_SIMULTANEOUS_THREADS, HOST_AIX_VIRTUAL_CPU_COUNT, HOST_ARCHITECTURE, HOST_AWS_NAME_TAG, HOST_AZURE_COMPUTE_MODE, HOST_AZURE_SKU, HOST_AZURE_WEB_APPLICATION_HOST_NAMES, HOST_AZURE_WEB_APPLICATION_SITE_NAMES, HOST_BITNESS, HOST_BOSH_AVAILABILITY_ZONE, HOST_BOSH_DEPLOYMENT_ID, HOST_BOSH_INSTANCE_ID, HOST_BOSH_INSTANCE_NAME, HOST_BOSH_NAME, HOST_BOSH_STEMCELL_VERSION, HOST_CLOUD_TYPE, HOST_CPU_CORES, HOST_CUSTOM_METADATA, HOST_DETECTED_NAME, HOST_GROUP_ID, HOST_GROUP_NAME, HOST_HYPERVISOR_TYPE, HOST_IP_ADDRESS, HOST_KUBERNETES_LABELS, HOST_LOGICAL_CPU_CORES, HOST_NAME, HOST_ONEAGENT_CUSTOM_HOST_NAME, HOST_OS_TYPE, HOST_OS_VERSION, HOST_PAAS_MEMORY_LIMIT, HOST_PAAS_TYPE, HOST_TAGS, HOST_TECHNOLOGY, HTTP_MONITOR_NAME, HTTP_MONITOR_TAGS, KUBERNETES_CLUSTER_NAME, KUBERNETES_NODE_NAME, KUBERNETES_SERVICE_NAME, MOBILE_APPLICATION_NAME, MOBILE_APPLICATION_PLATFORM, MOBILE_APPLICATION_TAGS, NAME_OF_COMPUTE_NODE, OPENSTACK_ACCOUNT_NAME, OPENSTACK_ACCOUNT_PROJECT_NAME, OPENSTACK_AVAILABILITY_ZONE_NAME, OPENSTACK_PROJECT_NAME, OPENSTACK_REGION_NAME, OPENSTACK_VM_INSTANCE_TYPE, OPENSTACK_VM_NAME, OPENSTACK_VM_SECURITY_GROUP, PROCESS_GROUP_AZURE_HOST_NAME, PROCESS_GROUP_AZURE_SITE_NAME, PROCESS_GROUP_CUSTOM_METADATA, PROCESS_GROUP_DETECTED_NAME, PROCESS_GROUP_ID, PROCESS_GROUP_LISTEN_PORT, PROCESS_GROUP_NAME, PROCESS_GROUP_PREDEFINED_METADATA, PROCESS_GROUP_TAGS, PROCESS_GROUP_TECHNOLOGY, PROCESS_GROUP_TECHNOLOGY_EDITION, PROCESS_GROUP_TECHNOLOGY_VERSION, QUEUE_NAME, QUEUE_TECHNOLOGY, QUEUE_VENDOR, SERVICE_AKKA_ACTOR_SYSTEM, SERVICE_CTG_SERVICE_NAME, SERVICE_DATABASE_HOST_NAME, SERVICE_DATABASE_NAME, SERVICE_DATABASE_TOPOLOGY, SERVICE_DATABASE_VENDOR, SERVICE_DETECTED_NAME, SERVICE_ESB_APPLICATION_NAME, SERVICE_IBM_CTG_GATEWAY_URL, SERVICE_MESSAGING_LISTENER_CLASS_NAME, SERVICE_NAME, SERVICE_PORT, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_REMOTE_ENDPOINT, SERVICE_REMOTE_SERVICE_NAME, SERVICE_TAGS, SERVICE_TECHNOLOGY, SERVICE_TECHNOLOGY_EDITION, SERVICE_TECHNOLOGY_VERSION, SERVICE_TOPOLOGY, SERVICE_TYPE, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_ENDPOINT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, VMWARE_DATACENTER_NAME, VMWARE_VM_NAME, WEB_APPLICATION_NAME, WEB_APPLICATION_NAME_PATTERN, WEB_APPLICATION_TAGS, WEB_APPLICATION_TYPE
operator This property is required. String
Possible Values: BEGINS_WITH, CONTAINS, ENDS_WITH, EQUALS, EXISTS, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_IP_IN_RANGE, LOWER_THAN, LOWER_THAN_OR_EQUAL, NOT_BEGINS_WITH, NOT_CONTAINS, NOT_ENDS_WITH, NOT_EQUALS, NOT_EXISTS, NOT_GREATER_THAN, NOT_GREATER_THAN_OR_EQUAL, NOT_IS_IP_IN_RANGE, NOT_LOWER_THAN, NOT_LOWER_THAN_OR_EQUAL, NOT_REGEX_MATCHES, NOT_TAG_KEY_EQUALS, REGEX_MATCHES, TAG_KEY_EQUALS
caseSensitive Boolean
Case sensitive
dynamicKey String
Dynamic key
dynamicKeySource String
Key source
entityId String
Value
enumValue String
Value
integerValue Integer
Value
stringValue String
Value
tag String
Format: [CONTEXT]tagKey:tagValue
key This property is required. string
Possible Values: APPMON_SERVER_NAME, APPMON_SYSTEM_PROFILE_NAME, AWS_ACCOUNT_ID, AWS_ACCOUNT_NAME, AWS_APPLICATION_LOAD_BALANCER_NAME, AWS_APPLICATION_LOAD_BALANCER_TAGS, AWS_AUTO_SCALING_GROUP_NAME, AWS_AUTO_SCALING_GROUP_TAGS, AWS_AVAILABILITY_ZONE_NAME, AWS_CLASSIC_LOAD_BALANCER_FRONTEND_PORTS, AWS_CLASSIC_LOAD_BALANCER_NAME, AWS_CLASSIC_LOAD_BALANCER_TAGS, AWS_NETWORK_LOAD_BALANCER_NAME, AWS_NETWORK_LOAD_BALANCER_TAGS, AWS_RELATIONAL_DATABASE_SERVICE_DB_NAME, AWS_RELATIONAL_DATABASE_SERVICE_ENDPOINT, AWS_RELATIONAL_DATABASE_SERVICE_ENGINE, AWS_RELATIONAL_DATABASE_SERVICE_INSTANCE_CLASS, AWS_RELATIONAL_DATABASE_SERVICE_NAME, AWS_RELATIONAL_DATABASE_SERVICE_PORT, AWS_RELATIONAL_DATABASE_SERVICE_TAGS, AZURE_ENTITY_NAME, AZURE_ENTITY_TAGS, AZURE_MGMT_GROUP_NAME, AZURE_MGMT_GROUP_UUID, AZURE_REGION_NAME, AZURE_SCALE_SET_NAME, AZURE_SUBSCRIPTION_NAME, AZURE_SUBSCRIPTION_UUID, AZURE_TENANT_NAME, AZURE_TENANT_UUID, AZURE_VM_NAME, BROWSER_MONITOR_NAME, BROWSER_MONITOR_TAGS, CLOUD_APPLICATION_LABELS, CLOUD_APPLICATION_NAME, CLOUD_APPLICATION_NAMESPACE_LABELS, CLOUD_APPLICATION_NAMESPACE_NAME, CLOUD_FOUNDRY_FOUNDATION_NAME, CLOUD_FOUNDRY_ORG_NAME, CUSTOM_APPLICATION_NAME, CUSTOM_APPLICATION_PLATFORM, CUSTOM_APPLICATION_TAGS, CUSTOM_APPLICATION_TYPE, CUSTOM_DEVICE_DNS_ADDRESS, CUSTOM_DEVICE_GROUP_NAME, CUSTOM_DEVICE_GROUP_TAGS, CUSTOM_DEVICE_IP_ADDRESS, CUSTOM_DEVICE_METADATA, CUSTOM_DEVICE_NAME, CUSTOM_DEVICE_PORT, CUSTOM_DEVICE_TAGS, CUSTOM_DEVICE_TECHNOLOGY, DATA_CENTER_SERVICE_DECODER_TYPE, DATA_CENTER_SERVICE_IP_ADDRESS, DATA_CENTER_SERVICE_METADATA, DATA_CENTER_SERVICE_NAME, DATA_CENTER_SERVICE_PORT, DATA_CENTER_SERVICE_TAGS, DOCKER_CONTAINER_NAME, DOCKER_FULL_IMAGE_NAME, DOCKER_IMAGE_VERSION, EC2_INSTANCE_AMI_ID, EC2_INSTANCE_AWS_INSTANCE_TYPE, EC2_INSTANCE_AWS_SECURITY_GROUP, EC2_INSTANCE_BEANSTALK_ENV_NAME, EC2_INSTANCE_ID, EC2_INSTANCE_NAME, EC2_INSTANCE_PRIVATE_HOST_NAME, EC2_INSTANCE_PUBLIC_HOST_NAME, EC2_INSTANCE_TAGS, ENTERPRISE_APPLICATION_DECODER_TYPE, ENTERPRISE_APPLICATION_IP_ADDRESS, ENTERPRISE_APPLICATION_METADATA, ENTERPRISE_APPLICATION_NAME, ENTERPRISE_APPLICATION_PORT, ENTERPRISE_APPLICATION_TAGS, ESXI_HOST_CLUSTER_NAME, ESXI_HOST_HARDWARE_MODEL, ESXI_HOST_HARDWARE_VENDOR, ESXI_HOST_NAME, ESXI_HOST_PRODUCT_NAME, ESXI_HOST_PRODUCT_VERSION, ESXI_HOST_TAGS, EXTERNAL_MONITOR_ENGINE_DESCRIPTION, EXTERNAL_MONITOR_ENGINE_NAME, EXTERNAL_MONITOR_ENGINE_TYPE, EXTERNAL_MONITOR_NAME, EXTERNAL_MONITOR_TAGS, GEOLOCATION_SITE_NAME, GOOGLE_CLOUD_PLATFORM_ZONE_NAME, GOOGLE_COMPUTE_INSTANCE_ID, GOOGLE_COMPUTE_INSTANCE_MACHINE_TYPE, GOOGLE_COMPUTE_INSTANCE_NAME, GOOGLE_COMPUTE_INSTANCE_PROJECT, GOOGLE_COMPUTE_INSTANCE_PROJECT_ID, GOOGLE_COMPUTE_INSTANCE_PUBLIC_IP_ADDRESSES, HOST_AIX_LOGICAL_CPU_COUNT, HOST_AIX_SIMULTANEOUS_THREADS, HOST_AIX_VIRTUAL_CPU_COUNT, HOST_ARCHITECTURE, HOST_AWS_NAME_TAG, HOST_AZURE_COMPUTE_MODE, HOST_AZURE_SKU, HOST_AZURE_WEB_APPLICATION_HOST_NAMES, HOST_AZURE_WEB_APPLICATION_SITE_NAMES, HOST_BITNESS, HOST_BOSH_AVAILABILITY_ZONE, HOST_BOSH_DEPLOYMENT_ID, HOST_BOSH_INSTANCE_ID, HOST_BOSH_INSTANCE_NAME, HOST_BOSH_NAME, HOST_BOSH_STEMCELL_VERSION, HOST_CLOUD_TYPE, HOST_CPU_CORES, HOST_CUSTOM_METADATA, HOST_DETECTED_NAME, HOST_GROUP_ID, HOST_GROUP_NAME, HOST_HYPERVISOR_TYPE, HOST_IP_ADDRESS, HOST_KUBERNETES_LABELS, HOST_LOGICAL_CPU_CORES, HOST_NAME, HOST_ONEAGENT_CUSTOM_HOST_NAME, HOST_OS_TYPE, HOST_OS_VERSION, HOST_PAAS_MEMORY_LIMIT, HOST_PAAS_TYPE, HOST_TAGS, HOST_TECHNOLOGY, HTTP_MONITOR_NAME, HTTP_MONITOR_TAGS, KUBERNETES_CLUSTER_NAME, KUBERNETES_NODE_NAME, KUBERNETES_SERVICE_NAME, MOBILE_APPLICATION_NAME, MOBILE_APPLICATION_PLATFORM, MOBILE_APPLICATION_TAGS, NAME_OF_COMPUTE_NODE, OPENSTACK_ACCOUNT_NAME, OPENSTACK_ACCOUNT_PROJECT_NAME, OPENSTACK_AVAILABILITY_ZONE_NAME, OPENSTACK_PROJECT_NAME, OPENSTACK_REGION_NAME, OPENSTACK_VM_INSTANCE_TYPE, OPENSTACK_VM_NAME, OPENSTACK_VM_SECURITY_GROUP, PROCESS_GROUP_AZURE_HOST_NAME, PROCESS_GROUP_AZURE_SITE_NAME, PROCESS_GROUP_CUSTOM_METADATA, PROCESS_GROUP_DETECTED_NAME, PROCESS_GROUP_ID, PROCESS_GROUP_LISTEN_PORT, PROCESS_GROUP_NAME, PROCESS_GROUP_PREDEFINED_METADATA, PROCESS_GROUP_TAGS, PROCESS_GROUP_TECHNOLOGY, PROCESS_GROUP_TECHNOLOGY_EDITION, PROCESS_GROUP_TECHNOLOGY_VERSION, QUEUE_NAME, QUEUE_TECHNOLOGY, QUEUE_VENDOR, SERVICE_AKKA_ACTOR_SYSTEM, SERVICE_CTG_SERVICE_NAME, SERVICE_DATABASE_HOST_NAME, SERVICE_DATABASE_NAME, SERVICE_DATABASE_TOPOLOGY, SERVICE_DATABASE_VENDOR, SERVICE_DETECTED_NAME, SERVICE_ESB_APPLICATION_NAME, SERVICE_IBM_CTG_GATEWAY_URL, SERVICE_MESSAGING_LISTENER_CLASS_NAME, SERVICE_NAME, SERVICE_PORT, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_REMOTE_ENDPOINT, SERVICE_REMOTE_SERVICE_NAME, SERVICE_TAGS, SERVICE_TECHNOLOGY, SERVICE_TECHNOLOGY_EDITION, SERVICE_TECHNOLOGY_VERSION, SERVICE_TOPOLOGY, SERVICE_TYPE, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_ENDPOINT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, VMWARE_DATACENTER_NAME, VMWARE_VM_NAME, WEB_APPLICATION_NAME, WEB_APPLICATION_NAME_PATTERN, WEB_APPLICATION_TAGS, WEB_APPLICATION_TYPE
operator This property is required. string
Possible Values: BEGINS_WITH, CONTAINS, ENDS_WITH, EQUALS, EXISTS, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_IP_IN_RANGE, LOWER_THAN, LOWER_THAN_OR_EQUAL, NOT_BEGINS_WITH, NOT_CONTAINS, NOT_ENDS_WITH, NOT_EQUALS, NOT_EXISTS, NOT_GREATER_THAN, NOT_GREATER_THAN_OR_EQUAL, NOT_IS_IP_IN_RANGE, NOT_LOWER_THAN, NOT_LOWER_THAN_OR_EQUAL, NOT_REGEX_MATCHES, NOT_TAG_KEY_EQUALS, REGEX_MATCHES, TAG_KEY_EQUALS
caseSensitive boolean
Case sensitive
dynamicKey string
Dynamic key
dynamicKeySource string
Key source
entityId string
Value
enumValue string
Value
integerValue number
Value
stringValue string
Value
tag string
Format: [CONTEXT]tagKey:tagValue
key This property is required. str
Possible Values: APPMON_SERVER_NAME, APPMON_SYSTEM_PROFILE_NAME, AWS_ACCOUNT_ID, AWS_ACCOUNT_NAME, AWS_APPLICATION_LOAD_BALANCER_NAME, AWS_APPLICATION_LOAD_BALANCER_TAGS, AWS_AUTO_SCALING_GROUP_NAME, AWS_AUTO_SCALING_GROUP_TAGS, AWS_AVAILABILITY_ZONE_NAME, AWS_CLASSIC_LOAD_BALANCER_FRONTEND_PORTS, AWS_CLASSIC_LOAD_BALANCER_NAME, AWS_CLASSIC_LOAD_BALANCER_TAGS, AWS_NETWORK_LOAD_BALANCER_NAME, AWS_NETWORK_LOAD_BALANCER_TAGS, AWS_RELATIONAL_DATABASE_SERVICE_DB_NAME, AWS_RELATIONAL_DATABASE_SERVICE_ENDPOINT, AWS_RELATIONAL_DATABASE_SERVICE_ENGINE, AWS_RELATIONAL_DATABASE_SERVICE_INSTANCE_CLASS, AWS_RELATIONAL_DATABASE_SERVICE_NAME, AWS_RELATIONAL_DATABASE_SERVICE_PORT, AWS_RELATIONAL_DATABASE_SERVICE_TAGS, AZURE_ENTITY_NAME, AZURE_ENTITY_TAGS, AZURE_MGMT_GROUP_NAME, AZURE_MGMT_GROUP_UUID, AZURE_REGION_NAME, AZURE_SCALE_SET_NAME, AZURE_SUBSCRIPTION_NAME, AZURE_SUBSCRIPTION_UUID, AZURE_TENANT_NAME, AZURE_TENANT_UUID, AZURE_VM_NAME, BROWSER_MONITOR_NAME, BROWSER_MONITOR_TAGS, CLOUD_APPLICATION_LABELS, CLOUD_APPLICATION_NAME, CLOUD_APPLICATION_NAMESPACE_LABELS, CLOUD_APPLICATION_NAMESPACE_NAME, CLOUD_FOUNDRY_FOUNDATION_NAME, CLOUD_FOUNDRY_ORG_NAME, CUSTOM_APPLICATION_NAME, CUSTOM_APPLICATION_PLATFORM, CUSTOM_APPLICATION_TAGS, CUSTOM_APPLICATION_TYPE, CUSTOM_DEVICE_DNS_ADDRESS, CUSTOM_DEVICE_GROUP_NAME, CUSTOM_DEVICE_GROUP_TAGS, CUSTOM_DEVICE_IP_ADDRESS, CUSTOM_DEVICE_METADATA, CUSTOM_DEVICE_NAME, CUSTOM_DEVICE_PORT, CUSTOM_DEVICE_TAGS, CUSTOM_DEVICE_TECHNOLOGY, DATA_CENTER_SERVICE_DECODER_TYPE, DATA_CENTER_SERVICE_IP_ADDRESS, DATA_CENTER_SERVICE_METADATA, DATA_CENTER_SERVICE_NAME, DATA_CENTER_SERVICE_PORT, DATA_CENTER_SERVICE_TAGS, DOCKER_CONTAINER_NAME, DOCKER_FULL_IMAGE_NAME, DOCKER_IMAGE_VERSION, EC2_INSTANCE_AMI_ID, EC2_INSTANCE_AWS_INSTANCE_TYPE, EC2_INSTANCE_AWS_SECURITY_GROUP, EC2_INSTANCE_BEANSTALK_ENV_NAME, EC2_INSTANCE_ID, EC2_INSTANCE_NAME, EC2_INSTANCE_PRIVATE_HOST_NAME, EC2_INSTANCE_PUBLIC_HOST_NAME, EC2_INSTANCE_TAGS, ENTERPRISE_APPLICATION_DECODER_TYPE, ENTERPRISE_APPLICATION_IP_ADDRESS, ENTERPRISE_APPLICATION_METADATA, ENTERPRISE_APPLICATION_NAME, ENTERPRISE_APPLICATION_PORT, ENTERPRISE_APPLICATION_TAGS, ESXI_HOST_CLUSTER_NAME, ESXI_HOST_HARDWARE_MODEL, ESXI_HOST_HARDWARE_VENDOR, ESXI_HOST_NAME, ESXI_HOST_PRODUCT_NAME, ESXI_HOST_PRODUCT_VERSION, ESXI_HOST_TAGS, EXTERNAL_MONITOR_ENGINE_DESCRIPTION, EXTERNAL_MONITOR_ENGINE_NAME, EXTERNAL_MONITOR_ENGINE_TYPE, EXTERNAL_MONITOR_NAME, EXTERNAL_MONITOR_TAGS, GEOLOCATION_SITE_NAME, GOOGLE_CLOUD_PLATFORM_ZONE_NAME, GOOGLE_COMPUTE_INSTANCE_ID, GOOGLE_COMPUTE_INSTANCE_MACHINE_TYPE, GOOGLE_COMPUTE_INSTANCE_NAME, GOOGLE_COMPUTE_INSTANCE_PROJECT, GOOGLE_COMPUTE_INSTANCE_PROJECT_ID, GOOGLE_COMPUTE_INSTANCE_PUBLIC_IP_ADDRESSES, HOST_AIX_LOGICAL_CPU_COUNT, HOST_AIX_SIMULTANEOUS_THREADS, HOST_AIX_VIRTUAL_CPU_COUNT, HOST_ARCHITECTURE, HOST_AWS_NAME_TAG, HOST_AZURE_COMPUTE_MODE, HOST_AZURE_SKU, HOST_AZURE_WEB_APPLICATION_HOST_NAMES, HOST_AZURE_WEB_APPLICATION_SITE_NAMES, HOST_BITNESS, HOST_BOSH_AVAILABILITY_ZONE, HOST_BOSH_DEPLOYMENT_ID, HOST_BOSH_INSTANCE_ID, HOST_BOSH_INSTANCE_NAME, HOST_BOSH_NAME, HOST_BOSH_STEMCELL_VERSION, HOST_CLOUD_TYPE, HOST_CPU_CORES, HOST_CUSTOM_METADATA, HOST_DETECTED_NAME, HOST_GROUP_ID, HOST_GROUP_NAME, HOST_HYPERVISOR_TYPE, HOST_IP_ADDRESS, HOST_KUBERNETES_LABELS, HOST_LOGICAL_CPU_CORES, HOST_NAME, HOST_ONEAGENT_CUSTOM_HOST_NAME, HOST_OS_TYPE, HOST_OS_VERSION, HOST_PAAS_MEMORY_LIMIT, HOST_PAAS_TYPE, HOST_TAGS, HOST_TECHNOLOGY, HTTP_MONITOR_NAME, HTTP_MONITOR_TAGS, KUBERNETES_CLUSTER_NAME, KUBERNETES_NODE_NAME, KUBERNETES_SERVICE_NAME, MOBILE_APPLICATION_NAME, MOBILE_APPLICATION_PLATFORM, MOBILE_APPLICATION_TAGS, NAME_OF_COMPUTE_NODE, OPENSTACK_ACCOUNT_NAME, OPENSTACK_ACCOUNT_PROJECT_NAME, OPENSTACK_AVAILABILITY_ZONE_NAME, OPENSTACK_PROJECT_NAME, OPENSTACK_REGION_NAME, OPENSTACK_VM_INSTANCE_TYPE, OPENSTACK_VM_NAME, OPENSTACK_VM_SECURITY_GROUP, PROCESS_GROUP_AZURE_HOST_NAME, PROCESS_GROUP_AZURE_SITE_NAME, PROCESS_GROUP_CUSTOM_METADATA, PROCESS_GROUP_DETECTED_NAME, PROCESS_GROUP_ID, PROCESS_GROUP_LISTEN_PORT, PROCESS_GROUP_NAME, PROCESS_GROUP_PREDEFINED_METADATA, PROCESS_GROUP_TAGS, PROCESS_GROUP_TECHNOLOGY, PROCESS_GROUP_TECHNOLOGY_EDITION, PROCESS_GROUP_TECHNOLOGY_VERSION, QUEUE_NAME, QUEUE_TECHNOLOGY, QUEUE_VENDOR, SERVICE_AKKA_ACTOR_SYSTEM, SERVICE_CTG_SERVICE_NAME, SERVICE_DATABASE_HOST_NAME, SERVICE_DATABASE_NAME, SERVICE_DATABASE_TOPOLOGY, SERVICE_DATABASE_VENDOR, SERVICE_DETECTED_NAME, SERVICE_ESB_APPLICATION_NAME, SERVICE_IBM_CTG_GATEWAY_URL, SERVICE_MESSAGING_LISTENER_CLASS_NAME, SERVICE_NAME, SERVICE_PORT, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_REMOTE_ENDPOINT, SERVICE_REMOTE_SERVICE_NAME, SERVICE_TAGS, SERVICE_TECHNOLOGY, SERVICE_TECHNOLOGY_EDITION, SERVICE_TECHNOLOGY_VERSION, SERVICE_TOPOLOGY, SERVICE_TYPE, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_ENDPOINT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, VMWARE_DATACENTER_NAME, VMWARE_VM_NAME, WEB_APPLICATION_NAME, WEB_APPLICATION_NAME_PATTERN, WEB_APPLICATION_TAGS, WEB_APPLICATION_TYPE
operator This property is required. str
Possible Values: BEGINS_WITH, CONTAINS, ENDS_WITH, EQUALS, EXISTS, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_IP_IN_RANGE, LOWER_THAN, LOWER_THAN_OR_EQUAL, NOT_BEGINS_WITH, NOT_CONTAINS, NOT_ENDS_WITH, NOT_EQUALS, NOT_EXISTS, NOT_GREATER_THAN, NOT_GREATER_THAN_OR_EQUAL, NOT_IS_IP_IN_RANGE, NOT_LOWER_THAN, NOT_LOWER_THAN_OR_EQUAL, NOT_REGEX_MATCHES, NOT_TAG_KEY_EQUALS, REGEX_MATCHES, TAG_KEY_EQUALS
case_sensitive bool
Case sensitive
dynamic_key str
Dynamic key
dynamic_key_source str
Key source
entity_id str
Value
enum_value str
Value
integer_value int
Value
string_value str
Value
tag str
Format: [CONTEXT]tagKey:tagValue
key This property is required. String
Possible Values: APPMON_SERVER_NAME, APPMON_SYSTEM_PROFILE_NAME, AWS_ACCOUNT_ID, AWS_ACCOUNT_NAME, AWS_APPLICATION_LOAD_BALANCER_NAME, AWS_APPLICATION_LOAD_BALANCER_TAGS, AWS_AUTO_SCALING_GROUP_NAME, AWS_AUTO_SCALING_GROUP_TAGS, AWS_AVAILABILITY_ZONE_NAME, AWS_CLASSIC_LOAD_BALANCER_FRONTEND_PORTS, AWS_CLASSIC_LOAD_BALANCER_NAME, AWS_CLASSIC_LOAD_BALANCER_TAGS, AWS_NETWORK_LOAD_BALANCER_NAME, AWS_NETWORK_LOAD_BALANCER_TAGS, AWS_RELATIONAL_DATABASE_SERVICE_DB_NAME, AWS_RELATIONAL_DATABASE_SERVICE_ENDPOINT, AWS_RELATIONAL_DATABASE_SERVICE_ENGINE, AWS_RELATIONAL_DATABASE_SERVICE_INSTANCE_CLASS, AWS_RELATIONAL_DATABASE_SERVICE_NAME, AWS_RELATIONAL_DATABASE_SERVICE_PORT, AWS_RELATIONAL_DATABASE_SERVICE_TAGS, AZURE_ENTITY_NAME, AZURE_ENTITY_TAGS, AZURE_MGMT_GROUP_NAME, AZURE_MGMT_GROUP_UUID, AZURE_REGION_NAME, AZURE_SCALE_SET_NAME, AZURE_SUBSCRIPTION_NAME, AZURE_SUBSCRIPTION_UUID, AZURE_TENANT_NAME, AZURE_TENANT_UUID, AZURE_VM_NAME, BROWSER_MONITOR_NAME, BROWSER_MONITOR_TAGS, CLOUD_APPLICATION_LABELS, CLOUD_APPLICATION_NAME, CLOUD_APPLICATION_NAMESPACE_LABELS, CLOUD_APPLICATION_NAMESPACE_NAME, CLOUD_FOUNDRY_FOUNDATION_NAME, CLOUD_FOUNDRY_ORG_NAME, CUSTOM_APPLICATION_NAME, CUSTOM_APPLICATION_PLATFORM, CUSTOM_APPLICATION_TAGS, CUSTOM_APPLICATION_TYPE, CUSTOM_DEVICE_DNS_ADDRESS, CUSTOM_DEVICE_GROUP_NAME, CUSTOM_DEVICE_GROUP_TAGS, CUSTOM_DEVICE_IP_ADDRESS, CUSTOM_DEVICE_METADATA, CUSTOM_DEVICE_NAME, CUSTOM_DEVICE_PORT, CUSTOM_DEVICE_TAGS, CUSTOM_DEVICE_TECHNOLOGY, DATA_CENTER_SERVICE_DECODER_TYPE, DATA_CENTER_SERVICE_IP_ADDRESS, DATA_CENTER_SERVICE_METADATA, DATA_CENTER_SERVICE_NAME, DATA_CENTER_SERVICE_PORT, DATA_CENTER_SERVICE_TAGS, DOCKER_CONTAINER_NAME, DOCKER_FULL_IMAGE_NAME, DOCKER_IMAGE_VERSION, EC2_INSTANCE_AMI_ID, EC2_INSTANCE_AWS_INSTANCE_TYPE, EC2_INSTANCE_AWS_SECURITY_GROUP, EC2_INSTANCE_BEANSTALK_ENV_NAME, EC2_INSTANCE_ID, EC2_INSTANCE_NAME, EC2_INSTANCE_PRIVATE_HOST_NAME, EC2_INSTANCE_PUBLIC_HOST_NAME, EC2_INSTANCE_TAGS, ENTERPRISE_APPLICATION_DECODER_TYPE, ENTERPRISE_APPLICATION_IP_ADDRESS, ENTERPRISE_APPLICATION_METADATA, ENTERPRISE_APPLICATION_NAME, ENTERPRISE_APPLICATION_PORT, ENTERPRISE_APPLICATION_TAGS, ESXI_HOST_CLUSTER_NAME, ESXI_HOST_HARDWARE_MODEL, ESXI_HOST_HARDWARE_VENDOR, ESXI_HOST_NAME, ESXI_HOST_PRODUCT_NAME, ESXI_HOST_PRODUCT_VERSION, ESXI_HOST_TAGS, EXTERNAL_MONITOR_ENGINE_DESCRIPTION, EXTERNAL_MONITOR_ENGINE_NAME, EXTERNAL_MONITOR_ENGINE_TYPE, EXTERNAL_MONITOR_NAME, EXTERNAL_MONITOR_TAGS, GEOLOCATION_SITE_NAME, GOOGLE_CLOUD_PLATFORM_ZONE_NAME, GOOGLE_COMPUTE_INSTANCE_ID, GOOGLE_COMPUTE_INSTANCE_MACHINE_TYPE, GOOGLE_COMPUTE_INSTANCE_NAME, GOOGLE_COMPUTE_INSTANCE_PROJECT, GOOGLE_COMPUTE_INSTANCE_PROJECT_ID, GOOGLE_COMPUTE_INSTANCE_PUBLIC_IP_ADDRESSES, HOST_AIX_LOGICAL_CPU_COUNT, HOST_AIX_SIMULTANEOUS_THREADS, HOST_AIX_VIRTUAL_CPU_COUNT, HOST_ARCHITECTURE, HOST_AWS_NAME_TAG, HOST_AZURE_COMPUTE_MODE, HOST_AZURE_SKU, HOST_AZURE_WEB_APPLICATION_HOST_NAMES, HOST_AZURE_WEB_APPLICATION_SITE_NAMES, HOST_BITNESS, HOST_BOSH_AVAILABILITY_ZONE, HOST_BOSH_DEPLOYMENT_ID, HOST_BOSH_INSTANCE_ID, HOST_BOSH_INSTANCE_NAME, HOST_BOSH_NAME, HOST_BOSH_STEMCELL_VERSION, HOST_CLOUD_TYPE, HOST_CPU_CORES, HOST_CUSTOM_METADATA, HOST_DETECTED_NAME, HOST_GROUP_ID, HOST_GROUP_NAME, HOST_HYPERVISOR_TYPE, HOST_IP_ADDRESS, HOST_KUBERNETES_LABELS, HOST_LOGICAL_CPU_CORES, HOST_NAME, HOST_ONEAGENT_CUSTOM_HOST_NAME, HOST_OS_TYPE, HOST_OS_VERSION, HOST_PAAS_MEMORY_LIMIT, HOST_PAAS_TYPE, HOST_TAGS, HOST_TECHNOLOGY, HTTP_MONITOR_NAME, HTTP_MONITOR_TAGS, KUBERNETES_CLUSTER_NAME, KUBERNETES_NODE_NAME, KUBERNETES_SERVICE_NAME, MOBILE_APPLICATION_NAME, MOBILE_APPLICATION_PLATFORM, MOBILE_APPLICATION_TAGS, NAME_OF_COMPUTE_NODE, OPENSTACK_ACCOUNT_NAME, OPENSTACK_ACCOUNT_PROJECT_NAME, OPENSTACK_AVAILABILITY_ZONE_NAME, OPENSTACK_PROJECT_NAME, OPENSTACK_REGION_NAME, OPENSTACK_VM_INSTANCE_TYPE, OPENSTACK_VM_NAME, OPENSTACK_VM_SECURITY_GROUP, PROCESS_GROUP_AZURE_HOST_NAME, PROCESS_GROUP_AZURE_SITE_NAME, PROCESS_GROUP_CUSTOM_METADATA, PROCESS_GROUP_DETECTED_NAME, PROCESS_GROUP_ID, PROCESS_GROUP_LISTEN_PORT, PROCESS_GROUP_NAME, PROCESS_GROUP_PREDEFINED_METADATA, PROCESS_GROUP_TAGS, PROCESS_GROUP_TECHNOLOGY, PROCESS_GROUP_TECHNOLOGY_EDITION, PROCESS_GROUP_TECHNOLOGY_VERSION, QUEUE_NAME, QUEUE_TECHNOLOGY, QUEUE_VENDOR, SERVICE_AKKA_ACTOR_SYSTEM, SERVICE_CTG_SERVICE_NAME, SERVICE_DATABASE_HOST_NAME, SERVICE_DATABASE_NAME, SERVICE_DATABASE_TOPOLOGY, SERVICE_DATABASE_VENDOR, SERVICE_DETECTED_NAME, SERVICE_ESB_APPLICATION_NAME, SERVICE_IBM_CTG_GATEWAY_URL, SERVICE_MESSAGING_LISTENER_CLASS_NAME, SERVICE_NAME, SERVICE_PORT, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_REMOTE_ENDPOINT, SERVICE_REMOTE_SERVICE_NAME, SERVICE_TAGS, SERVICE_TECHNOLOGY, SERVICE_TECHNOLOGY_EDITION, SERVICE_TECHNOLOGY_VERSION, SERVICE_TOPOLOGY, SERVICE_TYPE, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_ENDPOINT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, VMWARE_DATACENTER_NAME, VMWARE_VM_NAME, WEB_APPLICATION_NAME, WEB_APPLICATION_NAME_PATTERN, WEB_APPLICATION_TAGS, WEB_APPLICATION_TYPE
operator This property is required. String
Possible Values: BEGINS_WITH, CONTAINS, ENDS_WITH, EQUALS, EXISTS, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_IP_IN_RANGE, LOWER_THAN, LOWER_THAN_OR_EQUAL, NOT_BEGINS_WITH, NOT_CONTAINS, NOT_ENDS_WITH, NOT_EQUALS, NOT_EXISTS, NOT_GREATER_THAN, NOT_GREATER_THAN_OR_EQUAL, NOT_IS_IP_IN_RANGE, NOT_LOWER_THAN, NOT_LOWER_THAN_OR_EQUAL, NOT_REGEX_MATCHES, NOT_TAG_KEY_EQUALS, REGEX_MATCHES, TAG_KEY_EQUALS
caseSensitive Boolean
Case sensitive
dynamicKey String
Dynamic key
dynamicKeySource String
Key source
entityId String
Value
enumValue String
Value
integerValue Number
Value
stringValue String
Value
tag String
Format: [CONTEXT]tagKey:tagValue

Package Details

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