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",
}],
},
});
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",
}],
})
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
})
}
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",
},
},
},
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args AutotagRulesArgs
- 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 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 string
- The unique name of the resource.
- args AutotagRulesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutotagRulesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
},
},
});
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"),
},
},
},
})
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());
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",
}],
})
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",
}],
},
});
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
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:
- Auto
Tag stringId - Automatically applied tag ID
- Current
State string - For internal use: current state of rules in JSON format
- Rules
Pulumiverse.
Dynatrace. Inputs. Autotag Rules Rules - Rules
- Auto
Tag stringId - Automatically applied tag ID
- Current
State string - For internal use: current state of rules in JSON format
- Rules
Autotag
Rules Rules Args - Rules
- auto
Tag StringId - Automatically applied tag ID
- current
State String - For internal use: current state of rules in JSON format
- rules
Autotag
Rules Rules - Rules
- auto
Tag stringId - Automatically applied tag ID
- current
State string - For internal use: current state of rules in JSON format
- rules
Autotag
Rules Rules - Rules
- auto_
tag_ strid - Automatically applied tag ID
- current_
state str - For internal use: current state of rules in JSON format
- rules
Autotag
Rules Rules Args - Rules
- auto
Tag StringId - Automatically applied tag ID
- current
State 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)
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.
- Auto
Tag stringId - Automatically applied tag ID
- Current
State string - For internal use: current state of rules in JSON format
- Rules
Pulumiverse.
Dynatrace. Inputs. Autotag Rules Rules - Rules
- Auto
Tag stringId - Automatically applied tag ID
- Current
State string - For internal use: current state of rules in JSON format
- Rules
Autotag
Rules Rules Args - Rules
- auto
Tag StringId - Automatically applied tag ID
- current
State String - For internal use: current state of rules in JSON format
- rules
Autotag
Rules Rules - Rules
- auto
Tag stringId - Automatically applied tag ID
- current
State string - For internal use: current state of rules in JSON format
- rules
Autotag
Rules Rules - Rules
- auto_
tag_ strid - Automatically applied tag ID
- current_
state str - For internal use: current state of rules in JSON format
- rules
Autotag
Rules Rules Args - Rules
- auto
Tag StringId - Automatically applied tag ID
- current
State String - For internal use: current state of rules in JSON format
- rules Property Map
- Rules
Supporting Types
AutotagRulesRules, AutotagRulesRulesArgs
AutotagRulesRulesRule, AutotagRulesRulesRuleArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Type string
- Possible Values:
ME
,SELECTOR
- Value
Normalization string - Possible Values:
Leave text as-is
,To lower case
,To upper case
- Attribute
Rule Pulumiverse.Dynatrace. Inputs. Autotag Rules Rules Rule Attribute Rule - no documentation available
- Entity
Selector string - The documentation of the entity selector can be found here.
- Value
Format string - Optional tag value
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Type string
- Possible Values:
ME
,SELECTOR
- Value
Normalization string - Possible Values:
Leave text as-is
,To lower case
,To upper case
- Attribute
Rule AutotagRules Rules Rule Attribute Rule - no documentation available
- Entity
Selector string - The documentation of the entity selector can be found here.
- Value
Format string - Optional tag value
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - type String
- Possible Values:
ME
,SELECTOR
- value
Normalization String - Possible Values:
Leave text as-is
,To lower case
,To upper case
- attribute
Rule AutotagRules Rules Rule Attribute Rule - no documentation available
- entity
Selector String - The documentation of the entity selector can be found here.
- value
Format String - Optional tag value
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - type string
- Possible Values:
ME
,SELECTOR
- value
Normalization string - Possible Values:
Leave text as-is
,To lower case
,To upper case
- attribute
Rule AutotagRules Rules Rule Attribute Rule - no documentation available
- entity
Selector string - The documentation of the entity selector can be found here.
- value
Format string - Optional tag value
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - type str
- Possible Values:
ME
,SELECTOR
- value_
normalization str - Possible Values:
Leave text as-is
,To lower case
,To upper case
- attribute_
rule AutotagRules Rules Rule Attribute Rule - no documentation available
- entity_
selector str - The documentation of the entity selector can be found here.
- value_
format str - Optional tag value
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - type String
- Possible Values:
ME
,SELECTOR
- value
Normalization String - Possible Values:
Leave text as-is
,To lower case
,To upper case
- attribute
Rule Property Map - no documentation available
- entity
Selector String - The documentation of the entity selector can be found here.
- value
Format String - Optional tag value
AutotagRulesRulesRuleAttributeRule, AutotagRulesRulesRuleAttributeRuleArgs
- Conditions
Pulumiverse.
Dynatrace. Inputs. Autotag Rules Rules Rule Attribute Rule Conditions - no documentation available
- Entity
Type 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
- Azure
To boolPgpropagation - Apply to process groups connected to matching Azure entities
- Azure
To boolService Propagation - Apply to services provided by matching Azure entities
- Host
To boolPgpropagation - Apply to processes running on matching hosts
- Pg
To boolHost Propagation - Apply to underlying hosts of matching process groups
- Pg
To boolService Propagation - Apply to all services provided by the process groups
- Service
To boolHost Propagation - Apply to underlying hosts of matching services
- Service
To boolPgpropagation - Apply to underlying process groups of matching services
- Conditions
Autotag
Rules Rules Rule Attribute Rule Conditions - no documentation available
- Entity
Type 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
- Azure
To boolPgpropagation - Apply to process groups connected to matching Azure entities
- Azure
To boolService Propagation - Apply to services provided by matching Azure entities
- Host
To boolPgpropagation - Apply to processes running on matching hosts
- Pg
To boolHost Propagation - Apply to underlying hosts of matching process groups
- Pg
To boolService Propagation - Apply to all services provided by the process groups
- Service
To boolHost Propagation - Apply to underlying hosts of matching services
- Service
To boolPgpropagation - Apply to underlying process groups of matching services
- conditions
Autotag
Rules Rules Rule Attribute Rule Conditions - no documentation available
- entity
Type 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
- azure
To BooleanPgpropagation - Apply to process groups connected to matching Azure entities
- azure
To BooleanService Propagation - Apply to services provided by matching Azure entities
- host
To BooleanPgpropagation - Apply to processes running on matching hosts
- pg
To BooleanHost Propagation - Apply to underlying hosts of matching process groups
- pg
To BooleanService Propagation - Apply to all services provided by the process groups
- service
To BooleanHost Propagation - Apply to underlying hosts of matching services
- service
To BooleanPgpropagation - Apply to underlying process groups of matching services
- conditions
Autotag
Rules Rules Rule Attribute Rule Conditions - no documentation available
- entity
Type 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
- azure
To booleanPgpropagation - Apply to process groups connected to matching Azure entities
- azure
To booleanService Propagation - Apply to services provided by matching Azure entities
- host
To booleanPgpropagation - Apply to processes running on matching hosts
- pg
To booleanHost Propagation - Apply to underlying hosts of matching process groups
- pg
To booleanService Propagation - Apply to all services provided by the process groups
- service
To booleanHost Propagation - Apply to underlying hosts of matching services
- service
To booleanPgpropagation - Apply to underlying process groups of matching services
- conditions
Autotag
Rules Rules Rule Attribute Rule Conditions - no documentation available
- entity_
type 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_ boolpgpropagation - Apply to process groups connected to matching Azure entities
- azure_
to_ boolservice_ propagation - Apply to services provided by matching Azure entities
- host_
to_ boolpgpropagation - Apply to processes running on matching hosts
- pg_
to_ boolhost_ propagation - Apply to underlying hosts of matching process groups
- pg_
to_ boolservice_ propagation - Apply to all services provided by the process groups
- service_
to_ boolhost_ propagation - Apply to underlying hosts of matching services
- service_
to_ boolpgpropagation - Apply to underlying process groups of matching services
- conditions Property Map
- no documentation available
- entity
Type 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
- azure
To BooleanPgpropagation - Apply to process groups connected to matching Azure entities
- azure
To BooleanService Propagation - Apply to services provided by matching Azure entities
- host
To BooleanPgpropagation - Apply to processes running on matching hosts
- pg
To BooleanHost Propagation - Apply to underlying hosts of matching process groups
- pg
To BooleanService Propagation - Apply to all services provided by the process groups
- service
To BooleanHost Propagation - Apply to underlying hosts of matching services
- service
To BooleanPgpropagation - Apply to underlying process groups of matching services
AutotagRulesRulesRuleAttributeRuleConditions, AutotagRulesRulesRuleAttributeRuleConditionsArgs
AutotagRulesRulesRuleAttributeRuleConditionsCondition, AutotagRulesRulesRuleAttributeRuleConditionsConditionArgs
- Key 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 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
- Case
Sensitive bool - Case sensitive
- Dynamic
Key string - Dynamic key
- Dynamic
Key stringSource - Key source
- Entity
Id string - Value
- Enum
Value string - Value
- Integer
Value int - Value
- String
Value string - Value
- Tag string
- Format:
[CONTEXT]tagKey:tagValue
- Key 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 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
- Case
Sensitive bool - Case sensitive
- Dynamic
Key string - Dynamic key
- Dynamic
Key stringSource - Key source
- Entity
Id string - Value
- Enum
Value string - Value
- Integer
Value int - Value
- String
Value string - Value
- Tag string
- Format:
[CONTEXT]tagKey:tagValue
- key 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 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
- case
Sensitive Boolean - Case sensitive
- dynamic
Key String - Dynamic key
- dynamic
Key StringSource - Key source
- entity
Id String - Value
- enum
Value String - Value
- integer
Value Integer - Value
- string
Value String - Value
- tag String
- Format:
[CONTEXT]tagKey:tagValue
- key 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 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
- case
Sensitive boolean - Case sensitive
- dynamic
Key string - Dynamic key
- dynamic
Key stringSource - Key source
- entity
Id string - Value
- enum
Value string - Value
- integer
Value number - Value
- string
Value string - Value
- tag string
- Format:
[CONTEXT]tagKey:tagValue
- key 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 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_ strsource - 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 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 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
- case
Sensitive Boolean - Case sensitive
- dynamic
Key String - Dynamic key
- dynamic
Key StringSource - Key source
- entity
Id String - Value
- enum
Value String - Value
- integer
Value Number - Value
- string
Value 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.