1. Packages
  2. Dynatrace
  3. API Docs
  4. CalculatedMobileMetric
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

dynatrace.CalculatedMobileMetric

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

    Create CalculatedMobileMetric Resource

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

    Constructor syntax

    new CalculatedMobileMetric(name: string, args: CalculatedMobileMetricArgs, opts?: CustomResourceOptions);
    @overload
    def CalculatedMobileMetric(resource_name: str,
                               args: CalculatedMobileMetricArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def CalculatedMobileMetric(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               app_identifier: Optional[str] = None,
                               enabled: Optional[bool] = None,
                               metric_key: Optional[str] = None,
                               metric_type: Optional[str] = None,
                               description: Optional[str] = None,
                               dimensions: Optional[Sequence[CalculatedMobileMetricDimensionArgs]] = None,
                               name: Optional[str] = None,
                               user_action_filter: Optional[CalculatedMobileMetricUserActionFilterArgs] = None)
    func NewCalculatedMobileMetric(ctx *Context, name string, args CalculatedMobileMetricArgs, opts ...ResourceOption) (*CalculatedMobileMetric, error)
    public CalculatedMobileMetric(string name, CalculatedMobileMetricArgs args, CustomResourceOptions? opts = null)
    public CalculatedMobileMetric(String name, CalculatedMobileMetricArgs args)
    public CalculatedMobileMetric(String name, CalculatedMobileMetricArgs args, CustomResourceOptions options)
    
    type: dynatrace:CalculatedMobileMetric
    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 CalculatedMobileMetricArgs
    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 CalculatedMobileMetricArgs
    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 CalculatedMobileMetricArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CalculatedMobileMetricArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CalculatedMobileMetricArgs
    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 calculatedMobileMetricResource = new Dynatrace.CalculatedMobileMetric("calculatedMobileMetricResource", new()
    {
        AppIdentifier = "string",
        Enabled = false,
        MetricKey = "string",
        MetricType = "string",
        Description = "string",
        Dimensions = new[]
        {
            new Dynatrace.Inputs.CalculatedMobileMetricDimensionArgs
            {
                Dimensions = new[]
                {
                    new Dynatrace.Inputs.CalculatedMobileMetricDimensionDimensionArgs
                    {
                        Dimension = "string",
                        TopX = 0,
                    },
                },
            },
        },
        Name = "string",
        UserActionFilter = new Dynatrace.Inputs.CalculatedMobileMetricUserActionFilterArgs
        {
            ActionDurationFromMilliseconds = 0,
            ActionDurationToMilliseconds = 0,
            Apdex = "string",
            AppVersion = "string",
            Carrier = "string",
            City = "string",
            ConnectionType = "string",
            Continent = "string",
            Country = "string",
            Device = "string",
            HasHttpError = false,
            HasReportedError = false,
            Isp = "string",
            Manufacturer = "string",
            NetworkTechnology = "string",
            Orientation = "string",
            OsFamily = "string",
            OsVersion = "string",
            Region = "string",
            Resolution = "string",
            UserActionName = "string",
        },
    });
    
    example, err := dynatrace.NewCalculatedMobileMetric(ctx, "calculatedMobileMetricResource", &dynatrace.CalculatedMobileMetricArgs{
    	AppIdentifier: pulumi.String("string"),
    	Enabled:       pulumi.Bool(false),
    	MetricKey:     pulumi.String("string"),
    	MetricType:    pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Dimensions: dynatrace.CalculatedMobileMetricDimensionArray{
    		&dynatrace.CalculatedMobileMetricDimensionArgs{
    			Dimensions: dynatrace.CalculatedMobileMetricDimensionDimensionArray{
    				&dynatrace.CalculatedMobileMetricDimensionDimensionArgs{
    					Dimension: pulumi.String("string"),
    					TopX:      pulumi.Int(0),
    				},
    			},
    		},
    	},
    	Name: pulumi.String("string"),
    	UserActionFilter: &dynatrace.CalculatedMobileMetricUserActionFilterArgs{
    		ActionDurationFromMilliseconds: pulumi.Int(0),
    		ActionDurationToMilliseconds:   pulumi.Int(0),
    		Apdex:                          pulumi.String("string"),
    		AppVersion:                     pulumi.String("string"),
    		Carrier:                        pulumi.String("string"),
    		City:                           pulumi.String("string"),
    		ConnectionType:                 pulumi.String("string"),
    		Continent:                      pulumi.String("string"),
    		Country:                        pulumi.String("string"),
    		Device:                         pulumi.String("string"),
    		HasHttpError:                   pulumi.Bool(false),
    		HasReportedError:               pulumi.Bool(false),
    		Isp:                            pulumi.String("string"),
    		Manufacturer:                   pulumi.String("string"),
    		NetworkTechnology:              pulumi.String("string"),
    		Orientation:                    pulumi.String("string"),
    		OsFamily:                       pulumi.String("string"),
    		OsVersion:                      pulumi.String("string"),
    		Region:                         pulumi.String("string"),
    		Resolution:                     pulumi.String("string"),
    		UserActionName:                 pulumi.String("string"),
    	},
    })
    
    var calculatedMobileMetricResource = new CalculatedMobileMetric("calculatedMobileMetricResource", CalculatedMobileMetricArgs.builder()
        .appIdentifier("string")
        .enabled(false)
        .metricKey("string")
        .metricType("string")
        .description("string")
        .dimensions(CalculatedMobileMetricDimensionArgs.builder()
            .dimensions(CalculatedMobileMetricDimensionDimensionArgs.builder()
                .dimension("string")
                .topX(0)
                .build())
            .build())
        .name("string")
        .userActionFilter(CalculatedMobileMetricUserActionFilterArgs.builder()
            .actionDurationFromMilliseconds(0)
            .actionDurationToMilliseconds(0)
            .apdex("string")
            .appVersion("string")
            .carrier("string")
            .city("string")
            .connectionType("string")
            .continent("string")
            .country("string")
            .device("string")
            .hasHttpError(false)
            .hasReportedError(false)
            .isp("string")
            .manufacturer("string")
            .networkTechnology("string")
            .orientation("string")
            .osFamily("string")
            .osVersion("string")
            .region("string")
            .resolution("string")
            .userActionName("string")
            .build())
        .build());
    
    calculated_mobile_metric_resource = dynatrace.CalculatedMobileMetric("calculatedMobileMetricResource",
        app_identifier="string",
        enabled=False,
        metric_key="string",
        metric_type="string",
        description="string",
        dimensions=[dynatrace.CalculatedMobileMetricDimensionArgs(
            dimensions=[dynatrace.CalculatedMobileMetricDimensionDimensionArgs(
                dimension="string",
                top_x=0,
            )],
        )],
        name="string",
        user_action_filter=dynatrace.CalculatedMobileMetricUserActionFilterArgs(
            action_duration_from_milliseconds=0,
            action_duration_to_milliseconds=0,
            apdex="string",
            app_version="string",
            carrier="string",
            city="string",
            connection_type="string",
            continent="string",
            country="string",
            device="string",
            has_http_error=False,
            has_reported_error=False,
            isp="string",
            manufacturer="string",
            network_technology="string",
            orientation="string",
            os_family="string",
            os_version="string",
            region="string",
            resolution="string",
            user_action_name="string",
        ))
    
    const calculatedMobileMetricResource = new dynatrace.CalculatedMobileMetric("calculatedMobileMetricResource", {
        appIdentifier: "string",
        enabled: false,
        metricKey: "string",
        metricType: "string",
        description: "string",
        dimensions: [{
            dimensions: [{
                dimension: "string",
                topX: 0,
            }],
        }],
        name: "string",
        userActionFilter: {
            actionDurationFromMilliseconds: 0,
            actionDurationToMilliseconds: 0,
            apdex: "string",
            appVersion: "string",
            carrier: "string",
            city: "string",
            connectionType: "string",
            continent: "string",
            country: "string",
            device: "string",
            hasHttpError: false,
            hasReportedError: false,
            isp: "string",
            manufacturer: "string",
            networkTechnology: "string",
            orientation: "string",
            osFamily: "string",
            osVersion: "string",
            region: "string",
            resolution: "string",
            userActionName: "string",
        },
    });
    
    type: dynatrace:CalculatedMobileMetric
    properties:
        appIdentifier: string
        description: string
        dimensions:
            - dimensions:
                - dimension: string
                  topX: 0
        enabled: false
        metricKey: string
        metricType: string
        name: string
        userActionFilter:
            actionDurationFromMilliseconds: 0
            actionDurationToMilliseconds: 0
            apdex: string
            appVersion: string
            carrier: string
            city: string
            connectionType: string
            continent: string
            country: string
            device: string
            hasHttpError: false
            hasReportedError: false
            isp: string
            manufacturer: string
            networkTechnology: string
            orientation: string
            osFamily: string
            osVersion: string
            region: string
            resolution: string
            userActionName: string
    

    CalculatedMobileMetric Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CalculatedMobileMetric resource accepts the following input properties:

    AppIdentifier string
    The Dynatrace entity ID of the application to which the metric belongs.
    Enabled bool
    The metric is enabled (true) or disabled (false)
    MetricKey string
    The unique key of the calculated mobile/custom app metric.
    MetricType string
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    Description string
    Descriptor of a calculated mobile/custom app metric.
    Dimensions List<Pulumiverse.Dynatrace.Inputs.CalculatedMobileMetricDimension>
    Parameters of a definition of a calculated mobile/custom app metric.
    Name string
    The displayed name of the metric.
    UserActionFilter Pulumiverse.Dynatrace.Inputs.CalculatedMobileMetricUserActionFilter
    Parameters of a definition of a calculated mobile/custom app metric.
    AppIdentifier string
    The Dynatrace entity ID of the application to which the metric belongs.
    Enabled bool
    The metric is enabled (true) or disabled (false)
    MetricKey string
    The unique key of the calculated mobile/custom app metric.
    MetricType string
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    Description string
    Descriptor of a calculated mobile/custom app metric.
    Dimensions []CalculatedMobileMetricDimensionArgs
    Parameters of a definition of a calculated mobile/custom app metric.
    Name string
    The displayed name of the metric.
    UserActionFilter CalculatedMobileMetricUserActionFilterArgs
    Parameters of a definition of a calculated mobile/custom app metric.
    appIdentifier String
    The Dynatrace entity ID of the application to which the metric belongs.
    enabled Boolean
    The metric is enabled (true) or disabled (false)
    metricKey String
    The unique key of the calculated mobile/custom app metric.
    metricType String
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    description String
    Descriptor of a calculated mobile/custom app metric.
    dimensions List<CalculatedMobileMetricDimension>
    Parameters of a definition of a calculated mobile/custom app metric.
    name String
    The displayed name of the metric.
    userActionFilter CalculatedMobileMetricUserActionFilter
    Parameters of a definition of a calculated mobile/custom app metric.
    appIdentifier string
    The Dynatrace entity ID of the application to which the metric belongs.
    enabled boolean
    The metric is enabled (true) or disabled (false)
    metricKey string
    The unique key of the calculated mobile/custom app metric.
    metricType string
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    description string
    Descriptor of a calculated mobile/custom app metric.
    dimensions CalculatedMobileMetricDimension[]
    Parameters of a definition of a calculated mobile/custom app metric.
    name string
    The displayed name of the metric.
    userActionFilter CalculatedMobileMetricUserActionFilter
    Parameters of a definition of a calculated mobile/custom app metric.
    app_identifier str
    The Dynatrace entity ID of the application to which the metric belongs.
    enabled bool
    The metric is enabled (true) or disabled (false)
    metric_key str
    The unique key of the calculated mobile/custom app metric.
    metric_type str
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    description str
    Descriptor of a calculated mobile/custom app metric.
    dimensions Sequence[CalculatedMobileMetricDimensionArgs]
    Parameters of a definition of a calculated mobile/custom app metric.
    name str
    The displayed name of the metric.
    user_action_filter CalculatedMobileMetricUserActionFilterArgs
    Parameters of a definition of a calculated mobile/custom app metric.
    appIdentifier String
    The Dynatrace entity ID of the application to which the metric belongs.
    enabled Boolean
    The metric is enabled (true) or disabled (false)
    metricKey String
    The unique key of the calculated mobile/custom app metric.
    metricType String
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    description String
    Descriptor of a calculated mobile/custom app metric.
    dimensions List<Property Map>
    Parameters of a definition of a calculated mobile/custom app metric.
    name String
    The displayed name of the metric.
    userActionFilter Property Map
    Parameters of a definition of a calculated mobile/custom app metric.

    Outputs

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

    Get an existing CalculatedMobileMetric 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?: CalculatedMobileMetricState, opts?: CustomResourceOptions): CalculatedMobileMetric
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_identifier: Optional[str] = None,
            description: Optional[str] = None,
            dimensions: Optional[Sequence[CalculatedMobileMetricDimensionArgs]] = None,
            enabled: Optional[bool] = None,
            metric_key: Optional[str] = None,
            metric_type: Optional[str] = None,
            name: Optional[str] = None,
            user_action_filter: Optional[CalculatedMobileMetricUserActionFilterArgs] = None) -> CalculatedMobileMetric
    func GetCalculatedMobileMetric(ctx *Context, name string, id IDInput, state *CalculatedMobileMetricState, opts ...ResourceOption) (*CalculatedMobileMetric, error)
    public static CalculatedMobileMetric Get(string name, Input<string> id, CalculatedMobileMetricState? state, CustomResourceOptions? opts = null)
    public static CalculatedMobileMetric get(String name, Output<String> id, CalculatedMobileMetricState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AppIdentifier string
    The Dynatrace entity ID of the application to which the metric belongs.
    Description string
    Descriptor of a calculated mobile/custom app metric.
    Dimensions List<Pulumiverse.Dynatrace.Inputs.CalculatedMobileMetricDimension>
    Parameters of a definition of a calculated mobile/custom app metric.
    Enabled bool
    The metric is enabled (true) or disabled (false)
    MetricKey string
    The unique key of the calculated mobile/custom app metric.
    MetricType string
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    Name string
    The displayed name of the metric.
    UserActionFilter Pulumiverse.Dynatrace.Inputs.CalculatedMobileMetricUserActionFilter
    Parameters of a definition of a calculated mobile/custom app metric.
    AppIdentifier string
    The Dynatrace entity ID of the application to which the metric belongs.
    Description string
    Descriptor of a calculated mobile/custom app metric.
    Dimensions []CalculatedMobileMetricDimensionArgs
    Parameters of a definition of a calculated mobile/custom app metric.
    Enabled bool
    The metric is enabled (true) or disabled (false)
    MetricKey string
    The unique key of the calculated mobile/custom app metric.
    MetricType string
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    Name string
    The displayed name of the metric.
    UserActionFilter CalculatedMobileMetricUserActionFilterArgs
    Parameters of a definition of a calculated mobile/custom app metric.
    appIdentifier String
    The Dynatrace entity ID of the application to which the metric belongs.
    description String
    Descriptor of a calculated mobile/custom app metric.
    dimensions List<CalculatedMobileMetricDimension>
    Parameters of a definition of a calculated mobile/custom app metric.
    enabled Boolean
    The metric is enabled (true) or disabled (false)
    metricKey String
    The unique key of the calculated mobile/custom app metric.
    metricType String
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    name String
    The displayed name of the metric.
    userActionFilter CalculatedMobileMetricUserActionFilter
    Parameters of a definition of a calculated mobile/custom app metric.
    appIdentifier string
    The Dynatrace entity ID of the application to which the metric belongs.
    description string
    Descriptor of a calculated mobile/custom app metric.
    dimensions CalculatedMobileMetricDimension[]
    Parameters of a definition of a calculated mobile/custom app metric.
    enabled boolean
    The metric is enabled (true) or disabled (false)
    metricKey string
    The unique key of the calculated mobile/custom app metric.
    metricType string
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    name string
    The displayed name of the metric.
    userActionFilter CalculatedMobileMetricUserActionFilter
    Parameters of a definition of a calculated mobile/custom app metric.
    app_identifier str
    The Dynatrace entity ID of the application to which the metric belongs.
    description str
    Descriptor of a calculated mobile/custom app metric.
    dimensions Sequence[CalculatedMobileMetricDimensionArgs]
    Parameters of a definition of a calculated mobile/custom app metric.
    enabled bool
    The metric is enabled (true) or disabled (false)
    metric_key str
    The unique key of the calculated mobile/custom app metric.
    metric_type str
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    name str
    The displayed name of the metric.
    user_action_filter CalculatedMobileMetricUserActionFilterArgs
    Parameters of a definition of a calculated mobile/custom app metric.
    appIdentifier String
    The Dynatrace entity ID of the application to which the metric belongs.
    description String
    Descriptor of a calculated mobile/custom app metric.
    dimensions List<Property Map>
    Parameters of a definition of a calculated mobile/custom app metric.
    enabled Boolean
    The metric is enabled (true) or disabled (false)
    metricKey String
    The unique key of the calculated mobile/custom app metric.
    metricType String
    The type of the metric. Possible values: [ REPORTEDERRORCOUNT, USERACTIONDURATION, WEBREQUESTCOUNT, WEBREQUESTERROR_COUNT ]
    name String
    The displayed name of the metric.
    userActionFilter Property Map
    Parameters of a definition of a calculated mobile/custom app metric.

    Supporting Types

    CalculatedMobileMetricDimension, CalculatedMobileMetricDimensionArgs

    dimensions List<Property Map>
    A dimensions for the metric usage

    CalculatedMobileMetricDimensionDimension, CalculatedMobileMetricDimensionDimensionArgs

    Dimension string
    The dimension of the metric. Possible values are ApdexType, Browser, ErrorContext, ErrorOrigin, ErrorType, GeoLocation, StringProperty, UserActionType
    TopX int
    The number of top values to be calculated
    Dimension string
    The dimension of the metric. Possible values are ApdexType, Browser, ErrorContext, ErrorOrigin, ErrorType, GeoLocation, StringProperty, UserActionType
    TopX int
    The number of top values to be calculated
    dimension String
    The dimension of the metric. Possible values are ApdexType, Browser, ErrorContext, ErrorOrigin, ErrorType, GeoLocation, StringProperty, UserActionType
    topX Integer
    The number of top values to be calculated
    dimension string
    The dimension of the metric. Possible values are ApdexType, Browser, ErrorContext, ErrorOrigin, ErrorType, GeoLocation, StringProperty, UserActionType
    topX number
    The number of top values to be calculated
    dimension str
    The dimension of the metric. Possible values are ApdexType, Browser, ErrorContext, ErrorOrigin, ErrorType, GeoLocation, StringProperty, UserActionType
    top_x int
    The number of top values to be calculated
    dimension String
    The dimension of the metric. Possible values are ApdexType, Browser, ErrorContext, ErrorOrigin, ErrorType, GeoLocation, StringProperty, UserActionType
    topX Number
    The number of top values to be calculated

    CalculatedMobileMetricUserActionFilter, CalculatedMobileMetricUserActionFilterArgs

    ActionDurationFromMilliseconds int
    Only actions with a duration more than or equal to this value (in milliseconds) are included in the metric calculation.
    ActionDurationToMilliseconds int
    Only actions with a duration less than or equal to this value (in milliseconds) are included in the metric calculation.
    Apdex string
    Only actions with the specified Apdex score are included in the metric calculation. Possible values: [ Frustrated, Satisfied, Tolerating, Unknown ]
    AppVersion string
    Only actions coming from this app version are included in the metric calculation.
    Carrier string
    Only actions coming from this carrier type are included in the metric calculation.
    City string
    Only actions of users from this city are included in the metric calculation. Specify geolocation ID here.
    ConnectionType string
    Only actions coming from this connection type are included in the metric calculation. Possible values: [ LAN, MOBILE, OFFLINE, UNKNOWN, WIFI ]
    Continent string
    Only actions of users from this continent are included in the metric calculation. Specify geolocation ID here.
    Country string
    Only actions of users from this country are included in the metric calculation. Specify geolocation ID here.
    Device string
    Only actions coming from this app version are included in the metric calculation.
    HasHttpError bool
    The request error status of the actions to be included in the metric calculation: true or false
    HasReportedError bool
    The error status of the actions to be included in the metric calculation: true or false
    Isp string
    Only actions coming from this internet service provider are included in the metric calculation.
    Manufacturer string
    Only actions coming from devices of this manufacturer are included in the metric calculation.
    NetworkTechnology string
    Filter by network technology
    Orientation string
    Only actions coming from devices with this display orientation are included in the metric calculation. Possible values: [ LANDSCAPE, PORTRAIT, UNKNOWN ]
    OsFamily string
    Only actions coming from this OS family are included in the metric calculation.
    OsVersion string
    Only actions coming from this OS version are included in the metric calculation.
    Region string
    Only actions of users from this region are included in the metric calculation. Specify geolocation ID here.
    Resolution string
    Only actions coming from devices with this display resolution are included in the metric calculation. Possible values: [ CGA, DCI2K, DCI4K, DVGA, FHD, FWVGA, FWXGA, GHDPlus, HD, HQVGA, HQVGA2, HSXGA, HUXGA, HVGA, HXGA, NTSC, PAL, QHD, QQVGA, QSXGA, QUXGA, QVGA, QWXGA, QXGA, SVGA, SXGA, SXGAMinus, SXGAPlus, UGA, UHD16K, UHD4K, UHD8K, UHDPlus, UNKNOWN, UWQHD, UXGA, VGA, WHSXGA, WHUXGA, WHXGA, WQSXGA, WQUXGA, WQVGA, WQVGA2, WQVGA3, WQXGA, WQXGA2, WSVGA, WSVGA2, WSXGA, WSXGAPlus, WUXGA, WVGA, WVGA2, WXGA, WXGA2, WXGA3, WXGAPlus, XGA, XGAPLUS, _1280x854, nHD, qHD ]
    UserActionName string
    Only actions with this name are included in the metric calculation.
    ActionDurationFromMilliseconds int
    Only actions with a duration more than or equal to this value (in milliseconds) are included in the metric calculation.
    ActionDurationToMilliseconds int
    Only actions with a duration less than or equal to this value (in milliseconds) are included in the metric calculation.
    Apdex string
    Only actions with the specified Apdex score are included in the metric calculation. Possible values: [ Frustrated, Satisfied, Tolerating, Unknown ]
    AppVersion string
    Only actions coming from this app version are included in the metric calculation.
    Carrier string
    Only actions coming from this carrier type are included in the metric calculation.
    City string
    Only actions of users from this city are included in the metric calculation. Specify geolocation ID here.
    ConnectionType string
    Only actions coming from this connection type are included in the metric calculation. Possible values: [ LAN, MOBILE, OFFLINE, UNKNOWN, WIFI ]
    Continent string
    Only actions of users from this continent are included in the metric calculation. Specify geolocation ID here.
    Country string
    Only actions of users from this country are included in the metric calculation. Specify geolocation ID here.
    Device string
    Only actions coming from this app version are included in the metric calculation.
    HasHttpError bool
    The request error status of the actions to be included in the metric calculation: true or false
    HasReportedError bool
    The error status of the actions to be included in the metric calculation: true or false
    Isp string
    Only actions coming from this internet service provider are included in the metric calculation.
    Manufacturer string
    Only actions coming from devices of this manufacturer are included in the metric calculation.
    NetworkTechnology string
    Filter by network technology
    Orientation string
    Only actions coming from devices with this display orientation are included in the metric calculation. Possible values: [ LANDSCAPE, PORTRAIT, UNKNOWN ]
    OsFamily string
    Only actions coming from this OS family are included in the metric calculation.
    OsVersion string
    Only actions coming from this OS version are included in the metric calculation.
    Region string
    Only actions of users from this region are included in the metric calculation. Specify geolocation ID here.
    Resolution string
    Only actions coming from devices with this display resolution are included in the metric calculation. Possible values: [ CGA, DCI2K, DCI4K, DVGA, FHD, FWVGA, FWXGA, GHDPlus, HD, HQVGA, HQVGA2, HSXGA, HUXGA, HVGA, HXGA, NTSC, PAL, QHD, QQVGA, QSXGA, QUXGA, QVGA, QWXGA, QXGA, SVGA, SXGA, SXGAMinus, SXGAPlus, UGA, UHD16K, UHD4K, UHD8K, UHDPlus, UNKNOWN, UWQHD, UXGA, VGA, WHSXGA, WHUXGA, WHXGA, WQSXGA, WQUXGA, WQVGA, WQVGA2, WQVGA3, WQXGA, WQXGA2, WSVGA, WSVGA2, WSXGA, WSXGAPlus, WUXGA, WVGA, WVGA2, WXGA, WXGA2, WXGA3, WXGAPlus, XGA, XGAPLUS, _1280x854, nHD, qHD ]
    UserActionName string
    Only actions with this name are included in the metric calculation.
    actionDurationFromMilliseconds Integer
    Only actions with a duration more than or equal to this value (in milliseconds) are included in the metric calculation.
    actionDurationToMilliseconds Integer
    Only actions with a duration less than or equal to this value (in milliseconds) are included in the metric calculation.
    apdex String
    Only actions with the specified Apdex score are included in the metric calculation. Possible values: [ Frustrated, Satisfied, Tolerating, Unknown ]
    appVersion String
    Only actions coming from this app version are included in the metric calculation.
    carrier String
    Only actions coming from this carrier type are included in the metric calculation.
    city String
    Only actions of users from this city are included in the metric calculation. Specify geolocation ID here.
    connectionType String
    Only actions coming from this connection type are included in the metric calculation. Possible values: [ LAN, MOBILE, OFFLINE, UNKNOWN, WIFI ]
    continent String
    Only actions of users from this continent are included in the metric calculation. Specify geolocation ID here.
    country String
    Only actions of users from this country are included in the metric calculation. Specify geolocation ID here.
    device String
    Only actions coming from this app version are included in the metric calculation.
    hasHttpError Boolean
    The request error status of the actions to be included in the metric calculation: true or false
    hasReportedError Boolean
    The error status of the actions to be included in the metric calculation: true or false
    isp String
    Only actions coming from this internet service provider are included in the metric calculation.
    manufacturer String
    Only actions coming from devices of this manufacturer are included in the metric calculation.
    networkTechnology String
    Filter by network technology
    orientation String
    Only actions coming from devices with this display orientation are included in the metric calculation. Possible values: [ LANDSCAPE, PORTRAIT, UNKNOWN ]
    osFamily String
    Only actions coming from this OS family are included in the metric calculation.
    osVersion String
    Only actions coming from this OS version are included in the metric calculation.
    region String
    Only actions of users from this region are included in the metric calculation. Specify geolocation ID here.
    resolution String
    Only actions coming from devices with this display resolution are included in the metric calculation. Possible values: [ CGA, DCI2K, DCI4K, DVGA, FHD, FWVGA, FWXGA, GHDPlus, HD, HQVGA, HQVGA2, HSXGA, HUXGA, HVGA, HXGA, NTSC, PAL, QHD, QQVGA, QSXGA, QUXGA, QVGA, QWXGA, QXGA, SVGA, SXGA, SXGAMinus, SXGAPlus, UGA, UHD16K, UHD4K, UHD8K, UHDPlus, UNKNOWN, UWQHD, UXGA, VGA, WHSXGA, WHUXGA, WHXGA, WQSXGA, WQUXGA, WQVGA, WQVGA2, WQVGA3, WQXGA, WQXGA2, WSVGA, WSVGA2, WSXGA, WSXGAPlus, WUXGA, WVGA, WVGA2, WXGA, WXGA2, WXGA3, WXGAPlus, XGA, XGAPLUS, _1280x854, nHD, qHD ]
    userActionName String
    Only actions with this name are included in the metric calculation.
    actionDurationFromMilliseconds number
    Only actions with a duration more than or equal to this value (in milliseconds) are included in the metric calculation.
    actionDurationToMilliseconds number
    Only actions with a duration less than or equal to this value (in milliseconds) are included in the metric calculation.
    apdex string
    Only actions with the specified Apdex score are included in the metric calculation. Possible values: [ Frustrated, Satisfied, Tolerating, Unknown ]
    appVersion string
    Only actions coming from this app version are included in the metric calculation.
    carrier string
    Only actions coming from this carrier type are included in the metric calculation.
    city string
    Only actions of users from this city are included in the metric calculation. Specify geolocation ID here.
    connectionType string
    Only actions coming from this connection type are included in the metric calculation. Possible values: [ LAN, MOBILE, OFFLINE, UNKNOWN, WIFI ]
    continent string
    Only actions of users from this continent are included in the metric calculation. Specify geolocation ID here.
    country string
    Only actions of users from this country are included in the metric calculation. Specify geolocation ID here.
    device string
    Only actions coming from this app version are included in the metric calculation.
    hasHttpError boolean
    The request error status of the actions to be included in the metric calculation: true or false
    hasReportedError boolean
    The error status of the actions to be included in the metric calculation: true or false
    isp string
    Only actions coming from this internet service provider are included in the metric calculation.
    manufacturer string
    Only actions coming from devices of this manufacturer are included in the metric calculation.
    networkTechnology string
    Filter by network technology
    orientation string
    Only actions coming from devices with this display orientation are included in the metric calculation. Possible values: [ LANDSCAPE, PORTRAIT, UNKNOWN ]
    osFamily string
    Only actions coming from this OS family are included in the metric calculation.
    osVersion string
    Only actions coming from this OS version are included in the metric calculation.
    region string
    Only actions of users from this region are included in the metric calculation. Specify geolocation ID here.
    resolution string
    Only actions coming from devices with this display resolution are included in the metric calculation. Possible values: [ CGA, DCI2K, DCI4K, DVGA, FHD, FWVGA, FWXGA, GHDPlus, HD, HQVGA, HQVGA2, HSXGA, HUXGA, HVGA, HXGA, NTSC, PAL, QHD, QQVGA, QSXGA, QUXGA, QVGA, QWXGA, QXGA, SVGA, SXGA, SXGAMinus, SXGAPlus, UGA, UHD16K, UHD4K, UHD8K, UHDPlus, UNKNOWN, UWQHD, UXGA, VGA, WHSXGA, WHUXGA, WHXGA, WQSXGA, WQUXGA, WQVGA, WQVGA2, WQVGA3, WQXGA, WQXGA2, WSVGA, WSVGA2, WSXGA, WSXGAPlus, WUXGA, WVGA, WVGA2, WXGA, WXGA2, WXGA3, WXGAPlus, XGA, XGAPLUS, _1280x854, nHD, qHD ]
    userActionName string
    Only actions with this name are included in the metric calculation.
    action_duration_from_milliseconds int
    Only actions with a duration more than or equal to this value (in milliseconds) are included in the metric calculation.
    action_duration_to_milliseconds int
    Only actions with a duration less than or equal to this value (in milliseconds) are included in the metric calculation.
    apdex str
    Only actions with the specified Apdex score are included in the metric calculation. Possible values: [ Frustrated, Satisfied, Tolerating, Unknown ]
    app_version str
    Only actions coming from this app version are included in the metric calculation.
    carrier str
    Only actions coming from this carrier type are included in the metric calculation.
    city str
    Only actions of users from this city are included in the metric calculation. Specify geolocation ID here.
    connection_type str
    Only actions coming from this connection type are included in the metric calculation. Possible values: [ LAN, MOBILE, OFFLINE, UNKNOWN, WIFI ]
    continent str
    Only actions of users from this continent are included in the metric calculation. Specify geolocation ID here.
    country str
    Only actions of users from this country are included in the metric calculation. Specify geolocation ID here.
    device str
    Only actions coming from this app version are included in the metric calculation.
    has_http_error bool
    The request error status of the actions to be included in the metric calculation: true or false
    has_reported_error bool
    The error status of the actions to be included in the metric calculation: true or false
    isp str
    Only actions coming from this internet service provider are included in the metric calculation.
    manufacturer str
    Only actions coming from devices of this manufacturer are included in the metric calculation.
    network_technology str
    Filter by network technology
    orientation str
    Only actions coming from devices with this display orientation are included in the metric calculation. Possible values: [ LANDSCAPE, PORTRAIT, UNKNOWN ]
    os_family str
    Only actions coming from this OS family are included in the metric calculation.
    os_version str
    Only actions coming from this OS version are included in the metric calculation.
    region str
    Only actions of users from this region are included in the metric calculation. Specify geolocation ID here.
    resolution str
    Only actions coming from devices with this display resolution are included in the metric calculation. Possible values: [ CGA, DCI2K, DCI4K, DVGA, FHD, FWVGA, FWXGA, GHDPlus, HD, HQVGA, HQVGA2, HSXGA, HUXGA, HVGA, HXGA, NTSC, PAL, QHD, QQVGA, QSXGA, QUXGA, QVGA, QWXGA, QXGA, SVGA, SXGA, SXGAMinus, SXGAPlus, UGA, UHD16K, UHD4K, UHD8K, UHDPlus, UNKNOWN, UWQHD, UXGA, VGA, WHSXGA, WHUXGA, WHXGA, WQSXGA, WQUXGA, WQVGA, WQVGA2, WQVGA3, WQXGA, WQXGA2, WSVGA, WSVGA2, WSXGA, WSXGAPlus, WUXGA, WVGA, WVGA2, WXGA, WXGA2, WXGA3, WXGAPlus, XGA, XGAPLUS, _1280x854, nHD, qHD ]
    user_action_name str
    Only actions with this name are included in the metric calculation.
    actionDurationFromMilliseconds Number
    Only actions with a duration more than or equal to this value (in milliseconds) are included in the metric calculation.
    actionDurationToMilliseconds Number
    Only actions with a duration less than or equal to this value (in milliseconds) are included in the metric calculation.
    apdex String
    Only actions with the specified Apdex score are included in the metric calculation. Possible values: [ Frustrated, Satisfied, Tolerating, Unknown ]
    appVersion String
    Only actions coming from this app version are included in the metric calculation.
    carrier String
    Only actions coming from this carrier type are included in the metric calculation.
    city String
    Only actions of users from this city are included in the metric calculation. Specify geolocation ID here.
    connectionType String
    Only actions coming from this connection type are included in the metric calculation. Possible values: [ LAN, MOBILE, OFFLINE, UNKNOWN, WIFI ]
    continent String
    Only actions of users from this continent are included in the metric calculation. Specify geolocation ID here.
    country String
    Only actions of users from this country are included in the metric calculation. Specify geolocation ID here.
    device String
    Only actions coming from this app version are included in the metric calculation.
    hasHttpError Boolean
    The request error status of the actions to be included in the metric calculation: true or false
    hasReportedError Boolean
    The error status of the actions to be included in the metric calculation: true or false
    isp String
    Only actions coming from this internet service provider are included in the metric calculation.
    manufacturer String
    Only actions coming from devices of this manufacturer are included in the metric calculation.
    networkTechnology String
    Filter by network technology
    orientation String
    Only actions coming from devices with this display orientation are included in the metric calculation. Possible values: [ LANDSCAPE, PORTRAIT, UNKNOWN ]
    osFamily String
    Only actions coming from this OS family are included in the metric calculation.
    osVersion String
    Only actions coming from this OS version are included in the metric calculation.
    region String
    Only actions of users from this region are included in the metric calculation. Specify geolocation ID here.
    resolution String
    Only actions coming from devices with this display resolution are included in the metric calculation. Possible values: [ CGA, DCI2K, DCI4K, DVGA, FHD, FWVGA, FWXGA, GHDPlus, HD, HQVGA, HQVGA2, HSXGA, HUXGA, HVGA, HXGA, NTSC, PAL, QHD, QQVGA, QSXGA, QUXGA, QVGA, QWXGA, QXGA, SVGA, SXGA, SXGAMinus, SXGAPlus, UGA, UHD16K, UHD4K, UHD8K, UHDPlus, UNKNOWN, UWQHD, UXGA, VGA, WHSXGA, WHUXGA, WHXGA, WQSXGA, WQUXGA, WQVGA, WQVGA2, WQVGA3, WQXGA, WQXGA2, WSVGA, WSVGA2, WSXGA, WSXGAPlus, WUXGA, WVGA, WVGA2, WXGA, WXGA2, WXGA3, WXGAPlus, XGA, XGAPLUS, _1280x854, nHD, qHD ]
    userActionName String
    Only actions with this name are included in the metric calculation.

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse